/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "cuidraw.hxx" // presentation of native widgets consists of two important methods: // AquaSalGraphics::getNativeControlRegion to determine native rectangle in pixels to draw the widget // AquaSalGraphics::drawNativeControl to do the drawing operation itself // getNativeControlRegion has to calculate a content rectangle within it is safe to draw the widget. Furthermore a bounding rectangle // has to be calculated by getNativeControlRegion to consider adornments like a focus rectangle. As drawNativeControl uses Carbon // API calls, all widgets are drawn without text. Drawing of text is done separately by VCL on top of graphical Carbon widget // representation. drawNativeControl is called by VCL using content rectangle determined by getNativeControlRegion. // FIXME: when calculation bounding rectangle larger then content rectangle, text displayed by VCL will become misaligned. To avoid // misalignment bounding rectangle and content rectangle are calculated equally including adornments. Reduction of size for content // is done by drawNativeControl subsequently. Only exception is editbox: As other widgets have distinct ControlPart::SubEdit control // parts, editbox bounding rectangle and content rectangle are both calculated to reflect content area. Extending size for // adornments is done by drawNativeControl subsequently. #if !HAVE_FEATURE_MACOSX_SANDBOX @interface NSWindow(CoreUIRendererPrivate) + (CUIRendererRef)coreUIRenderer; @end #endif static HIRect ImplGetHIRectFromRectangle(tools::Rectangle aRect) { HIRect aHIRect; aHIRect.origin.x = static_cast(aRect.Left()); aHIRect.origin.y = static_cast(aRect.Top()); aHIRect.size.width = static_cast(aRect.GetWidth()); aHIRect.size.height = static_cast(aRect.GetHeight()); return aHIRect; } static NSControlStateValue ImplGetButtonValue(ButtonValue aButtonValue) { switch (aButtonValue) { case ButtonValue::On: return NSControlStateValueOn; case ButtonValue::Off: case ButtonValue::DontKnow: return NSControlStateValueOff; case ButtonValue::Mixed: default: return NSControlStateValueMixed; } } static bool AquaGetScrollRect(/* TODO: int nScreen, */ ControlPart nPart, const tools::Rectangle &rControlRect, tools::Rectangle &rResultRect) { bool bRetVal = true; rResultRect = rControlRect; switch (nPart) { case ControlPart::ButtonUp: rResultRect.SetBottom(rResultRect.Top()); break; case ControlPart::ButtonDown: rResultRect.SetTop(rResultRect.Bottom()); break; case ControlPart::ButtonLeft: rResultRect.SetRight(rResultRect.Left()); break; case ControlPart::ButtonRight: rResultRect.SetLeft(rResultRect.Right()); break; case ControlPart::TrackHorzArea: case ControlPart::TrackVertArea: case ControlPart::ThumbHorz: case ControlPart::ThumbVert: case ControlPart::TrackHorzLeft: case ControlPart::TrackHorzRight: case ControlPart::TrackVertUpper: case ControlPart::TrackVertLower: break; default: bRetVal = false; } return bRetVal; } bool AquaSalGraphics::isNativeControlSupported(ControlType nType, ControlPart nPart) { // native controls are now defaults. If you want to disable native controls, set the environment variable SAL_NO_NWF to // something and VCL controls will be used as default again. switch (nType) { case ControlType::Pushbutton: case ControlType::Radiobutton: case ControlType::Checkbox: case ControlType::ListNode: if (nPart == ControlPart::Entire) return true; break; case ControlType::Scrollbar: if (nPart == ControlPart::DrawBackgroundHorz || nPart == ControlPart::DrawBackgroundVert || nPart == ControlPart::Entire || nPart == ControlPart::HasThreeButtons) return true; break; case ControlType::Slider: if (nPart == ControlPart::TrackHorzArea || nPart == ControlPart::TrackVertArea) return true; break; case ControlType::Editbox: if (nPart == ControlPart::Entire || nPart == ControlPart::HasBackgroundTexture) return true; break; case ControlType::MultilineEditbox: if (nPart == ControlPart::Entire || nPart == ControlPart::HasBackgroundTexture) return true; break; case ControlType::Spinbox: if (nPart == ControlPart::Entire || nPart == ControlPart::AllButtons || nPart == ControlPart::HasBackgroundTexture) return true; break; case ControlType::SpinButtons: return false; case ControlType::Combobox: if (nPart == ControlPart::Entire || nPart == ControlPart::HasBackgroundTexture) return true; break; case ControlType::Listbox: if (nPart == ControlPart::Entire || nPart == ControlPart::ListboxWindow || nPart == ControlPart::HasBackgroundTexture || nPart == ControlPart::SubEdit) return true; break; case ControlType::TabItem: case ControlType::TabPane: case ControlType::TabBody: if (nPart == ControlPart::Entire || nPart == ControlPart::TabsDrawRtl || nPart == ControlPart::HasBackgroundTexture) return true; break; case ControlType::Toolbar: if (nPart == ControlPart::Entire || nPart == ControlPart::DrawBackgroundHorz || nPart == ControlPart::DrawBackgroundVert) return true; break; case ControlType::WindowBackground: if (nPart == ControlPart::BackgroundWindow || nPart == ControlPart::BackgroundDialog) return true; break; case ControlType::Menubar: if (nPart == ControlPart::Entire) return true; break; case ControlType::Tooltip: if (nPart == ControlPart::Entire) return true; break; case ControlType::MenuPopup: if (nPart == ControlPart::Entire || nPart == ControlPart::MenuItem || nPart == ControlPart::MenuItemCheckMark || nPart == ControlPart::MenuItemRadioMark) return true; break; case ControlType::LevelBar: case ControlType::Progress: case ControlType::IntroProgress: if (nPart == ControlPart::Entire) return true; break; case ControlType::Frame: if (nPart == ControlPart::Border) return true; break; case ControlType::ListNet: if (nPart == ControlPart::Entire) return true; break; default: break; } return false; } bool AquaSalGraphics::hitTestNativeControl(ControlType nType, ControlPart nPart, const tools::Rectangle &rControlRegion, const Point &rPos, bool& rIsInside) { if (nType == ControlType::Scrollbar) { tools::Rectangle aRect; bool bValid = AquaGetScrollRect(/* TODO: int nScreen, */ nPart, rControlRegion, aRect); rIsInside = bValid && aRect.Contains(rPos); return bValid; } return false; } static bool getEnabled(ControlState nState, AquaSalFrame* mpFrame) { // there are non key windows which are children of key windows, e.g. autofilter configuration dialog or sidebar dropdown dialogs. // To handle these windows correctly, parent frame's key window state is considered here additionally. const bool bDrawActive = mpFrame == nullptr || [mpFrame->getNSWindow() isKeyWindow] || mpFrame->mpParent == nullptr || [mpFrame->mpParent->getNSWindow() isKeyWindow]; if (!(nState & ControlState::ENABLED) || !bDrawActive) { return false; } return true; } bool AquaSalGraphics::drawNativeControl(ControlType nType, ControlPart nPart, const tools::Rectangle &rControlRegion, ControlState nState, const ImplControlValue &aValue, const OUString &, const Color&) { return mpBackend->drawNativeControl(nType, nPart, rControlRegion, nState, aValue); } static void paintCell(NSCell* pBtn, const NSRect& bounds, bool bShowsFirstResponder, CGContextRef context, NSView* pView) { //translate and scale because up side down otherwise CGContextSaveGState(context); CGContextTranslateCTM(context, bounds.origin.x, bounds.origin.y + bounds.size.height); CGContextScaleCTM(context, 1, -1); NSGraphicsContext* savedContext = [NSGraphicsContext currentContext]; [NSGraphicsContext setCurrentContext:[NSGraphicsContext graphicsContextWithCGContext:context flipped:NO]]; NSRect rect = { NSZeroPoint, bounds.size }; if ([pBtn isKindOfClass: [NSSliderCell class]]) { // NSSliderCell doesn't seem to work with drawWithFrame(?), so draw the elements directly [static_cast(pBtn) drawBarInside: [static_cast(pBtn) barRectFlipped: NO] flipped: NO]; rect = [static_cast(pBtn) knobRectFlipped: NO]; [static_cast(pBtn) drawKnob: rect]; } else [pBtn drawWithFrame: rect inView: pView]; // setShowsFirstResponder apparently causes a hang when set on NSComboBoxCell const bool bIsComboBox = [pBtn isMemberOfClass: [NSComboBoxCell class]]; if (!bIsComboBox) [pBtn setShowsFirstResponder: bShowsFirstResponder]; if (bShowsFirstResponder) { NSSetFocusRingStyle(NSFocusRingOnly); CGContextBeginTransparencyLayerWithRect(context, rect, nullptr); if ([pBtn isMemberOfClass: [NSTextFieldCell class]]) { // I wonder why NSTextFieldCell doesn't work for me in the default else branch. // NSComboBoxCell works, and that derives from NSTextFieldCell, on the other // hand setShowsFirstResponder causes a hangs when set on NSComboBoxCell NSRect out = [pBtn focusRingMaskBoundsForFrame: rect inView: pView]; CGContextFillRect(context, out); } else if ([pBtn isKindOfClass: [NSSliderCell class]]) { // Not getting anything useful for a NSSliderCell, so use the knob [static_cast(pBtn) drawKnob: rect]; } else [pBtn drawFocusRingMaskWithFrame:rect inView: pView]; CGContextEndTransparencyLayer(context); } [NSGraphicsContext setCurrentContext:savedContext]; CGContextRestoreGState(context); } static void paintFocusRect(double radius, const NSRect& rect, CGContextRef context) { NSRect bounds = rect; CGPathRef path = CGPathCreateWithRoundedRect(bounds, radius, radius, nullptr); CGContextSetStrokeColorWithColor(context, [NSColor keyboardFocusIndicatorColor].CGColor); CGContextSetLineWidth(context, FOCUS_RING_WIDTH); CGContextBeginPath(context); CGContextAddPath(context, path); CGContextStrokePath(context); CFRelease(path); } @interface FixedWidthTabViewItem : NSTabViewItem { int m_nWidth; } - (NSSize)sizeOfLabel: (BOOL)computeMin; - (void)setTabWidth: (int)nWidth; @end @implementation FixedWidthTabViewItem - (NSSize)sizeOfLabel: (BOOL)computeMin { NSSize size = [super sizeOfLabel: computeMin]; size.width = m_nWidth; return size; } - (void)setTabWidth: (int)nWidth { m_nWidth = nWidth; } @end bool AquaGraphicsBackend::drawNativeControl(ControlType nType, ControlPart nPart, const tools::Rectangle &rControlRegion, ControlState nState, const ImplControlValue &aValue) { if (!mrShared.checkContext()) return false; mrShared.maContextHolder.saveState(); bool bOK = performDrawNativeControl(nType, nPart, rControlRegion, nState, aValue, mrShared.maContextHolder.get(), mrShared.mpFrame); mrShared.maContextHolder.restoreState(); tools::Rectangle buttonRect = rControlRegion; // in most cases invalidating the whole control region instead of just the unclipped part of it is sufficient (and probably // faster). However for the window background we should not unnecessarily enlarge the really changed rectangle since the // difference is usually quite high. Background is always drawn as a whole since we don't know anything about its possible // contents (see issue i90291). if (nType == ControlType::WindowBackground) { CGRect aRect = {{0, 0}, {0, 0}}; if (mrShared.mxClipPath) aRect = CGPathGetBoundingBox(mrShared.mxClipPath); if (aRect.size.width != 0 && aRect.size.height != 0) buttonRect.Intersection(tools::Rectangle(Point(static_cast(aRect.origin.x), static_cast(aRect.origin.y)), Size(static_cast(aRect.size.width), static_cast(aRect.size.height)))); } mrShared.refreshRect(buttonRect.Left(), buttonRect.Top(), buttonRect.GetWidth(), buttonRect.GetHeight()); return bOK; } static void drawBox(CGContextRef context, const NSRect& rc, NSColor* pColor) { CGContextSaveGState(context); CGContextTranslateCTM(context, rc.origin.x, rc.origin.y + rc.size.height); CGContextScaleCTM(context, 1, -1); NSGraphicsContext* graphicsContext = [NSGraphicsContext graphicsContextWithCGContext:context flipped:NO]; NSRect rect = { NSZeroPoint, NSMakeSize(rc.size.width, rc.size.height) }; NSBox* pBox = [[NSBox alloc] initWithFrame: rect]; [pBox setBoxType: NSBoxCustom]; [pBox setFillColor: pColor]; SAL_WNODEPRECATED_DECLARATIONS_PUSH // setBorderType first deprecated in macOS 10.15 [pBox setBorderType: NSNoBorder]; SAL_WNODEPRECATED_DECLARATIONS_POP [pBox displayRectIgnoringOpacity: rect inContext: graphicsContext]; [pBox release]; CGContextRestoreGState(context); } // if I don't crystallize this bg then the InvertCursor using kCGBlendModeDifference doesn't // work correctly and the cursor doesn't appear correctly static void drawEditableBackground(CGContextRef context, const NSRect& rc) { CGContextSaveGState(context); CGContextSetFillColorWithColor(context, [NSColor controlBackgroundColor].CGColor); CGContextFillRect(context, rc); CGContextRestoreGState(context); } // As seen in macOS 12.3.1. All a bit odd really. const int RoundedMargin[4] = { 6, 4, 0, 3 }; bool AquaGraphicsBackendBase::performDrawNativeControl(ControlType nType, ControlPart nPart, const tools::Rectangle &rControlRegion, ControlState nState, const ImplControlValue &aValue, CGContextRef context, AquaSalFrame* mpFrame) { bool bOK = false; AquaSalInstance* pInst = GetSalData()->mpInstance; HIRect rc = ImplGetHIRectFromRectangle(rControlRegion); switch (nType) { case ControlType::Toolbar: { drawBox(context, rc, NSColor.windowBackgroundColor); bOK = true; } break; case ControlType::WindowBackground: { drawBox(context, rc, NSColor.windowBackgroundColor); bOK = true; } break; case ControlType::Tooltip: { rc.size.width += 2; rc.size.height += 2; drawBox(context, rc, NSColor.controlBackgroundColor); bOK = true; } break; case ControlType::Menubar: case ControlType::MenuPopup: if (nPart == ControlPart::Entire || nPart == ControlPart::MenuItem || nPart == ControlPart::HasBackgroundTexture) { // FIXME: without this magical offset there is a 2 pixel black border on the right rc.size.width += 2; HIThemeMenuDrawInfo aMenuInfo; aMenuInfo.version = 0; aMenuInfo.menuType = kThemeMenuTypePullDown; HIThemeMenuItemDrawInfo aMenuItemDrawInfo; // grey theme when the item is selected is drawn here. aMenuItemDrawInfo.itemType = kThemeMenuItemPlain; if ((nPart == ControlPart::MenuItem) && (nState & ControlState::SELECTED)) // blue theme when the item is selected is drawn here. aMenuItemDrawInfo.state = kThemeMenuSelected; else // normal color for non selected item aMenuItemDrawInfo.state = kThemeMenuActive; // repaints the background of the pull down menu HIThemeDrawMenuBackground(&rc, &aMenuInfo, context, kHIThemeOrientationNormal); // repaints the item either blue (selected) and/or grey (active only) HIThemeDrawMenuItem(&rc, &rc, &aMenuItemDrawInfo, context, kHIThemeOrientationNormal, &rc); bOK = true; } else if (nPart == ControlPart::MenuItemCheckMark || nPart == ControlPart::MenuItemRadioMark) { // checked, else it is not displayed (see vcl/source/window/menu.cxx) if (nState & ControlState::PRESSED) { HIThemeTextInfo aTextInfo; aTextInfo.version = 0; aTextInfo.state = (nState & ControlState::ENABLED) ? kThemeStateInactive: kThemeStateActive; aTextInfo.fontID = kThemeMenuItemMarkFont; aTextInfo.horizontalFlushness = kHIThemeTextHorizontalFlushCenter; aTextInfo.verticalFlushness = kHIThemeTextVerticalFlushTop; aTextInfo.options = kHIThemeTextBoxOptionNone; aTextInfo.truncationPosition = kHIThemeTextTruncationNone; // aTextInfo.truncationMaxLines unused because of kHIThemeTextTruncationNone item highlighted if (nState & ControlState::SELECTED) aTextInfo.state = kThemeStatePressed; UniChar mark=(nPart == ControlPart::MenuItemCheckMark) ? kCheckUnicode: kBulletUnicode; CFStringRef cfString = CFStringCreateWithCharactersNoCopy(kCFAllocatorDefault, &mark, 1, kCFAllocatorNull); HIThemeDrawTextBox(cfString, &rc, &aTextInfo, context, kHIThemeOrientationNormal); if (cfString) CFRelease(cfString); bOK = true; } } break; case ControlType::Pushbutton: { NSControlSize eSizeKind = NSControlSizeRegular; NSBezelStyle eBezelStyle = NSBezelStyleRounded; PushButtonValue const *pPBVal = aValue.getType() == ControlType::Pushbutton ? static_cast(&aValue) : nullptr; SInt32 nPaintHeight = rc.size.height; if (rc.size.height <= PUSH_BUTTON_NORMAL_HEIGHT) { eSizeKind = NSControlSizeMini; GetThemeMetric(kThemeMetricSmallPushButtonHeight, &nPaintHeight); } else if ((pPBVal && pPBVal->mbSingleLine) || rc.size.height < PUSH_BUTTON_NORMAL_HEIGHT * 3 / 2) { GetThemeMetric(kThemeMetricPushButtonHeight, &nPaintHeight); } else { // A simple square bezel style that can scale to any size eBezelStyle = NSBezelStyleSmallSquare; } // translate the origin for controls with fixed paint height so content ends up somewhere sensible rc.origin.y += (rc.size.height - nPaintHeight + 1) / 2; rc.size.height = nPaintHeight; NSButtonCell* pBtn = pInst->mpButtonCell; pBtn.allowsMixedState = YES; [pBtn setTitle: @""]; [pBtn setButtonType: NSButtonTypeMomentaryPushIn]; [pBtn setBezelStyle: eBezelStyle]; [pBtn setState: ImplGetButtonValue(aValue.getTristateVal())]; [pBtn setEnabled: getEnabled(nState, mpFrame)]; [pBtn setFocusRingType: NSFocusRingTypeExterior]; [pBtn setHighlighted: (nState & ControlState::PRESSED) ? YES : NO]; [pBtn setControlSize: eSizeKind]; if (nState & ControlState::DEFAULT) [pBtn setKeyEquivalent: @"\r"]; else [pBtn setKeyEquivalent: @""]; if (eBezelStyle == NSBezelStyleRounded) { int nMargin = RoundedMargin[eSizeKind]; rc.origin.x -= nMargin; rc.size.width += nMargin * 2; rc.origin.x += FOCUS_RING_WIDTH / 2; rc.size.width -= FOCUS_RING_WIDTH; } const bool bFocused(nState & ControlState::FOCUSED); paintCell(pBtn, rc, bFocused, context, nullptr); bOK = true; } break; case ControlType::Radiobutton: case ControlType::Checkbox: { rc.size.width -= 2 * FOCUS_RING_WIDTH; rc.size.height = RADIO_BUTTON_SMALL_SIZE; rc.origin.x += FOCUS_RING_WIDTH; rc.origin.y += FOCUS_RING_WIDTH; NSButtonCell* pBtn = nType == ControlType::Checkbox ? pInst->mpCheckCell : pInst->mpRadioCell; pBtn.allowsMixedState = YES; [pBtn setTitle: @""]; [pBtn setButtonType: nType == ControlType::Checkbox ? NSButtonTypeSwitch : NSButtonTypeRadio]; [pBtn setState: ImplGetButtonValue(aValue.getTristateVal())]; [pBtn setEnabled: getEnabled(nState, mpFrame)]; [pBtn setFocusRingType: NSFocusRingTypeExterior]; [pBtn setHighlighted: (nState & ControlState::PRESSED) ? YES : NO]; const bool bFocused(nState & ControlState::FOCUSED); paintCell(pBtn, rc, bFocused, context, nullptr); bOK = true; } break; case ControlType::ListNode: { NSButtonCell* pBtn = pInst->mpListNodeCell; pBtn.allowsMixedState = YES; [pBtn setTitle: @""]; [pBtn setButtonType: NSButtonTypeOnOff]; [pBtn setBezelStyle: NSBezelStyleDisclosure]; [pBtn setState: ImplGetButtonValue(aValue.getTristateVal())]; [pBtn setEnabled: getEnabled(nState, mpFrame)]; [pBtn setFocusRingType: NSFocusRingTypeExterior]; const bool bFocused(nState & ControlState::FOCUSED); paintCell(pBtn, rc, bFocused, context, nullptr); bOK = true; } break; case ControlType::LevelBar: { NSRect rect = { NSZeroPoint, NSMakeSize(rc.size.width, rc.size.height) }; NSLevelIndicator* pBox = [[NSLevelIndicator alloc] initWithFrame:rect]; [pBox setLevelIndicatorStyle: NSLevelIndicatorStyleContinuousCapacity]; [pBox setMinValue: 0]; [pBox setMaxValue: rc.size.width]; [pBox setCriticalValue: rc.size.width * 35.0 / 100.0]; [pBox setWarningValue: rc.size.width * 70.0 / 100.0]; [pBox setDoubleValue: aValue.getNumericVal()]; CGContextSaveGState(context); CGContextTranslateCTM(context, rc.origin.x, rc.origin.y); NSGraphicsContext* savedContext = [NSGraphicsContext currentContext]; NSGraphicsContext* graphicsContext = [NSGraphicsContext graphicsContextWithCGContext:context flipped:NO]; [NSGraphicsContext setCurrentContext: graphicsContext]; [pBox drawRect: rect]; [NSGraphicsContext setCurrentContext: savedContext]; CGContextRestoreGState(context); [pBox release]; bOK = true; } break; case ControlType::Progress: case ControlType::IntroProgress: { NSRect rect = { NSZeroPoint, NSMakeSize(rc.size.width, rc.size.height) }; NSProgressIndicator* pBox = [[NSProgressIndicator alloc] initWithFrame: rect]; [pBox setControlSize: (rc.size.height > MEDIUM_PROGRESS_INDICATOR_HEIGHT) ? NSControlSizeRegular : NSControlSizeSmall]; [pBox setMinValue: 0]; [pBox setMaxValue: rc.size.width]; [pBox setDoubleValue: aValue.getNumericVal()]; pBox.usesThreadedAnimation = NO; [pBox setIndeterminate: NO]; CGContextSaveGState(context); CGContextTranslateCTM(context, rc.origin.x, rc.origin.y); NSGraphicsContext* savedContext = [NSGraphicsContext currentContext]; NSGraphicsContext* graphicsContext = [NSGraphicsContext graphicsContextWithCGContext:context flipped:NO]; [NSGraphicsContext setCurrentContext: graphicsContext]; [pBox drawRect: rect]; [NSGraphicsContext setCurrentContext: savedContext]; CGContextRestoreGState(context); [pBox release]; bOK = true; } break; case ControlType::Slider: { const SliderValue *pSliderVal = static_cast(&aValue); if (nPart == ControlPart::TrackHorzArea || nPart == ControlPart::TrackVertArea) { NSRect rect = { NSZeroPoint, NSMakeSize(rc.size.width, rc.size.height) }; NSSlider* pBox = [[NSSlider alloc] initWithFrame: rect]; [pBox setEnabled: getEnabled(nState, mpFrame)]; [pBox setVertical: nPart == ControlPart::TrackVertArea]; [pBox setMinValue: pSliderVal->mnMin]; [pBox setMaxValue: pSliderVal->mnMax]; [pBox setIntegerValue: pSliderVal->mnCur]; [pBox setSliderType: NSSliderTypeLinear]; [pBox setFocusRingType: NSFocusRingTypeExterior]; const bool bFocused(nState & ControlState::FOCUSED); paintCell(pBox.cell, rc, bFocused, context, mpFrame->getNSView()); [pBox release]; bOK = true; } } break; case ControlType::Scrollbar: { const ScrollbarValue *pScrollbarVal = (aValue.getType() == ControlType::Scrollbar) ? static_cast(&aValue) : nullptr; if (nPart == ControlPart::DrawBackgroundVert || nPart == ControlPart::DrawBackgroundHorz) { drawBox(context, rc, NSColor.controlBackgroundColor); NSRect rect = { NSZeroPoint, NSMakeSize(rc.size.width, rc.size.height) }; NSScroller* pBar = [[NSScroller alloc] initWithFrame: rect]; double range = pScrollbarVal->mnMax - pScrollbarVal->mnVisibleSize - pScrollbarVal->mnMin; double value = range ? (pScrollbarVal->mnCur - pScrollbarVal->mnMin) / range : 0; double length = pScrollbarVal->mnMax - pScrollbarVal->mnMin; double proportion = pScrollbarVal->mnVisibleSize / length; [pBar setEnabled: getEnabled(nState, mpFrame)]; [pBar setScrollerStyle: NSScrollerStyleLegacy]; [pBar setFloatValue: value]; [pBar setKnobProportion: proportion]; bool bPressed = (pScrollbarVal->mnThumbState & ControlState::ENABLED) && (pScrollbarVal->mnThumbState & ControlState::PRESSED); CGContextSaveGState(context); CGContextTranslateCTM(context, rc.origin.x, rc.origin.y); NSGraphicsContext* graphicsContext = [NSGraphicsContext graphicsContextWithCGContext:context flipped:NO]; NSGraphicsContext* savedContext = [NSGraphicsContext currentContext]; [NSGraphicsContext setCurrentContext: graphicsContext]; // For not-pressed first draw without the knob and then // draw just the knob but with 50% opaque which looks sort of // right [pBar drawKnobSlotInRect: rect highlight: NO]; NSBitmapImageRep* pImageRep = [pBar bitmapImageRepForCachingDisplayInRect: rect]; NSGraphicsContext* imageContext = [NSGraphicsContext graphicsContextWithBitmapImageRep:pImageRep]; [NSGraphicsContext setCurrentContext: imageContext]; [pBar drawKnob]; [NSGraphicsContext setCurrentContext: graphicsContext]; NSImage* pImage = [[NSImage alloc] initWithSize: rect.size]; [pImage addRepresentation: pImageRep]; // takes ownership of pImageRep [pImage drawInRect: rect fromRect: rect operation: NSCompositingOperationSourceOver fraction: bPressed ? 1.0 : 0.5]; [pImage release]; [NSGraphicsContext setCurrentContext:savedContext]; CGContextRestoreGState(context); bOK = true; [pBar release]; } } break; case ControlType::TabPane: { NSTabView* pBox = [[NSTabView alloc] initWithFrame: rc]; SInt32 nOverlap; GetThemeMetric(kThemeMetricTabFrameOverlap, &nOverlap); // this calculation is probably more than a little dubious rc.origin.x -= pBox.contentRect.origin.x - FOCUS_RING_WIDTH; rc.size.width += rc.size.width - pBox.contentRect.size.width - 2 * FOCUS_RING_WIDTH; double nTopBorder = pBox.contentRect.origin.y; double nBottomBorder = rc.size.height - pBox.contentRect.size.height - nTopBorder; double nExtraTop = (nTopBorder - nBottomBorder) / 2; rc.origin.y -= (nTopBorder - nExtraTop + nOverlap); rc.size.height += (nTopBorder - nExtraTop + nBottomBorder); CGContextSaveGState(context); CGContextTranslateCTM(context, rc.origin.x, rc.origin.y); rc.origin.x = 0; rc.origin.y = 0; [pBox setBoundsOrigin: rc.origin]; [pBox setBoundsSize: rc.size]; // jam this in to force the tab contents area to be left undrawn, the ControlType::TabItem // will be drawn in this space. const TabPaneValue& rValue = static_cast(aValue); SInt32 nEndCapWidth; GetThemeMetric(kThemeMetricLargeTabCapsWidth, &nEndCapWidth); FixedWidthTabViewItem* pItem = [[[FixedWidthTabViewItem alloc] initWithIdentifier: @"tab"] autorelease]; [pItem setTabWidth: rValue.m_aTabHeaderRect.GetWidth() - 2 * nEndCapWidth]; [pBox addTabViewItem: pItem]; NSGraphicsContext* graphicsContext = [NSGraphicsContext graphicsContextWithCGContext:context flipped:NO]; NSGraphicsContext* savedContext = [NSGraphicsContext currentContext]; [NSGraphicsContext setCurrentContext: graphicsContext]; [pBox drawRect: rc]; [NSGraphicsContext setCurrentContext: savedContext]; [pBox release]; CGContextRestoreGState(context); bOK = true; } break; case ControlType::TabItem: { // first, last or middle tab TabitemValue const * pTabValue = static_cast(&aValue); TabitemFlags nAlignment = pTabValue->mnAlignment; // TabitemFlags::LeftAligned (and TabitemFlags::RightAligned) for the leftmost (or rightmost) tab // when there are several lines of tabs because there is only one first tab and one // last tab and TabitemFlags::FirstInGroup (and TabitemFlags::LastInGroup) because when the // line width is different from window width, there may not be TabitemFlags::RightAligned int nPaintIndex = 1; bool bSolo = false; if (((nAlignment & TabitemFlags::LeftAligned) && (nAlignment & TabitemFlags::RightAligned)) || ((nAlignment & TabitemFlags::FirstInGroup) && (nAlignment & TabitemFlags::LastInGroup))) { nPaintIndex = 0; bSolo = true; } else if ((nAlignment & TabitemFlags::LeftAligned) || (nAlignment & TabitemFlags::FirstInGroup)) nPaintIndex = !AllSettings::GetLayoutRTL() ? 0 : 2; else if ((nAlignment & TabitemFlags::RightAligned) || (nAlignment & TabitemFlags::LastInGroup)) nPaintIndex = !AllSettings::GetLayoutRTL() ? 2 : 0; int nCells = !bSolo ? 3 : 1; NSRect ctrlrect = { NSZeroPoint, NSMakeSize(rc.size.width * nCells + FOCUS_RING_WIDTH, rc.size.height) }; NSSegmentedControl* pCtrl = [[NSSegmentedControl alloc] initWithFrame: ctrlrect]; [pCtrl setSegmentCount: nCells]; if (bSolo) [pCtrl setWidth: rc.size.width + FOCUS_RING_WIDTH forSegment: 0]; else { [pCtrl setWidth: rc.size.width + FOCUS_RING_WIDTH/2 forSegment: 0]; [pCtrl setWidth: rc.size.width forSegment: 1]; [pCtrl setWidth: rc.size.width + FOCUS_RING_WIDTH/2 forSegment: 2]; } [pCtrl setSelected: (nState & ControlState::SELECTED) ? YES : NO forSegment: nPaintIndex]; [pCtrl setFocusRingType: NSFocusRingTypeExterior]; NSGraphicsContext* savedContext = [NSGraphicsContext currentContext]; [NSGraphicsContext setCurrentContext:[NSGraphicsContext graphicsContextWithCGContext:context flipped:NO]]; NSRect rect = { NSZeroPoint, NSMakeSize(rc.size.width, rc.size.height) }; NSRect tabrect = { NSMakePoint(rc.size.width * nPaintIndex + FOCUS_RING_WIDTH / 2, 0), NSMakeSize(rc.size.width, rc.size.height) }; NSBitmapImageRep* pImageRep = [pCtrl bitmapImageRepForCachingDisplayInRect: tabrect]; [pCtrl cacheDisplayInRect: tabrect toBitmapImageRep: pImageRep]; NSImage* pImage = [[NSImage alloc] initWithSize: rect.size]; [pImage addRepresentation: pImageRep]; // takes ownership of pImageRep [pImage drawInRect: rc fromRect: rect operation: NSCompositingOperationSourceOver fraction: 1.0]; [pImage release]; [NSGraphicsContext setCurrentContext:savedContext]; [pCtrl release]; if (nState & ControlState::FOCUSED) { if (!bSolo) { if (nPaintIndex == 0) { rc.origin.x += FOCUS_RING_WIDTH / 2; rc.size.width -= FOCUS_RING_WIDTH / 2; } else if (nPaintIndex == 2) { rc.size.width -= FOCUS_RING_WIDTH / 2; rc.size.width -= FOCUS_RING_WIDTH / 2; } } paintFocusRect(4.0, rc, context); } bOK=true; } break; case ControlType::Editbox: case ControlType::MultilineEditbox: { rc.size.width += 2 * EDITBOX_INSET_MARGIN; if (nType == ControlType::Editbox) rc.size.height = EDITBOX_HEIGHT; else rc.size.height += 2 * (EDITBOX_BORDER_WIDTH + EDITBOX_INSET_MARGIN); rc.origin.x -= EDITBOX_INSET_MARGIN; rc.origin.y -= EDITBOX_INSET_MARGIN; NSTextFieldCell* pBtn = pInst->mpTextFieldCell; [pBtn setEnabled: getEnabled(nState, mpFrame)]; [pBtn setBezeled: YES]; [pBtn setEditable: YES]; [pBtn setFocusRingType: NSFocusRingTypeExterior]; drawEditableBackground(context, rc); const bool bFocused(nState & ControlState::FOCUSED); paintCell(pBtn, rc, bFocused, context, mpFrame->getNSView()); bOK = true; } break; case ControlType::Combobox: if (nPart == ControlPart::HasBackgroundTexture || nPart == ControlPart::Entire) { rc.origin.y += (rc.size.height - COMBOBOX_HEIGHT + 1) / 2; rc.size.height = COMBOBOX_HEIGHT; NSComboBoxCell* pBtn = pInst->mpComboBoxCell; [pBtn setEnabled: getEnabled(nState, mpFrame)]; [pBtn setEditable: YES]; [pBtn setState: ImplGetButtonValue(aValue.getTristateVal())]; [pBtn setFocusRingType: NSFocusRingTypeExterior]; { rc.origin.x += 2; rc.size.width -= 1; } drawEditableBackground(context, rc); const bool bFocused(nState & ControlState::FOCUSED); paintCell(pBtn, rc, bFocused, context, mpFrame->getNSView()); bOK = true; } break; case ControlType::Listbox: switch (nPart) { case ControlPart::Entire: case ControlPart::ButtonDown: { rc.origin.y += (rc.size.height - LISTBOX_HEIGHT + 1) / 2; rc.size.height = LISTBOX_HEIGHT; NSPopUpButtonCell* pBtn = pInst->mpPopUpButtonCell; [pBtn setTitle: @""]; [pBtn setEnabled: getEnabled(nState, mpFrame)]; [pBtn setFocusRingType: NSFocusRingTypeExterior]; [pBtn setHighlighted: (nState & ControlState::PRESSED) ? YES : NO]; if (nState & ControlState::DEFAULT) [pBtn setKeyEquivalent: @"\r"]; else [pBtn setKeyEquivalent: @""]; { rc.size.width += 1; } const bool bFocused(nState & ControlState::FOCUSED); paintCell(pBtn, rc, bFocused, context, nullptr); bOK = true; break; } case ControlPart::ListboxWindow: { NSRect rect = { NSZeroPoint, NSMakeSize(rc.size.width, rc.size.height) }; NSScrollView* pBox = [[NSScrollView alloc] initWithFrame: rect]; [pBox setBorderType: NSLineBorder]; CGContextSaveGState(context); CGContextTranslateCTM(context, rc.origin.x, rc.origin.y); NSGraphicsContext* savedContext = [NSGraphicsContext currentContext]; NSGraphicsContext* graphicsContext = [NSGraphicsContext graphicsContextWithCGContext:context flipped:NO]; [NSGraphicsContext setCurrentContext: graphicsContext]; [pBox drawRect: rect]; [NSGraphicsContext setCurrentContext: savedContext]; CGContextRestoreGState(context); [pBox release]; bOK = true; break; } default: break; } break; case ControlType::Spinbox: if (nPart == ControlPart::Entire) { // text field rc.size.width -= SPIN_BUTTON_WIDTH + 4 * FOCUS_RING_WIDTH; rc.size.height = EDITBOX_HEIGHT; rc.origin.x += FOCUS_RING_WIDTH; rc.origin.y += FOCUS_RING_WIDTH; NSTextFieldCell* pEdit = pInst->mpTextFieldCell; [pEdit setEnabled: YES]; [pEdit setBezeled: YES]; [pEdit setEditable: YES]; [pEdit setFocusRingType: NSFocusRingTypeExterior]; drawEditableBackground(context, rc); const bool bFocused(nState & ControlState::FOCUSED); paintCell(pEdit, rc, bFocused, context, mpFrame->getNSView()); // buttons const SpinbuttonValue *pSpinButtonVal = (aValue.getType() == ControlType::SpinButtons) ? static_cast (&aValue) : nullptr; if (pSpinButtonVal) { ControlState nUpperState = pSpinButtonVal->mnUpperState; ControlState nLowerState = pSpinButtonVal->mnLowerState; rc.origin.x += rc.size.width + FOCUS_RING_WIDTH + 1; rc.origin.y -= 1; rc.size.width = SPIN_BUTTON_WIDTH; rc.size.height = SPIN_LOWER_BUTTON_HEIGHT + SPIN_LOWER_BUTTON_HEIGHT; NSStepperCell* pBtn = pInst->mpStepperCell; [pBtn setTitle: @""]; [pBtn setState: ImplGetButtonValue(aValue.getTristateVal())]; [pBtn setEnabled: (nUpperState & ControlState::ENABLED || nLowerState & ControlState::ENABLED) ? YES : NO]; [pBtn setFocusRingType: NSFocusRingTypeExterior]; [pBtn setHighlighted: (nState & ControlState::PRESSED) ? YES : NO]; const bool bSpinFocused(nUpperState & ControlState::FOCUSED || nLowerState & ControlState::FOCUSED); paintCell(pBtn, rc, bSpinFocused, context, nullptr); } bOK = true; } break; case ControlType::Frame: { DrawFrameFlags nStyle = static_cast(aValue.getNumericVal()); if (nPart == ControlPart::Border) { if (!(nStyle & DrawFrameFlags::Menu) && !(nStyle & DrawFrameFlags::WindowBorder)) { // strange effects start to happen when HIThemeDrawFrame meets the border of the window. // These can be avoided by clipping to the boundary of the frame (see issue 84756) if (rc.origin.y + rc.size.height >= mpFrame->GetHeight() - 3) { CGMutablePathRef rPath = CGPathCreateMutable(); CGPathAddRect(rPath, nullptr, CGRectMake(0, 0, mpFrame->GetWidth() - 1, mpFrame->GetHeight() - 1)); CGContextBeginPath(context); CGContextAddPath(context, rPath); CGContextClip(context); CGPathRelease(rPath); } HIThemeFrameDrawInfo aTextDrawInfo; aTextDrawInfo.version = 0; aTextDrawInfo.kind = kHIThemeFrameListBox; aTextDrawInfo.state = kThemeStateActive; aTextDrawInfo.isFocused = false; HIThemeDrawFrame(&rc, &aTextDrawInfo, context, kHIThemeOrientationNormal); bOK = true; } } } break; case ControlType::ListNet: // do nothing as there isn't net for listviews on macOS bOK = true; break; default: break; } return bOK; } bool AquaSalGraphics::getNativeControlRegion(ControlType nType, ControlPart nPart, const tools::Rectangle &rControlRegion, ControlState, const ImplControlValue &aValue, const OUString &, tools::Rectangle &rNativeBoundingRegion, tools::Rectangle &rNativeContentRegion) { bool toReturn = false; tools::Rectangle aCtrlBoundRect(rControlRegion); short x = aCtrlBoundRect.Left(); short y = aCtrlBoundRect.Top(); short w, h; switch (nType) { case ControlType::Pushbutton: case ControlType::Radiobutton: case ControlType::Checkbox: { if (nType == ControlType::Pushbutton) { w = aCtrlBoundRect.GetWidth(); h = aCtrlBoundRect.GetHeight(); } else { w = RADIO_BUTTON_SMALL_SIZE + 2 * FOCUS_RING_WIDTH + RADIO_BUTTON_TEXT_SEPARATOR; h = RADIO_BUTTON_SMALL_SIZE + 2 * FOCUS_RING_WIDTH; } rNativeContentRegion = tools::Rectangle(Point(x, y), Size(w, h)); rNativeBoundingRegion = tools::Rectangle(Point(x, y), Size(w, h)); toReturn = true; } break; case ControlType::LevelBar: case ControlType::Progress: { tools::Rectangle aRect(aCtrlBoundRect); if (aRect.GetHeight() < LARGE_PROGRESS_INDICATOR_HEIGHT) aRect.SetBottom(aRect.Top() + MEDIUM_PROGRESS_INDICATOR_HEIGHT - 1); else aRect.SetBottom(aRect.Top() + LARGE_PROGRESS_INDICATOR_HEIGHT - 1); rNativeBoundingRegion = aRect; rNativeContentRegion = aRect; toReturn = true; } break; case ControlType::IntroProgress: { tools::Rectangle aRect(aCtrlBoundRect); aRect.SetBottom(aRect.Top() + MEDIUM_PROGRESS_INDICATOR_HEIGHT - 1); rNativeBoundingRegion = aRect; rNativeContentRegion = aRect; toReturn = true; } break; case ControlType::Slider: if (nPart == ControlPart::ThumbHorz) { w = SLIDER_WIDTH; h = aCtrlBoundRect.GetHeight(); rNativeBoundingRegion = rNativeContentRegion = tools::Rectangle(Point(x, y), Size(w, h)); toReturn = true; } else if (nPart == ControlPart::ThumbVert) { w = aCtrlBoundRect.GetWidth(); h = SLIDER_HEIGHT; rNativeBoundingRegion = rNativeContentRegion = tools::Rectangle(Point(x, y), Size(w, h)); toReturn = true; } break; case ControlType::Scrollbar: { tools::Rectangle aRect; if (AquaGetScrollRect(nPart, aCtrlBoundRect, aRect)) { toReturn = true; rNativeBoundingRegion = aRect; rNativeContentRegion = aRect; } } break; case ControlType::TabItem: { w = aCtrlBoundRect.GetWidth() + 2 * TAB_TEXT_MARGIN; h = TAB_HEIGHT + 2; rNativeContentRegion = tools::Rectangle(Point(x, y), Size(w, h)); rNativeBoundingRegion = tools::Rectangle(Point(x, y), Size(w, h)); toReturn = true; } break; case ControlType::Editbox: { const tools::Long nBorderThickness = FOCUS_RING_WIDTH + EDITBOX_BORDER_WIDTH + EDITBOX_INSET_MARGIN; // tdf#144241 don't return a negative width, expand the region to the min osx width w = std::max(nBorderThickness * 2, aCtrlBoundRect.GetWidth()); h = EDITBOX_HEIGHT + 2 * FOCUS_RING_WIDTH; rNativeBoundingRegion = tools::Rectangle(Point(x, y), Size(w, h)); w -= 2 * nBorderThickness; h -= 2 * nBorderThickness; x += nBorderThickness; y += nBorderThickness; rNativeContentRegion = tools::Rectangle(Point(x, y), Size(w, h)); toReturn = true; } break; case ControlType::Combobox: if (nPart == ControlPart::Entire) { w = aCtrlBoundRect.GetWidth(); h = COMBOBOX_HEIGHT + 2 * FOCUS_RING_WIDTH; rNativeBoundingRegion = tools::Rectangle(Point(x, y), Size(w, h)); rNativeContentRegion = tools::Rectangle(Point(x, y), Size(w, h)); toReturn = true; } else if (nPart == ControlPart::ButtonDown) { w = COMBOBOX_BUTTON_WIDTH + FOCUS_RING_WIDTH; h = COMBOBOX_HEIGHT + 2 * FOCUS_RING_WIDTH; x += aCtrlBoundRect.GetWidth() - w; rNativeBoundingRegion = tools::Rectangle(Point(x, y), Size(w, h)); rNativeContentRegion = tools::Rectangle(Point(x, y), Size(w, h)); toReturn = true; } else if (nPart == ControlPart::SubEdit) { w = aCtrlBoundRect.GetWidth() - 2 * FOCUS_RING_WIDTH - COMBOBOX_BUTTON_WIDTH - COMBOBOX_BORDER_WIDTH - 2 * COMBOBOX_TEXT_MARGIN; h = COMBOBOX_HEIGHT - 2 * COMBOBOX_BORDER_WIDTH; x += FOCUS_RING_WIDTH + COMBOBOX_BORDER_WIDTH + COMBOBOX_TEXT_MARGIN; y += FOCUS_RING_WIDTH + COMBOBOX_BORDER_WIDTH; rNativeBoundingRegion = tools::Rectangle(Point(x, y), Size(w, h)); rNativeContentRegion = tools::Rectangle(Point(x, y), Size(w, h)); toReturn = true; } break; case ControlType::Listbox: if (nPart == ControlPart::Entire) { w = aCtrlBoundRect.GetWidth(); h = LISTBOX_HEIGHT + 2 * FOCUS_RING_WIDTH; rNativeBoundingRegion = tools::Rectangle(Point(x, y), Size(w, h)); rNativeContentRegion = tools::Rectangle(Point(x, y), Size(w, h)); toReturn = true; } else if (nPart == ControlPart::ButtonDown) { w = LISTBOX_BUTTON_WIDTH + FOCUS_RING_WIDTH; h = LISTBOX_HEIGHT + 2 * FOCUS_RING_WIDTH; x += aCtrlBoundRect.GetWidth() - w; rNativeBoundingRegion = tools::Rectangle(Point(x, y), Size(w, h)); rNativeContentRegion = tools::Rectangle(Point(x, y), Size(w, h)); toReturn = true; } else if (nPart == ControlPart::SubEdit) { w = aCtrlBoundRect.GetWidth() - 2 * FOCUS_RING_WIDTH - LISTBOX_BUTTON_WIDTH - LISTBOX_BORDER_WIDTH - 2 * LISTBOX_TEXT_MARGIN; h = LISTBOX_HEIGHT - 2 * LISTBOX_BORDER_WIDTH; x += FOCUS_RING_WIDTH + LISTBOX_BORDER_WIDTH + LISTBOX_TEXT_MARGIN; y += FOCUS_RING_WIDTH + LISTBOX_BORDER_WIDTH; rNativeBoundingRegion = tools::Rectangle(Point(x, y), Size(w, h)); rNativeContentRegion = tools::Rectangle(Point(x, y), Size(w, h)); toReturn = true; } else if (nPart == ControlPart::ListboxWindow) { w = aCtrlBoundRect.GetWidth() - 2; h = aCtrlBoundRect.GetHeight() - 2; x += 1; y += 1; rNativeBoundingRegion = aCtrlBoundRect; rNativeContentRegion = tools::Rectangle(Point(x, y), Size(w, h)); toReturn = true; } break; case ControlType::Spinbox: if (nPart == ControlPart::Entire) { w = aCtrlBoundRect.GetWidth(); h = EDITBOX_HEIGHT + 2 * FOCUS_RING_WIDTH; x += SPINBOX_OFFSET; rNativeBoundingRegion = tools::Rectangle(Point(x, y), Size(w, h)); rNativeContentRegion = tools::Rectangle(Point(x, y), Size(w, h)); toReturn = true; } else if (nPart == ControlPart::SubEdit) { w = aCtrlBoundRect.GetWidth() - 4 * FOCUS_RING_WIDTH - SPIN_BUTTON_WIDTH - 2 * EDITBOX_BORDER_WIDTH - 2 * EDITBOX_INSET_MARGIN; h = EDITBOX_HEIGHT - 2 * (EDITBOX_BORDER_WIDTH + EDITBOX_INSET_MARGIN); x += FOCUS_RING_WIDTH + EDITBOX_BORDER_WIDTH + EDITBOX_INSET_MARGIN + SPINBOX_OFFSET; y += FOCUS_RING_WIDTH + EDITBOX_BORDER_WIDTH + EDITBOX_INSET_MARGIN; rNativeBoundingRegion = tools::Rectangle(Point(x, y), Size(w, h)); rNativeContentRegion = tools::Rectangle(Point(x, y), Size(w, h)); toReturn = true; } else if (nPart == ControlPart::ButtonUp) { w = SPIN_BUTTON_WIDTH + 2 * FOCUS_RING_WIDTH; h = SPIN_UPPER_BUTTON_HEIGHT + FOCUS_RING_WIDTH; x += aCtrlBoundRect.GetWidth() - SPIN_BUTTON_WIDTH - 2 * FOCUS_RING_WIDTH + SPINBOX_OFFSET; rNativeBoundingRegion = tools::Rectangle(Point(x, y), Size(w, h)); rNativeContentRegion = tools::Rectangle(Point(x, y), Size(w, h)); toReturn = true; } else if (nPart == ControlPart::ButtonDown) { w = SPIN_BUTTON_WIDTH + 2 * FOCUS_RING_WIDTH; h = SPIN_LOWER_BUTTON_HEIGHT + FOCUS_RING_WIDTH; x += aCtrlBoundRect.GetWidth() - SPIN_BUTTON_WIDTH - 2 * FOCUS_RING_WIDTH + SPINBOX_OFFSET; y += FOCUS_RING_WIDTH + SPIN_UPPER_BUTTON_HEIGHT; rNativeBoundingRegion = tools::Rectangle(Point(x, y), Size(w, h)); rNativeContentRegion = tools::Rectangle(Point(x, y), Size(w, h)); toReturn = true; } break; case ControlType::Frame: { DrawFrameStyle nStyle = static_cast(aValue.getNumericVal() & 0x000f); DrawFrameFlags nFlags = static_cast(aValue.getNumericVal() & 0xfff0); if (nPart == ControlPart::Border && !(nFlags & (DrawFrameFlags::Menu | DrawFrameFlags::WindowBorder | DrawFrameFlags::BorderWindowBorder))) { tools::Rectangle aRect(aCtrlBoundRect); if (nStyle == DrawFrameStyle::DoubleIn) { aRect.AdjustLeft(1); aRect.AdjustTop(1); // rRect.Right() -= 1; // rRect.Bottom() -= 1; } else { aRect.AdjustLeft(1); aRect.AdjustTop(1); aRect.AdjustRight(-1); aRect.AdjustBottom(-1); } rNativeContentRegion = aRect; rNativeBoundingRegion = aRect; toReturn = true; } } break; case ControlType::Menubar: case ControlType::MenuPopup: if (nPart == ControlPart::MenuItemCheckMark || nPart == ControlPart::MenuItemRadioMark) { w=10; h=10; rNativeContentRegion = tools::Rectangle(Point(x, y), Size(w, h)); rNativeBoundingRegion = tools::Rectangle(Point(x, y), Size(w, h)); toReturn = true; } break; default: break; } return toReturn; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /shared/00.po9
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/01.po25
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/autopi.po25
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/01.po25
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/bn-IN/sw/source/core/undo.po10
-rw-r--r--source/bn-IN/sw/source/ui/dbui.po13
-rw-r--r--source/bn-IN/sw/source/ui/index.po18
-rw-r--r--source/bn-IN/sw/source/ui/misc.po7
-rw-r--r--source/bn-IN/sw/uiconfig/swriter/ui.po46
-rw-r--r--source/bn-IN/vcl/source/src.po16
-rw-r--r--source/bn-IN/wizards/source/formwizard.po7
-rw-r--r--source/bn/cui/uiconfig/ui.po37
-rw-r--r--source/bn/dbaccess/uiconfig/ui.po35
-rw-r--r--source/bn/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/bn/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/bn/helpcontent2/source/text/shared/00.po9
-rw-r--r--source/bn/helpcontent2/source/text/shared/01.po25
-rw-r--r--source/bn/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/bn/helpcontent2/source/text/shared/autopi.po25
-rw-r--r--source/bn/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/bn/helpcontent2/source/text/swriter/01.po25
-rw-r--r--source/bn/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/bn/librelogo/source/pythonpath.po16
-rw-r--r--source/bn/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/bn/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/bn/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/bn/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/bn/sw/source/ui/dbui.po13
-rw-r--r--source/bn/sw/source/ui/index.po19
-rw-r--r--source/bn/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/bn/vcl/source/src.po10
-rw-r--r--source/bo/cui/uiconfig/ui.po37
-rw-r--r--source/bo/dbaccess/uiconfig/ui.po35
-rw-r--r--source/bo/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/bo/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/bo/helpcontent2/source/text/shared/00.po7
-rw-r--r--source/bo/helpcontent2/source/text/shared/01.po25
-rw-r--r--source/bo/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/bo/helpcontent2/source/text/shared/autopi.po25
-rw-r--r--source/bo/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/bo/helpcontent2/source/text/swriter/01.po25
-rw-r--r--source/bo/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/bo/librelogo/source/pythonpath.po16
-rw-r--r--source/bo/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/bo/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/bo/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/bo/sd/source/ui/app.po7
-rw-r--r--source/bo/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/bo/sw/source/ui/dbui.po13
-rw-r--r--source/bo/sw/source/ui/index.po18
-rw-r--r--source/bo/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/bo/vcl/source/src.po10
-rw-r--r--source/br/filter/source/config/fragments/filters.po8
-rw-r--r--source/br/formula/source/core/resource.po4
-rw-r--r--source/br/sfx2/uiconfig/ui.po9
-rw-r--r--source/br/svtools/source/dialogs.po6
-rw-r--r--source/br/vcl/source/src.po16
-rw-r--r--source/brx/cui/uiconfig/ui.po37
-rw-r--r--source/brx/dbaccess/uiconfig/ui.po35
-rw-r--r--source/brx/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/brx/librelogo/source/pythonpath.po16
-rw-r--r--source/brx/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/brx/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/brx/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/brx/sd/source/ui/app.po7
-rw-r--r--source/brx/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/brx/sw/source/ui/dbui.po13
-rw-r--r--source/brx/sw/source/ui/index.po18
-rw-r--r--source/brx/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/brx/vcl/source/src.po10
-rw-r--r--source/bs/dbaccess/uiconfig/ui.po31
-rw-r--r--source/bs/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/bs/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/bs/helpcontent2/source/text/scalc/05.po7
-rw-r--r--source/bs/helpcontent2/source/text/shared/00.po9
-rw-r--r--source/bs/helpcontent2/source/text/shared/01.po79
-rw-r--r--source/bs/helpcontent2/source/text/shared/02.po40
-rw-r--r--source/bs/helpcontent2/source/text/shared/autopi.po52
-rw-r--r--source/bs/helpcontent2/source/text/shared/explorer/database.po31
-rw-r--r--source/bs/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/bs/helpcontent2/source/text/smath/01.po10
-rw-r--r--source/bs/helpcontent2/source/text/swriter/01.po37
-rw-r--r--source/bs/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/bs/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/bs/sw/uiconfig/swriter/ui.po16
-rw-r--r--source/bs/vcl/source/src.po10
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/01.po25
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/01.po25
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/cs/sd/source/ui/app.po264
-rw-r--r--source/cs/sd/source/ui/view.po30
-rw-r--r--source/cs/sd/uiconfig/sdraw/ui.po20
-rw-r--r--source/cs/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/cs/sfx2/source/appl.po10
-rw-r--r--source/cs/sfx2/source/dialog.po8
-rw-r--r--source/cs/sfx2/source/doc.po16
-rw-r--r--source/cs/sfx2/source/menu.po18
-rw-r--r--source/cs/sfx2/uiconfig/ui.po42
-rw-r--r--source/cs/starmath/source.po18
-rw-r--r--source/cs/svtools/source/contnr.po10
-rw-r--r--source/cs/svtools/source/dialogs.po14
-rw-r--r--source/cs/svtools/uiconfig/ui.po8
-rw-r--r--source/cs/svx/inc.po22
-rw-r--r--source/cs/svx/source/svdraw.po7
-rw-r--r--source/da/svx/inc.po7
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po788
-rw-r--r--source/dgo/cui/uiconfig/ui.po13
-rw-r--r--source/dgo/dbaccess/uiconfig/ui.po28
-rw-r--r--source/dgo/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/dgo/librelogo/source/pythonpath.po13
-rw-r--r--source/dgo/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/dgo/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/dgo/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/dgo/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/dgo/sw/source/ui/dbui.po13
-rw-r--r--source/dgo/sw/source/ui/index.po13
-rw-r--r--source/dgo/sw/uiconfig/swriter/ui.po37
-rw-r--r--source/dgo/vcl/source/src.po7
-rw-r--r--source/dz/cui/uiconfig/ui.po37
-rw-r--r--source/dz/dbaccess/uiconfig/ui.po35
-rw-r--r--source/dz/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/dz/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/dz/helpcontent2/source/text/shared/00.po9
-rw-r--r--source/dz/helpcontent2/source/text/shared/01.po25
-rw-r--r--source/dz/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/dz/helpcontent2/source/text/shared/autopi.po25
-rw-r--r--source/dz/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/dz/helpcontent2/source/text/swriter/01.po25
-rw-r--r--source/dz/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/dz/librelogo/source/pythonpath.po16
-rw-r--r--source/dz/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/dz/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/dz/sc/source/ui/src.po7
-rw-r--r--source/dz/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/dz/sd/source/ui/app.po7
-rw-r--r--source/dz/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/dz/sw/source/core/undo.po13
-rw-r--r--source/dz/sw/source/ui/dbui.po13
-rw-r--r--source/dz/sw/source/ui/index.po18
-rw-r--r--source/dz/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/dz/vcl/source/src.po10
-rw-r--r--source/el/svx/inc.po5
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/en-ZA/cui/uiconfig/ui.po37
-rw-r--r--source/en-ZA/dbaccess/uiconfig/ui.po35
-rw-r--r--source/en-ZA/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/00.po9
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po25
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/autopi.po25
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/01.po25
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/en-ZA/librelogo/source/pythonpath.po16
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/en-ZA/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/en-ZA/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/en-ZA/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/en-ZA/sw/source/ui/dbui.po13
-rw-r--r--source/en-ZA/sw/source/ui/index.po18
-rw-r--r--source/en-ZA/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/en-ZA/vcl/source/src.po10
-rw-r--r--source/eo/helpcontent2/source/text/scalc.po50
-rw-r--r--source/eo/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/eo/helpcontent2/source/text/scalc/05.po9
-rw-r--r--source/eo/helpcontent2/source/text/schart.po7
-rw-r--r--source/eo/helpcontent2/source/text/sdraw.po9
-rw-r--r--source/eo/helpcontent2/source/text/shared.po10
-rw-r--r--source/eo/helpcontent2/source/text/shared/00.po9
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po84
-rw-r--r--source/eo/helpcontent2/source/text/shared/02.po36
-rw-r--r--source/eo/helpcontent2/source/text/shared/autopi.po30
-rw-r--r--source/eo/helpcontent2/source/text/shared/explorer/database.po27
-rw-r--r--source/eo/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/eo/helpcontent2/source/text/simpress.po79
-rw-r--r--source/eo/helpcontent2/source/text/smath/01.po12
-rw-r--r--source/eo/helpcontent2/source/text/swriter.po83
-rw-r--r--source/eo/helpcontent2/source/text/swriter/guide.po44
-rw-r--r--source/es/cui/uiconfig/ui.po8
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po18
-rw-r--r--source/es/helpcontent2/source/text/scalc.po6
-rw-r--r--source/es/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po420
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/es/helpcontent2/source/text/sdraw/guide.po6
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po8
-rw-r--r--source/es/helpcontent2/source/text/simpress/guide.po20
-rw-r--r--source/es/helpcontent2/source/text/swriter/00.po7
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po21
-rw-r--r--source/es/helpcontent2/source/text/swriter/04.po6
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po20
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po24
-rw-r--r--source/es/sc/source/ui/src.po8
-rw-r--r--source/et/helpcontent2/source/text/scalc/01.po7
-rw-r--r--source/eu/cui/source/dialogs.po10
-rw-r--r--source/eu/cui/uiconfig/ui.po40
-rw-r--r--source/eu/desktop/uiconfig/ui.po10
-rw-r--r--source/eu/extensions/uiconfig/sabpilot/ui.po8
-rw-r--r--source/eu/extras/source/autocorr/emoji.po364
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared.po117
-rw-r--r--source/eu/helpcontent2/source/text/scalc.po46
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po205
-rw-r--r--source/eu/helpcontent2/source/text/scalc/04.po10
-rw-r--r--source/eu/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/eu/helpcontent2/source/text/sdraw.po9
-rw-r--r--source/eu/helpcontent2/source/text/sdraw/guide.po6
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po21
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po52
-rw-r--r--source/eu/helpcontent2/source/text/shared/02.po43
-rw-r--r--source/eu/helpcontent2/source/text/shared/autopi.po27
-rw-r--r--source/eu/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/eu/helpcontent2/source/text/shared/guide.po9
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po11
-rw-r--r--source/eu/helpcontent2/source/text/simpress.po20
-rw-r--r--source/eu/helpcontent2/source/text/simpress/04.po18
-rw-r--r--source/eu/helpcontent2/source/text/smath/01.po7
-rw-r--r--source/eu/helpcontent2/source/text/swriter.po28
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po48
-rw-r--r--source/eu/helpcontent2/source/text/swriter/02.po21
-rw-r--r--source/eu/helpcontent2/source/text/swriter/04.po8
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po38
-rw-r--r--source/eu/nlpsolver/src/locale.po14
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po14
-rw-r--r--source/eu/sc/source/ui/src.po24
-rw-r--r--source/eu/sc/uiconfig/scalc/ui.po16
-rw-r--r--source/eu/sd/source/ui/app.po6
-rw-r--r--source/eu/sd/uiconfig/sdraw/ui.po8
-rw-r--r--source/eu/sd/uiconfig/simpress/ui.po14
-rw-r--r--source/eu/sfx2/source/appl.po8
-rw-r--r--source/eu/sfx2/source/doc.po10
-rw-r--r--source/eu/svtools/source/misc.po8
-rw-r--r--source/eu/svx/inc.po8
-rw-r--r--source/eu/svx/source/items.po8
-rw-r--r--source/eu/svx/uiconfig/ui.po10
-rw-r--r--source/eu/sw/source/ui/app.po10
-rw-r--r--source/eu/sw/source/ui/dbui.po12
-rw-r--r--source/eu/sw/source/ui/envelp.po11
-rw-r--r--source/eu/sw/uiconfig/swriter/ui.po56
-rw-r--r--source/eu/vcl/uiconfig/ui.po8
-rw-r--r--source/eu/wizards/source/template.po13
-rw-r--r--source/fa/cui/uiconfig/ui.po37
-rw-r--r--source/fa/dbaccess/uiconfig/ui.po35
-rw-r--r--source/fa/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/fa/librelogo/source/pythonpath.po16
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/fa/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/fa/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/fa/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/fa/svx/source/form.po7
-rw-r--r--source/fa/sw/source/ui/dbui.po13
-rw-r--r--source/fa/sw/source/ui/index.po18
-rw-r--r--source/fa/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/fa/vcl/source/src.po10
-rw-r--r--source/fa/wizards/source/formwizard.po7
-rw-r--r--source/ga/dbaccess/uiconfig/ui.po7
-rw-r--r--source/gd/filter/source/config/fragments/filters.po8
-rw-r--r--source/gd/sfx2/uiconfig/ui.po7
-rw-r--r--source/gd/vcl/source/src.po14
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/gl/helpcontent2/source/text/shared/02.po16
-rw-r--r--source/gl/helpcontent2/source/text/shared/autopi.po13
-rw-r--r--source/gl/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/gu/dbaccess/uiconfig/ui.po22
-rw-r--r--source/gu/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/gu/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/gu/helpcontent2/source/text/shared/00.po9
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po25
-rw-r--r--source/gu/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/gu/helpcontent2/source/text/shared/autopi.po25
-rw-r--r--source/gu/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/gu/helpcontent2/source/text/swriter/01.po25
-rw-r--r--source/gu/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/gu/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/gu/sw/uiconfig/swriter/ui.po10
-rw-r--r--source/he/cui/uiconfig/ui.po13
-rw-r--r--source/he/dbaccess/uiconfig/ui.po33
-rw-r--r--source/he/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/he/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/he/helpcontent2/source/text/shared/00.po7
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po25
-rw-r--r--source/he/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/he/helpcontent2/source/text/shared/autopi.po31
-rw-r--r--source/he/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/he/helpcontent2/source/text/swriter/01.po25
-rw-r--r--source/he/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office.po9
-rw-r--r--source/he/sw/source/ui/index.po9
-rw-r--r--source/he/sw/uiconfig/swriter/ui.po39
-rw-r--r--source/hi/cui/uiconfig/ui.po13
-rw-r--r--source/hi/dbaccess/uiconfig/ui.po31
-rw-r--r--source/hi/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/hi/helpcontent2/source/text/scalc/01.po22
-rw-r--r--source/hi/helpcontent2/source/text/scalc/05.po7
-rw-r--r--source/hi/helpcontent2/source/text/shared/00.po7
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po76
-rw-r--r--source/hi/helpcontent2/source/text/shared/02.po40
-rw-r--r--source/hi/helpcontent2/source/text/shared/autopi.po70
-rw-r--r--source/hi/helpcontent2/source/text/shared/explorer/database.po40
-rw-r--r--source/hi/helpcontent2/source/text/shared/optionen.po13
-rw-r--r--source/hi/helpcontent2/source/text/smath/01.po10
-rw-r--r--source/hi/helpcontent2/source/text/swriter/01.po34
-rw-r--r--source/hi/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/hi/librelogo/source/pythonpath.po16
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/hi/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/hi/sc/source/ui/src.po7
-rw-r--r--source/hi/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/hi/sw/source/core/undo.po10
-rw-r--r--source/hi/sw/source/ui/dbui.po13
-rw-r--r--source/hi/sw/source/ui/index.po19
-rw-r--r--source/hi/sw/source/ui/misc.po7
-rw-r--r--source/hi/sw/uiconfig/swriter/ui.po40
-rw-r--r--source/hi/vcl/source/src.po16
-rw-r--r--source/hi/wizards/source/formwizard.po7
-rw-r--r--source/hr/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/hr/helpcontent2/source/text/shared/00.po7
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po58
-rw-r--r--source/hr/helpcontent2/source/text/shared/02.po34
-rw-r--r--source/hr/helpcontent2/source/text/shared/autopi.po34
-rw-r--r--source/hr/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/hr/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/hr/helpcontent2/source/text/smath/01.po10
-rw-r--r--source/hr/helpcontent2/source/text/swriter/01.po31
-rw-r--r--source/hr/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/hu/svx/inc.po7
-rw-r--r--source/id/helpcontent2/source/text/shared/00.po7
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po16
-rw-r--r--source/id/helpcontent2/source/text/shared/02.po34
-rw-r--r--source/id/helpcontent2/source/text/shared/autopi.po25
-rw-r--r--source/id/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/id/helpcontent2/source/text/swriter/01.po13
-rw-r--r--source/is/cui/uiconfig/ui.po6
-rw-r--r--source/is/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/is/helpcontent2/source/text/shared/autopi.po30
-rw-r--r--source/is/helpcontent2/source/text/shared/explorer/database.po24
-rw-r--r--source/is/helpcontent2/source/text/swriter/01.po27
-rw-r--r--source/is/helpcontent2/source/text/swriter/02.po9
-rw-r--r--source/is/svx/inc.po5
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/it/helpcontent2/source/text/shared/02.po74
-rw-r--r--source/it/helpcontent2/source/text/shared/autopi.po14
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po80
-rw-r--r--source/it/helpcontent2/source/text/simpress.po14
-rw-r--r--source/it/helpcontent2/source/text/simpress/01.po38
-rw-r--r--source/it/helpcontent2/source/text/simpress/02.po8
-rw-r--r--source/it/helpcontent2/source/text/simpress/guide.po36
-rw-r--r--source/it/helpcontent2/source/text/smath/01.po8
-rw-r--r--source/it/helpcontent2/source/text/swriter.po18
-rw-r--r--source/it/helpcontent2/source/text/swriter/01.po128
-rw-r--r--source/it/svx/inc.po9
-rw-r--r--source/ja/basic/source/classes.po9
-rw-r--r--source/ja/helpcontent2/source/text/shared/00.po9
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po27
-rw-r--r--source/ja/helpcontent2/source/text/shared/02.po30
-rw-r--r--source/ka/cui/uiconfig/ui.po37
-rw-r--r--source/ka/dbaccess/uiconfig/ui.po35
-rw-r--r--source/ka/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/ka/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/ka/helpcontent2/source/text/scalc/05.po7
-rw-r--r--source/ka/helpcontent2/source/text/shared/00.po7
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po82
-rw-r--r--source/ka/helpcontent2/source/text/shared/02.po34
-rw-r--r--source/ka/helpcontent2/source/text/shared/autopi.po28
-rw-r--r--source/ka/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/ka/helpcontent2/source/text/smath/01.po10
-rw-r--r--source/ka/helpcontent2/source/text/swriter/01.po25
-rw-r--r--source/ka/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/ka/librelogo/source/pythonpath.po16
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/ka/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/ka/sc/source/ui/src.po7
-rw-r--r--source/ka/sd/source/ui/app.po7
-rw-r--r--source/ka/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/ka/sw/source/core/undo.po10
-rw-r--r--source/ka/sw/source/ui/dbui.po13
-rw-r--r--source/ka/sw/source/ui/index.po18
-rw-r--r--source/ka/sw/source/ui/misc.po7
-rw-r--r--source/ka/sw/uiconfig/swriter/ui.po46
-rw-r--r--source/ka/vcl/source/src.po16
-rw-r--r--source/ka/wizards/source/formwizard.po7
-rw-r--r--source/kk/filter/source/config/fragments/filters.po8
-rw-r--r--source/kk/sfx2/uiconfig/ui.po7
-rw-r--r--source/kk/vcl/source/src.po14
-rw-r--r--source/km/dbaccess/uiconfig/ui.po22
-rw-r--r--source/km/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/km/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/km/sw/uiconfig/swriter/ui.po16
-rw-r--r--source/kmr-Latn/cui/uiconfig/ui.po37
-rw-r--r--source/kmr-Latn/dbaccess/uiconfig/ui.po35
-rw-r--r--source/kmr-Latn/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/kmr-Latn/librelogo/source/pythonpath.po16
-rw-r--r--source/kmr-Latn/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/kmr-Latn/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/kmr-Latn/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/kmr-Latn/sd/source/ui/app.po7
-rw-r--r--source/kmr-Latn/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/kmr-Latn/sw/source/ui/dbui.po13
-rw-r--r--source/kmr-Latn/sw/source/ui/index.po18
-rw-r--r--source/kmr-Latn/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/kmr-Latn/vcl/source/src.po10
-rw-r--r--source/kn/sw/source/ui/dbui.po17
-rw-r--r--source/kn/sw/source/ui/index.po16
-rw-r--r--source/kn/sw/source/uibase/dbui.po17
-rw-r--r--source/kn/sw/uiconfig/swriter/ui.po31
-rw-r--r--source/ko/dbaccess/uiconfig/ui.po35
-rw-r--r--source/ko/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/ko/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/ko/helpcontent2/source/text/shared/00.po9
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po25
-rw-r--r--source/ko/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/ko/helpcontent2/source/text/shared/autopi.po25
-rw-r--r--source/ko/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/ko/helpcontent2/source/text/swriter/01.po25
-rw-r--r--source/ko/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/kok/cui/uiconfig/ui.po13
-rw-r--r--source/kok/dbaccess/uiconfig/ui.po35
-rw-r--r--source/kok/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/kok/librelogo/source/pythonpath.po13
-rw-r--r--source/kok/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/kok/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/kok/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/kok/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/kok/sw/source/ui/dbui.po13
-rw-r--r--source/kok/sw/source/ui/index.po18
-rw-r--r--source/kok/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/kok/vcl/source/src.po10
-rw-r--r--source/ks/cui/uiconfig/ui.po37
-rw-r--r--source/ks/dbaccess/uiconfig/ui.po35
-rw-r--r--source/ks/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/ks/librelogo/source/pythonpath.po16
-rw-r--r--source/ks/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/ks/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/ks/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/ks/sd/source/ui/app.po7
-rw-r--r--source/ks/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/ks/sw/source/ui/dbui.po13
-rw-r--r--source/ks/sw/source/ui/index.po18
-rw-r--r--source/ks/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/ks/vcl/source/src.po10
-rw-r--r--source/lo/cui/uiconfig/ui.po37
-rw-r--r--source/lo/dbaccess/uiconfig/ui.po35
-rw-r--r--source/lo/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/lo/librelogo/source/pythonpath.po16
-rw-r--r--source/lo/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/lo/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/lo/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/lo/sd/source/ui/app.po7
-rw-r--r--source/lo/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/lo/sw/source/ui/dbui.po13
-rw-r--r--source/lo/sw/source/ui/index.po18
-rw-r--r--source/lo/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/lo/vcl/source/src.po10
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office/UI.po9
-rw-r--r--source/lt/sd/uiconfig/simpress/ui.po9
-rw-r--r--source/lt/sw/uiconfig/swriter/ui.po7
-rw-r--r--source/lv/cui/source/tabpages.po10
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/mai/cui/uiconfig/ui.po37
-rw-r--r--source/mai/dbaccess/uiconfig/ui.po35
-rw-r--r--source/mai/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/mai/librelogo/source/pythonpath.po16
-rw-r--r--source/mai/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/mai/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/mai/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/mai/sd/source/ui/app.po7
-rw-r--r--source/mai/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/mai/sw/source/ui/dbui.po13
-rw-r--r--source/mai/sw/source/ui/index.po18
-rw-r--r--source/mai/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/mai/vcl/source/src.po10
-rw-r--r--source/mk/cui/uiconfig/ui.po37
-rw-r--r--source/mk/dbaccess/uiconfig/ui.po35
-rw-r--r--source/mk/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/mk/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/mk/helpcontent2/source/text/shared/00.po7
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po25
-rw-r--r--source/mk/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/mk/helpcontent2/source/text/shared/autopi.po25
-rw-r--r--source/mk/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/mk/helpcontent2/source/text/swriter/01.po25
-rw-r--r--source/mk/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/mk/librelogo/source/pythonpath.po16
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/mk/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/mk/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/mk/sd/source/ui/app.po7
-rw-r--r--source/mk/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/mk/sw/source/ui/dbui.po13
-rw-r--r--source/mk/sw/source/ui/index.po18
-rw-r--r--source/mk/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/mk/vcl/source/src.po10
-rw-r--r--source/ml/cui/uiconfig/ui.po15
-rw-r--r--source/ml/dbaccess/uiconfig/ui.po33
-rw-r--r--source/ml/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/ml/reportdesign/uiconfig/dbreport/ui.po15
-rw-r--r--source/ml/sw/source/ui/dbui.po15
-rw-r--r--source/ml/sw/source/ui/index.po19
-rw-r--r--source/ml/sw/uiconfig/swriter/ui.po39
-rw-r--r--source/mn/cui/uiconfig/ui.po39
-rw-r--r--source/mn/dbaccess/uiconfig/ui.po35
-rw-r--r--source/mn/extensions/uiconfig/sabpilot/ui.po21
-rw-r--r--source/mn/librelogo/source/pythonpath.po10
-rw-r--r--source/mn/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/mn/reportdesign/uiconfig/dbreport/ui.po15
-rw-r--r--source/mn/sc/uiconfig/scalc/ui.po12
-rw-r--r--source/mn/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/mn/sw/source/ui/dbui.po13
-rw-r--r--source/mn/sw/source/ui/index.po18
-rw-r--r--source/mn/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/mn/swext/mediawiki/help.po8
-rw-r--r--source/mn/vcl/source/src.po10
-rw-r--r--source/mni/cui/uiconfig/ui.po37
-rw-r--r--source/mni/dbaccess/uiconfig/ui.po31
-rw-r--r--source/mni/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/mni/librelogo/source/pythonpath.po16
-rw-r--r--source/mni/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/mni/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/mni/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/mni/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/mni/sw/source/ui/dbui.po13
-rw-r--r--source/mni/sw/source/ui/index.po18
-rw-r--r--source/mni/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/mni/vcl/source/src.po7
-rw-r--r--source/mr/dbaccess/uiconfig/ui.po22
-rw-r--r--source/mr/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/mr/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/mr/sw/source/ui/index.po19
-rw-r--r--source/mr/sw/uiconfig/swriter/ui.po10
-rw-r--r--source/mr/vcl/source/src.po10
-rw-r--r--source/my/cui/uiconfig/ui.po37
-rw-r--r--source/my/dbaccess/uiconfig/ui.po34
-rw-r--r--source/my/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/my/librelogo/source/pythonpath.po15
-rw-r--r--source/my/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/my/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/my/sc/source/ui/src.po7
-rw-r--r--source/my/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/my/sw/source/core/undo.po10
-rw-r--r--source/my/sw/source/ui/dbui.po13
-rw-r--r--source/my/sw/source/ui/index.po18
-rw-r--r--source/my/sw/source/ui/misc.po7
-rw-r--r--source/my/sw/uiconfig/swriter/ui.po46
-rw-r--r--source/my/vcl/source/src.po16
-rw-r--r--source/my/wizards/source/formwizard.po7
-rw-r--r--source/nb/avmedia/source/viewer.po7
-rw-r--r--source/nb/basctl/source/basicide.po13
-rw-r--r--source/nb/basctl/source/dlged.po12
-rw-r--r--source/nb/basctl/uiconfig/basicide/ui.po16
-rw-r--r--source/nb/basic/source/classes.po135
-rw-r--r--source/nb/chart2/uiconfig/ui.po138
-rw-r--r--source/nb/connectivity/source/resource.po8
-rw-r--r--source/nb/cui/source/customize.po6
-rw-r--r--source/nb/cui/source/dialogs.po17
-rw-r--r--source/nb/cui/source/options.po10
-rw-r--r--source/nb/cui/source/tabpages.po8
-rw-r--r--source/nb/cui/uiconfig/ui.po121
-rw-r--r--source/nb/dbaccess/source/ext/macromigration.po6
-rw-r--r--source/nb/dbaccess/source/ui/app.po14
-rw-r--r--source/nb/dbaccess/source/ui/browser.po6
-rw-r--r--source/nb/dbaccess/source/ui/dlg.po24
-rw-r--r--source/nb/dbaccess/source/ui/tabledesign.po12
-rw-r--r--source/nb/dbaccess/uiconfig/ui.po451
-rw-r--r--source/nb/desktop/uiconfig/ui.po7
-rw-r--r--source/nb/dictionaries/is.po6
-rw-r--r--source/nb/dictionaries/sv_SE.po5
-rw-r--r--source/nb/editeng/source/editeng.po9
-rw-r--r--source/nb/extensions/source/scanner.po10
-rw-r--r--source/nb/extensions/uiconfig/sabpilot/ui.po108
-rw-r--r--source/nb/extensions/uiconfig/sbibliography/ui.po138
-rw-r--r--source/nb/extensions/uiconfig/scanner/ui.po18
-rw-r--r--source/nb/extensions/uiconfig/spropctrlr/ui.po14
-rw-r--r--source/nb/extras/source/autocorr/emoji.po2311
-rw-r--r--source/nb/filter/source/config/fragments/filters.po74
-rw-r--r--source/nb/filter/source/config/fragments/types.po30
-rw-r--r--source/nb/filter/uiconfig/ui.po12
-rw-r--r--source/nb/formula/source/core/resource.po14
-rw-r--r--source/nb/formula/uiconfig/ui.po12
-rw-r--r--source/nb/fpicker/source/office.po8
-rw-r--r--source/nb/fpicker/uiconfig/ui.po23
-rw-r--r--source/nb/framework/source/classes.po8
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/nb/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/nb/helpcontent2/source/text/shared/00.po9
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po25
-rw-r--r--source/nb/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/nb/helpcontent2/source/text/shared/autopi.po25
-rw-r--r--source/nb/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/nb/helpcontent2/source/text/swriter/01.po25
-rw-r--r--source/nb/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office.po27
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po714
-rw-r--r--source/nb/readlicense_oo/docs.po15
-rw-r--r--source/nb/reportdesign/uiconfig/dbreport/ui.po102
-rw-r--r--source/nb/sc/source/ui/StatisticsDialogs.po22
-rw-r--r--source/nb/sc/source/ui/cctrl.po9
-rw-r--r--source/nb/sc/source/ui/drawfunc.po7
-rw-r--r--source/nb/sc/source/ui/sidebar.po12
-rw-r--r--source/nb/sc/source/ui/src.po141
-rw-r--r--source/nb/sc/uiconfig/scalc/ui.po95
-rw-r--r--source/nb/scaddins/source/analysis.po28
-rw-r--r--source/nb/scp2/source/accessories.po10
-rw-r--r--source/nb/scp2/source/ooo.po23
-rw-r--r--source/nb/sd/source/core.po6
-rw-r--r--source/nb/sd/source/ui/animations.po7
-rw-r--r--source/nb/sd/source/ui/app.po78
-rw-r--r--source/nb/sd/source/ui/view.po6
-rw-r--r--source/nb/sd/uiconfig/sdraw/ui.po63
-rw-r--r--source/nb/sd/uiconfig/simpress/ui.po336
-rw-r--r--source/nb/sfx2/source/appl.po7
-rw-r--r--source/nb/sfx2/source/sidebar.po6
-rw-r--r--source/nb/sfx2/uiconfig/ui.po38
-rw-r--r--source/nb/starmath/source.po49
-rw-r--r--source/nb/starmath/uiconfig/smath/ui.po155
-rw-r--r--source/nb/svtools/source/contnr.po10
-rw-r--r--source/nb/svtools/source/control.po6
-rw-r--r--source/nb/svtools/source/dialogs.po8
-rw-r--r--source/nb/svtools/source/misc.po26
-rw-r--r--source/nb/svtools/uiconfig/ui.po59
-rw-r--r--source/nb/svx/inc.po12
-rw-r--r--source/nb/svx/source/dialog.po134
-rw-r--r--source/nb/svx/source/form.po17
-rw-r--r--source/nb/svx/source/items.po12
-rw-r--r--source/nb/svx/source/stbctrls.po28
-rw-r--r--source/nb/svx/source/svdraw.po12
-rw-r--r--source/nb/svx/source/tbxctrls.po10
-rw-r--r--source/nb/svx/uiconfig/ui.po630
-rw-r--r--source/nb/sw/source/ui/app.po84
-rw-r--r--source/nb/sw/source/ui/dochdl.po8
-rw-r--r--source/nb/sw/source/ui/envelp.po12
-rw-r--r--source/nb/sw/source/ui/misc.po10
-rw-r--r--source/nb/sw/source/uibase/lingu.po5
-rw-r--r--source/nb/sw/source/uibase/utlui.po42
-rw-r--r--source/nb/sw/uiconfig/swriter/ui.po89
-rw-r--r--source/nb/uui/source.po15
-rw-r--r--source/nb/uui/uiconfig/ui.po23
-rw-r--r--source/nb/vcl/source/src.po14
-rw-r--r--source/nb/wizards/source/formwizard.po7
-rw-r--r--source/ne/cui/uiconfig/ui.po37
-rw-r--r--source/ne/dbaccess/uiconfig/ui.po35
-rw-r--r--source/ne/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/ne/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/ne/helpcontent2/source/text/shared/00.po9
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po25
-rw-r--r--source/ne/helpcontent2/source/text/shared/02.po30
-rw-r--r--source/ne/helpcontent2/source/text/shared/autopi.po25
-rw-r--r--source/ne/helpcontent2/source/text/shared/explorer/database.po27
-rw-r--r--source/ne/helpcontent2/source/text/swriter/01.po25
-rw-r--r--source/ne/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/ne/librelogo/source/pythonpath.po16
-rw-r--r--source/ne/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/ne/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/ne/sc/source/ui/src.po7
-rw-r--r--source/ne/sd/source/ui/app.po7
-rw-r--r--source/ne/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/ne/sw/source/core/undo.po13
-rw-r--r--source/ne/sw/source/ui/dbui.po13
-rw-r--r--source/ne/sw/source/ui/index.po18
-rw-r--r--source/ne/sw/source/ui/misc.po7
-rw-r--r--source/ne/sw/uiconfig/swriter/ui.po46
-rw-r--r--source/ne/vcl/source/src.po16
-rw-r--r--source/ne/wizards/source/formwizard.po7
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po14
-rw-r--r--source/nl/helpcontent2/source/text/scalc.po12
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po50
-rw-r--r--source/nl/helpcontent2/source/text/scalc/04.po8
-rw-r--r--source/nl/helpcontent2/source/text/scalc/05.po8
-rw-r--r--source/nl/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/nl/helpcontent2/source/text/schart/01.po10
-rw-r--r--source/nl/helpcontent2/source/text/shared/00.po8
-rw-r--r--source/nl/helpcontent2/source/text/simpress/01.po14
-rw-r--r--source/nl/helpcontent2/source/text/simpress/02.po10
-rw-r--r--source/nl/helpcontent2/source/text/simpress/guide.po16
-rw-r--r--source/nl/helpcontent2/source/text/smath/00.po8
-rw-r--r--source/nl/helpcontent2/source/text/smath/01.po8
-rw-r--r--source/nl/helpcontent2/source/text/swriter.po8
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/nl/svx/inc.po7
-rw-r--r--source/nn/cui/uiconfig/ui.po14
-rw-r--r--source/nn/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/nr/cui/uiconfig/ui.po37
-rw-r--r--source/nr/dbaccess/uiconfig/ui.po35
-rw-r--r--source/nr/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/nr/librelogo/source/pythonpath.po16
-rw-r--r--source/nr/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/nr/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/nr/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/nr/sd/source/ui/app.po7
-rw-r--r--source/nr/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/nr/sw/source/core/undo.po10
-rw-r--r--source/nr/sw/source/ui/dbui.po13
-rw-r--r--source/nr/sw/source/ui/index.po18
-rw-r--r--source/nr/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/nr/vcl/source/src.po10
-rw-r--r--source/nr/wizards/source/formwizard.po10
-rw-r--r--source/nso/cui/uiconfig/ui.po37
-rw-r--r--source/nso/dbaccess/uiconfig/ui.po35
-rw-r--r--source/nso/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/nso/librelogo/source/pythonpath.po16
-rw-r--r--source/nso/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/nso/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/nso/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/nso/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/nso/sw/source/ui/dbui.po13
-rw-r--r--source/nso/sw/source/ui/index.po18
-rw-r--r--source/nso/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/nso/vcl/source/src.po10
-rw-r--r--source/nso/wizards/source/formwizard.po10
-rw-r--r--source/om/cui/uiconfig/ui.po37
-rw-r--r--source/om/dbaccess/uiconfig/ui.po35
-rw-r--r--source/om/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/om/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/om/helpcontent2/source/text/shared/00.po9
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po25
-rw-r--r--source/om/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/om/helpcontent2/source/text/shared/autopi.po25
-rw-r--r--source/om/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/om/helpcontent2/source/text/swriter/01.po25
-rw-r--r--source/om/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/om/librelogo/source/pythonpath.po16
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/om/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/om/sc/source/ui/src.po7
-rw-r--r--source/om/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/om/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/om/sw/source/ui/dbui.po13
-rw-r--r--source/om/sw/source/ui/index.po18
-rw-r--r--source/om/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/om/vcl/source/src.po10
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/or/sw/source/ui/dbui.po13
-rw-r--r--source/or/sw/source/ui/index.po19
-rw-r--r--source/pa-IN/accessibility/source/helper.po12
-rw-r--r--source/pa-IN/basctl/source/basicide.po8
-rw-r--r--source/pa-IN/basctl/source/dlged.po10
-rw-r--r--source/pa-IN/basctl/uiconfig/basicide/ui.po14
-rw-r--r--source/pa-IN/cui/uiconfig/ui.po37
-rw-r--r--source/pa-IN/dbaccess/uiconfig/ui.po34
-rw-r--r--source/pa-IN/extensions/uiconfig/sabpilot/ui.po21
-rw-r--r--source/pa-IN/librelogo/source/pythonpath.po16
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/pa-IN/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/pa-IN/sc/source/ui/src.po7
-rw-r--r--source/pa-IN/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/pa-IN/sw/source/core/undo.po12
-rw-r--r--source/pa-IN/sw/source/ui/dbui.po13
-rw-r--r--source/pa-IN/sw/source/ui/index.po19
-rw-r--r--source/pa-IN/sw/source/ui/misc.po7
-rw-r--r--source/pa-IN/sw/uiconfig/swriter/ui.po46
-rw-r--r--source/pa-IN/vcl/source/src.po16
-rw-r--r--source/pa-IN/wizards/source/formwizard.po9
-rw-r--r--source/pl/svx/inc.po7
-rw-r--r--source/pt/chart2/uiconfig/ui.po8
-rw-r--r--source/pt/connectivity/source/resource.po10
-rw-r--r--source/pt/cui/source/customize.po10
-rw-r--r--source/pt/cui/source/dialogs.po14
-rw-r--r--source/pt/cui/uiconfig/ui.po24
-rw-r--r--source/pt/dbaccess/source/ui/browser.po16
-rw-r--r--source/pt/dbaccess/source/ui/dlg.po10
-rw-r--r--source/pt/dbaccess/source/ui/tabledesign.po8
-rw-r--r--source/pt/dbaccess/uiconfig/ui.po8
-rw-r--r--source/pt/desktop/source/deployment/gui.po8
-rw-r--r--source/pt/desktop/source/deployment/registry/component.po14
-rw-r--r--source/pt/desktop/source/deployment/unopkg.po12
-rw-r--r--source/pt/desktop/uiconfig/ui.po10
-rw-r--r--source/pt/editeng/source/items.po8
-rw-r--r--source/pt/extensions/source/propctrlr.po8
-rw-r--r--source/pt/extensions/source/update/check.po40
-rw-r--r--source/pt/extensions/uiconfig/spropctrlr/ui.po12
-rw-r--r--source/pt/filter/uiconfig/ui.po8
-rw-r--r--source/pt/forms/source/resource.po8
-rw-r--r--source/pt/fpicker/source/office.po8
-rw-r--r--source/pt/helpcontent2/source/auxiliary.po8
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/guide.po8
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared.po88
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared/02.po8
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po86
-rw-r--r--source/pt/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po54
-rw-r--r--source/pt/helpcontent2/source/text/shared/02.po10
-rw-r--r--source/pt/helpcontent2/source/text/shared/05.po12
-rw-r--r--source/pt/helpcontent2/source/text/shared/autopi.po8
-rw-r--r--source/pt/helpcontent2/source/text/shared/explorer/database.po16
-rw-r--r--source/pt/helpcontent2/source/text/shared/guide.po34
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po20
-rw-r--r--source/pt/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/pt/helpcontent2/source/text/swriter/guide.po8
-rw-r--r--source/pt/instsetoo_native/inc_openoffice/windows/msi_languages.po18
-rw-r--r--source/pt/nlpsolver/src/locale.po12
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/pt/readlicense_oo/docs.po16
-rw-r--r--source/pt/reportdesign/source/ui/dlg.po8
-rw-r--r--source/pt/reportdesign/source/ui/inspection.po12
-rw-r--r--source/pt/reportdesign/source/ui/report.po8
-rw-r--r--source/pt/sc/source/ui/src.po12
-rw-r--r--source/pt/sc/uiconfig/scalc/ui.po12
-rw-r--r--source/pt/scp2/source/ooo.po8
-rw-r--r--source/pt/sd/source/core.po8
-rw-r--r--source/pt/sd/source/ui/app.po8
-rw-r--r--source/pt/svx/inc.po7
-rw-r--r--source/pt/svx/source/items.po8
-rw-r--r--source/pt/svx/source/sidebar/area.po14
-rw-r--r--source/pt/svx/source/src.po10
-rw-r--r--source/pt/svx/source/svdraw.po8
-rw-r--r--source/pt/svx/uiconfig/ui.po18
-rw-r--r--source/pt/sw/source/core/undo.po8
-rw-r--r--source/pt/sw/source/ui/utlui.po8
-rw-r--r--source/pt/sw/uiconfig/swriter/ui.po10
-rw-r--r--source/pt/uui/source.po10
-rw-r--r--source/pt/uui/uiconfig/ui.po10
-rw-r--r--source/pt/wizards/source/formwizard.po8
-rw-r--r--source/ru/svx/inc.po7
-rw-r--r--source/rw/cui/uiconfig/ui.po37
-rw-r--r--source/rw/dbaccess/uiconfig/ui.po35
-rw-r--r--source/rw/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/rw/librelogo/source/pythonpath.po16
-rw-r--r--source/rw/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/rw/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/rw/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/rw/sd/source/ui/app.po7
-rw-r--r--source/rw/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/rw/sw/source/ui/dbui.po13
-rw-r--r--source/rw/sw/source/ui/index.po18
-rw-r--r--source/rw/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/rw/vcl/source/src.po10
-rw-r--r--source/sa-IN/cui/uiconfig/ui.po37
-rw-r--r--source/sa-IN/dbaccess/uiconfig/ui.po31
-rw-r--r--source/sa-IN/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/sa-IN/librelogo/source/pythonpath.po10
-rw-r--r--source/sa-IN/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/sa-IN/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/sa-IN/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/sa-IN/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/sa-IN/sw/source/ui/dbui.po13
-rw-r--r--source/sa-IN/sw/source/ui/index.po7
-rw-r--r--source/sa-IN/sw/uiconfig/swriter/ui.po40
-rw-r--r--source/sa-IN/vcl/source/src.po7
-rw-r--r--source/sat/cui/uiconfig/ui.po10
-rw-r--r--source/sat/dbaccess/uiconfig/ui.po22
-rw-r--r--source/sat/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/sat/librelogo/source/pythonpath.po13
-rw-r--r--source/sat/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/sat/sw/source/ui/dbui.po10
-rw-r--r--source/sat/sw/uiconfig/swriter/ui.po22
-rw-r--r--source/sat/vcl/source/src.po7
-rw-r--r--source/sd/cui/uiconfig/ui.po13
-rw-r--r--source/sd/dbaccess/uiconfig/ui.po22
-rw-r--r--source/sd/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/sd/librelogo/source/pythonpath.po13
-rw-r--r--source/sd/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/sd/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/sd/sw/source/ui/dbui.po13
-rw-r--r--source/sd/sw/uiconfig/swriter/ui.po28
-rw-r--r--source/sd/vcl/source/src.po7
-rw-r--r--source/si/cui/uiconfig/ui.po37
-rw-r--r--source/si/dbaccess/uiconfig/ui.po35
-rw-r--r--source/si/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/si/helpcontent2/source/text/scalc/01.po13
-rw-r--r--source/si/helpcontent2/source/text/shared/00.po7
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po70
-rw-r--r--source/si/helpcontent2/source/text/shared/02.po34
-rw-r--r--source/si/helpcontent2/source/text/shared/autopi.po28
-rw-r--r--source/si/helpcontent2/source/text/shared/explorer/database.po28
-rw-r--r--source/si/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/si/helpcontent2/source/text/smath/01.po10
-rw-r--r--source/si/helpcontent2/source/text/swriter/01.po31
-rw-r--r--source/si/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/si/librelogo/source/pythonpath.po16
-rw-r--r--source/si/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/si/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/si/sc/source/ui/src.po7
-rw-r--r--source/si/sd/source/ui/app.po7
-rw-r--r--source/si/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/si/sw/source/core/undo.po10
-rw-r--r--source/si/sw/source/ui/dbui.po13
-rw-r--r--source/si/sw/source/ui/index.po18
-rw-r--r--source/si/sw/source/ui/misc.po7
-rw-r--r--source/si/sw/uiconfig/swriter/ui.po46
-rw-r--r--source/si/vcl/source/src.po16
-rw-r--r--source/si/wizards/source/formwizard.po7
-rw-r--r--source/sid/cui/uiconfig/ui.po13
-rw-r--r--source/sid/dbaccess/uiconfig/ui.po31
-rw-r--r--source/sid/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/sid/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/sid/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/sid/sw/source/core/undo.po10
-rw-r--r--source/sid/sw/source/ui/dbui.po13
-rw-r--r--source/sid/sw/source/ui/index.po19
-rw-r--r--source/sid/sw/uiconfig/swriter/ui.po37
-rw-r--r--source/sid/vcl/source/src.po10
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/sk/helpcontent2/source/text/shared/00.po7
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po61
-rw-r--r--source/sk/helpcontent2/source/text/shared/02.po33
-rw-r--r--source/sk/helpcontent2/source/text/shared/autopi.po27
-rw-r--r--source/sk/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/sk/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/sk/helpcontent2/source/text/swriter/01.po27
-rw-r--r--source/sk/svx/inc.po7
-rw-r--r--source/sq/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/sq/helpcontent2/source/text/shared/00.po9
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po79
-rw-r--r--source/sq/helpcontent2/source/text/shared/02.po34
-rw-r--r--source/sq/helpcontent2/source/text/shared/autopi.po30
-rw-r--r--source/sq/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/sq/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/sq/helpcontent2/source/text/swriter/01.po28
-rw-r--r--source/sq/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/sq/librelogo/source/pythonpath.po12
-rw-r--r--source/sq/wizards/source/formwizard.po7
-rw-r--r--source/ss/cui/uiconfig/ui.po37
-rw-r--r--source/ss/dbaccess/uiconfig/ui.po35
-rw-r--r--source/ss/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/ss/librelogo/source/pythonpath.po16
-rw-r--r--source/ss/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/ss/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/ss/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/ss/sd/source/ui/app.po7
-rw-r--r--source/ss/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/ss/sw/source/core/undo.po10
-rw-r--r--source/ss/sw/source/ui/dbui.po13
-rw-r--r--source/ss/sw/source/ui/index.po18
-rw-r--r--source/ss/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/ss/vcl/source/src.po10
-rw-r--r--source/ss/wizards/source/formwizard.po10
-rw-r--r--source/st/cui/uiconfig/ui.po37
-rw-r--r--source/st/dbaccess/uiconfig/ui.po35
-rw-r--r--source/st/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/st/librelogo/source/pythonpath.po16
-rw-r--r--source/st/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/st/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/st/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/st/sd/source/ui/app.po7
-rw-r--r--source/st/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/st/sw/source/core/undo.po10
-rw-r--r--source/st/sw/source/ui/dbui.po13
-rw-r--r--source/st/sw/source/ui/index.po18
-rw-r--r--source/st/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/st/vcl/source/src.po10
-rw-r--r--source/st/wizards/source/formwizard.po10
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po91
-rw-r--r--source/sv/svx/inc.po7
-rw-r--r--source/sw-TZ/cui/uiconfig/ui.po37
-rw-r--r--source/sw-TZ/dbaccess/uiconfig/ui.po35
-rw-r--r--source/sw-TZ/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/sw-TZ/librelogo/source/pythonpath.po16
-rw-r--r--source/sw-TZ/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/sw-TZ/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/sw-TZ/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/sw-TZ/sd/source/ui/app.po7
-rw-r--r--source/sw-TZ/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/sw-TZ/sw/source/ui/dbui.po13
-rw-r--r--source/sw-TZ/sw/source/ui/index.po18
-rw-r--r--source/sw-TZ/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/sw-TZ/vcl/source/src.po10
-rw-r--r--source/te/dbaccess/uiconfig/ui.po31
-rw-r--r--source/te/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/te/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/te/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/te/sw/source/ui/dbui.po13
-rw-r--r--source/te/sw/source/ui/index.po18
-rw-r--r--source/te/sw/uiconfig/swriter/ui.po37
-rw-r--r--source/te/vcl/source/src.po10
-rw-r--r--source/tg/cui/uiconfig/ui.po37
-rw-r--r--source/tg/dbaccess/uiconfig/ui.po35
-rw-r--r--source/tg/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/tg/helpcontent2/source/text/scalc/01.po22
-rw-r--r--source/tg/helpcontent2/source/text/scalc/05.po7
-rw-r--r--source/tg/helpcontent2/source/text/shared/00.po9
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po88
-rw-r--r--source/tg/helpcontent2/source/text/shared/02.po40
-rw-r--r--source/tg/helpcontent2/source/text/shared/autopi.po64
-rw-r--r--source/tg/helpcontent2/source/text/shared/explorer/database.po40
-rw-r--r--source/tg/helpcontent2/source/text/shared/optionen.po13
-rw-r--r--source/tg/helpcontent2/source/text/smath/01.po10
-rw-r--r--source/tg/helpcontent2/source/text/swriter/01.po37
-rw-r--r--source/tg/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/tg/librelogo/source/pythonpath.po16
-rw-r--r--source/tg/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/tg/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/tg/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/tg/sd/source/ui/app.po7
-rw-r--r--source/tg/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/tg/sw/source/ui/dbui.po13
-rw-r--r--source/tg/sw/source/ui/index.po18
-rw-r--r--source/tg/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/tg/vcl/source/src.po10
-rw-r--r--source/th/cui/uiconfig/ui.po41
-rw-r--r--source/th/dbaccess/uiconfig/ui.po31
-rw-r--r--source/th/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/th/librelogo/source/pythonpath.po14
-rw-r--r--source/th/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/th/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/th/sc/source/ui/src.po25
-rw-r--r--source/th/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/th/scaddins/source/analysis.po16
-rw-r--r--source/th/scp2/source/draw.po10
-rw-r--r--source/th/scp2/source/impress.po8
-rw-r--r--source/th/scp2/source/math.po10
-rw-r--r--source/th/sd/source/ui/app.po8
-rw-r--r--source/th/sd/uiconfig/sdraw/ui.po6
-rw-r--r--source/th/sd/uiconfig/simpress/ui.po28
-rw-r--r--source/th/sfx2/source/appl.po12
-rw-r--r--source/th/sfx2/uiconfig/ui.po10
-rw-r--r--source/th/shell/source/win32/shlxthandler/res.po12
-rw-r--r--source/th/svl/source/misc.po10
-rw-r--r--source/th/sw/source/ui/dbui.po13
-rw-r--r--source/th/sw/source/ui/index.po13
-rw-r--r--source/th/sw/source/ui/utlui.po10
-rw-r--r--source/th/sw/source/uibase/uiview.po12
-rw-r--r--source/th/sw/uiconfig/swriter/ui.po59
-rw-r--r--source/th/vcl/source/src.po10
-rw-r--r--source/th/wizards/source/formwizard.po14
-rw-r--r--source/tn/cui/uiconfig/ui.po37
-rw-r--r--source/tn/dbaccess/uiconfig/ui.po35
-rw-r--r--source/tn/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/tn/librelogo/source/pythonpath.po16
-rw-r--r--source/tn/officecfg/registry/data/org/openoffice/Office.po37
-rw-r--r--source/tn/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/tn/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/tn/sd/source/ui/app.po16
-rw-r--r--source/tn/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/tn/sw/source/core/undo.po13
-rw-r--r--source/tn/sw/source/ui/dbui.po13
-rw-r--r--source/tn/sw/source/ui/index.po18
-rw-r--r--source/tn/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/tn/vcl/source/src.po10
-rw-r--r--source/tn/wizards/source/formwizard.po22
-rw-r--r--source/tr/basic/source/classes.po176
-rw-r--r--source/tr/chart2/uiconfig/ui.po8
-rw-r--r--source/tr/cui/source/tabpages.po7
-rw-r--r--source/tr/cui/uiconfig/ui.po26
-rw-r--r--source/tr/desktop/uiconfig/ui.po7
-rw-r--r--source/tr/extras/source/autocorr/emoji.po7
-rw-r--r--source/tr/filter/source/config/fragments/filters.po21
-rw-r--r--source/tr/fpicker/source/office.po10
-rw-r--r--source/tr/fpicker/uiconfig/ui.po23
-rw-r--r--source/tr/framework/source/classes.po10
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po155
-rw-r--r--source/tr/readlicense_oo/docs.po9
-rw-r--r--source/tr/starmath/uiconfig/smath/ui.po8
-rw-r--r--source/tr/svtools/source/dialogs.po8
-rw-r--r--source/tr/svtools/source/misc.po26
-rw-r--r--source/tr/svtools/uiconfig/ui.po22
-rw-r--r--source/tr/sw/source/ui/app.po20
-rw-r--r--source/tr/sw/source/ui/dochdl.po10
-rw-r--r--source/tr/sw/source/uibase/lingu.po9
-rw-r--r--source/tr/sw/source/uibase/utlui.po42
-rw-r--r--source/tr/vcl/source/src.po14
-rw-r--r--source/tr/wizards/source/formwizard.po5
-rw-r--r--source/ts/cui/uiconfig/ui.po37
-rw-r--r--source/ts/dbaccess/uiconfig/ui.po35
-rw-r--r--source/ts/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/ts/librelogo/source/pythonpath.po16
-rw-r--r--source/ts/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/ts/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/ts/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/ts/sd/source/ui/app.po7
-rw-r--r--source/ts/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/ts/sw/source/core/undo.po10
-rw-r--r--source/ts/sw/source/ui/dbui.po13
-rw-r--r--source/ts/sw/source/ui/index.po18
-rw-r--r--source/ts/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/ts/vcl/source/src.po10
-rw-r--r--source/ts/wizards/source/formwizard.po10
-rw-r--r--source/ug/cui/uiconfig/ui.po15
-rw-r--r--source/ug/dbaccess/uiconfig/ui.po31
-rw-r--r--source/ug/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/ug/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/ug/helpcontent2/source/text/scalc/05.po7
-rw-r--r--source/ug/helpcontent2/source/text/shared/00.po7
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po79
-rw-r--r--source/ug/helpcontent2/source/text/shared/02.po40
-rw-r--r--source/ug/helpcontent2/source/text/shared/autopi.po52
-rw-r--r--source/ug/helpcontent2/source/text/shared/explorer/database.po31
-rw-r--r--source/ug/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/ug/helpcontent2/source/text/smath/01.po10
-rw-r--r--source/ug/helpcontent2/source/text/swriter/01.po37
-rw-r--r--source/ug/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/ug/officecfg/registry/data/org/openoffice/Office/UI.po154
-rw-r--r--source/ug/sw/source/ui/dbui.po13
-rw-r--r--source/ug/sw/source/ui/index.po19
-rw-r--r--source/ug/sw/uiconfig/swriter/ui.po39
-rw-r--r--source/uk/cui/uiconfig/ui.po8
-rw-r--r--source/uk/helpcontent2/source/text/scalc/01.po15
-rw-r--r--source/uk/helpcontent2/source/text/shared/00.po9
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po82
-rw-r--r--source/uk/helpcontent2/source/text/shared/02.po36
-rw-r--r--source/uk/helpcontent2/source/text/shared/autopi.po30
-rw-r--r--source/uk/helpcontent2/source/text/shared/explorer/database.po30
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po27
-rw-r--r--source/uk/helpcontent2/source/text/swriter/guide.po276
-rw-r--r--source/uk/instsetoo_native/inc_openoffice/windows/msi_languages.po12
-rw-r--r--source/uk/svx/source/dialog.po8
-rw-r--r--source/uk/sw/uiconfig/swriter/ui.po14
-rw-r--r--source/uk/wizards/source/formwizard.po8
-rw-r--r--source/uz/cui/uiconfig/ui.po37
-rw-r--r--source/uz/dbaccess/uiconfig/ui.po35
-rw-r--r--source/uz/extensions/uiconfig/sabpilot/ui.po21
-rw-r--r--source/uz/librelogo/source/pythonpath.po16
-rw-r--r--source/uz/officecfg/registry/data/org/openoffice/Office.po9
-rw-r--r--source/uz/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/uz/sc/source/ui/src.po7
-rw-r--r--source/uz/sc/uiconfig/scalc/ui.po12
-rw-r--r--source/uz/sd/source/ui/app.po7
-rw-r--r--source/uz/sd/uiconfig/simpress/ui.po12
-rw-r--r--source/uz/sw/source/ui/dbui.po13
-rw-r--r--source/uz/sw/source/ui/index.po18
-rw-r--r--source/uz/sw/uiconfig/swriter/ui.po51
-rw-r--r--source/uz/vcl/source/src.po10
-rw-r--r--source/uz/wizards/source/formwizard.po12
-rw-r--r--source/ve/cui/uiconfig/ui.po37
-rw-r--r--source/ve/dbaccess/uiconfig/ui.po35
-rw-r--r--source/ve/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/ve/librelogo/source/pythonpath.po16
-rw-r--r--source/ve/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/ve/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/ve/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/ve/sd/source/ui/app.po7
-rw-r--r--source/ve/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/ve/sw/source/core/undo.po10
-rw-r--r--source/ve/sw/source/ui/dbui.po13
-rw-r--r--source/ve/sw/source/ui/index.po18
-rw-r--r--source/ve/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/ve/vcl/source/src.po10
-rw-r--r--source/ve/wizards/source/formwizard.po10
-rw-r--r--source/vi/cui/uiconfig/ui.po37
-rw-r--r--source/vi/dbaccess/uiconfig/ui.po35
-rw-r--r--source/vi/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/vi/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/vi/helpcontent2/source/text/shared/00.po9
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po25
-rw-r--r--source/vi/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/vi/helpcontent2/source/text/shared/autopi.po25
-rw-r--r--source/vi/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/vi/helpcontent2/source/text/swriter/01.po25
-rw-r--r--source/vi/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/vi/librelogo/source/pythonpath.po15
-rw-r--r--source/vi/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/vi/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/vi/sc/source/ui/src.po7
-rw-r--r--source/vi/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/vi/sw/source/core/undo.po10
-rw-r--r--source/vi/sw/source/ui/dbui.po13
-rw-r--r--source/vi/sw/source/ui/index.po18
-rw-r--r--source/vi/sw/source/ui/misc.po7
-rw-r--r--source/vi/sw/uiconfig/swriter/ui.po46
-rw-r--r--source/vi/vcl/source/src.po16
-rw-r--r--source/vi/wizards/source/formwizard.po7
-rw-r--r--source/xh/cui/uiconfig/ui.po37
-rw-r--r--source/xh/dbaccess/uiconfig/ui.po35
-rw-r--r--source/xh/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/xh/librelogo/source/pythonpath.po16
-rw-r--r--source/xh/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/xh/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/xh/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/xh/sd/source/ui/app.po7
-rw-r--r--source/xh/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/xh/sw/source/core/undo.po10
-rw-r--r--source/xh/sw/source/ui/dbui.po13
-rw-r--r--source/xh/sw/source/ui/index.po18
-rw-r--r--source/xh/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/xh/vcl/source/src.po10
-rw-r--r--source/xh/wizards/source/formwizard.po10
-rw-r--r--source/zh-CN/cui/uiconfig/ui.po14
-rw-r--r--source/zh-CN/framework/source/classes.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/guide.po134
-rw-r--r--source/zh-CN/helpcontent2/source/text/schart/00.po14
-rw-r--r--source/zh-CN/helpcontent2/source/text/schart/01.po37
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared.po68
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter.po142
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/01.po42
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po12
-rw-r--r--source/zh-CN/sw/source/ui/fldui.po12
-rw-r--r--source/zh-CN/sw/uiconfig/swriter/ui.po12
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po25
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/02.po28
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/autopi.po25
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/explorer/database.po25
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/01.po25
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/02.po7
-rw-r--r--source/zu/cui/uiconfig/ui.po37
-rw-r--r--source/zu/dbaccess/uiconfig/ui.po35
-rw-r--r--source/zu/extensions/uiconfig/sabpilot/ui.po19
-rw-r--r--source/zu/librelogo/source/pythonpath.po16
-rw-r--r--source/zu/officecfg/registry/data/org/openoffice/Office.po7
-rw-r--r--source/zu/reportdesign/uiconfig/dbreport/ui.po13
-rw-r--r--source/zu/sc/uiconfig/scalc/ui.po10
-rw-r--r--source/zu/sd/uiconfig/simpress/ui.po10
-rw-r--r--source/zu/sw/source/ui/dbui.po13
-rw-r--r--source/zu/sw/source/ui/index.po18
-rw-r--r--source/zu/sw/uiconfig/swriter/ui.po49
-rw-r--r--source/zu/vcl/source/src.po10
-rw-r--r--source/zu/wizards/source/formwizard.po10
1283 files changed, 17655 insertions, 14921 deletions
diff --git a/source/af/accessibility/source/helper.po b/source/af/accessibility/source/helper.po
index b44e293b644..b9671c682e3 100644
--- a/source/af/accessibility/source/helper.po
+++ b/source/af/accessibility/source/helper.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-05-02 00:06+0200\n"
-"PO-Revision-Date: 2012-11-13 20:14+0000\n"
-"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-07 14:23+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1352837663.0\n"
+"X-POOTLE-MTIME: 1457360606.000000\n"
#: accessiblestrings.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_SVT_ACC_ACTION_EXPAND\n"
"string.text"
msgid "Expand"
-msgstr ""
+msgstr "Vou uit"
#: accessiblestrings.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_SVT_ACC_ACTION_COLLAPSE\n"
"string.text"
msgid "Collapse"
-msgstr ""
+msgstr "Vou in"
#: accessiblestrings.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"RID_STR_ACC_NAME_PREVIEW\n"
"string.text"
msgid "Preview"
-msgstr ""
+msgstr "Voorskou"
#: accessiblestrings.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"RID_STR_ACC_ACTION_CHECK\n"
"string.text"
msgid "Check"
-msgstr ""
+msgstr "Merk"
#: accessiblestrings.src
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"RID_STR_ACC_ACTION_DOUBLE_CLICK\n"
"string.text"
msgid "Double click"
-msgstr ""
+msgstr "Dubbelkliek"
#: accessiblestrings.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"RID_STR_ACC_SCROLLBAR_NAME_VERTICAL\n"
"string.text"
msgid "Vertical scroll bar"
-msgstr ""
+msgstr "Vertikale rolstaaf"
#: accessiblestrings.src
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"RID_STR_ACC_SCROLLBAR_NAME_HORIZONTAL\n"
"string.text"
msgid "Horizontal scroll bar"
-msgstr ""
+msgstr "Horisontale rolstaaf"
#: accessiblestrings.src
msgctxt ""
diff --git a/source/af/connectivity/source/resource.po b/source/af/connectivity/source/resource.po
index e68bc587959..4e0e07de62d 100644
--- a/source/af/connectivity/source/resource.po
+++ b/source/af/connectivity/source/resource.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-06-25 21:57+0000\n"
+"PO-Revision-Date: 2016-03-07 14:25+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435269475.000000\n"
+"X-POOTLE-MTIME: 1457360702.000000\n"
#: conn_error_message.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"256 + 2*303 + 0\n"
"string.text"
msgid "The name '$1$' is already in use in the database."
-msgstr "Die naam '$1$' word reeds in die databasis gebruik. "
+msgstr "Die naam '$1$' word reeds in die databasis gebruik."
#: conn_error_message.src
msgctxt ""
@@ -1020,7 +1020,7 @@ msgctxt ""
"STR_KDE_VERSION_TOO_NEW\n"
"string.text"
msgid "The found KDE version is too new. Only KDE up to version $major$.$minor$ is known to work with this product.\n"
-msgstr "Die KDE-weergawe wat gevind is, is te nuut. Net KDE tot weergawe $major$.$minor$ werk met hierdie produk. \n"
+msgstr "Die KDE-weergawe wat gevind is, is te nuut. Net KDE tot weergawe $major$.$minor$ werk met hierdie produk.\n"
#: conn_shared_res.src
msgctxt ""
diff --git a/source/af/cui/source/dialogs.po b/source/af/cui/source/dialogs.po
index fbbdf704f49..281e7d05ca4 100644
--- a/source/af/cui/source/dialogs.po
+++ b/source/af/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-25 15:08+0000\n"
+"PO-Revision-Date: 2016-03-07 14:25+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440515338.000000\n"
+"X-POOTLE-MTIME: 1457360724.000000\n"
#: cuires.src
msgctxt ""
@@ -293,13 +293,12 @@ msgid "Object;Objects"
msgstr "Objek;Objekte"
#: gallery.src
-#, fuzzy
msgctxt ""
"gallery.src\n"
"RID_SVXSTR_GALLERY_READONLY\n"
"string.text"
msgid "(read-only)"
-msgstr " (leesalleen)"
+msgstr "(leesalleen)"
#: gallery.src
msgctxt ""
diff --git a/source/af/cui/source/tabpages.po b/source/af/cui/source/tabpages.po
index efd15ddfced..387f7a82343 100644
--- a/source/af/cui/source/tabpages.po
+++ b/source/af/cui/source/tabpages.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: 2016-02-25 13:08+0000\n"
-"Last-Translator: Noel Grandin <noelgrandin@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 14:26+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: af\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456405708.000000\n"
+"X-POOTLE-MTIME: 1457360788.000000\n"
#: border.src
msgctxt ""
@@ -220,7 +220,7 @@ msgctxt ""
"A6\n"
"itemlist.text"
msgid "A6"
-msgstr "A"
+msgstr "A6"
#: page.src
msgctxt ""
@@ -490,7 +490,7 @@ msgctxt ""
"A6\n"
"itemlist.text"
msgid "A6"
-msgstr "A"
+msgstr "A6"
#: page.src
msgctxt ""
diff --git a/source/af/cui/uiconfig/ui.po b/source/af/cui/uiconfig/ui.po
index 272ab623192..f6c1e76b0a8 100644
--- a/source/af/cui/uiconfig/ui.po
+++ b/source/af/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 13:22+0000\n"
+"PO-Revision-Date: 2016-03-07 14:31+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: af\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452259342.000000\n"
+"X-POOTLE-MTIME: 1457361108.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14072,31 +14072,34 @@ msgid "N_one"
msgstr ""
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
@@ -17374,40 +17377,44 @@ msgid "(None)"
msgstr "(Geen)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"1\n"
"stringlist.text"
msgid "("
-msgstr ""
+msgstr "("
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"2\n"
"stringlist.text"
msgid "["
-msgstr ""
+msgstr "["
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"3\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
#: twolinespage.ui
#, fuzzy
@@ -17430,40 +17437,44 @@ msgid "(None)"
msgstr "(Geen)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
#: twolinespage.ui
#, fuzzy
diff --git a/source/af/dbaccess/source/core/resource.po b/source/af/dbaccess/source/core/resource.po
index 8eb5d0e9c8d..074cceaa37e 100644
--- a/source/af/dbaccess/source/core/resource.po
+++ b/source/af/dbaccess/source/core/resource.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-05-11 16:12+0200\n"
-"PO-Revision-Date: 2016-02-25 12:40+0000\n"
-"Last-Translator: Noel Grandin <noelgrandin@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 14:32+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: af\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456404042.000000\n"
+"X-POOTLE-MTIME: 1457361124.000000\n"
#: strings.src
msgctxt ""
@@ -496,13 +496,12 @@ msgid "Internal error: no statement object provided by the database driver."
msgstr ""
#: strings.src
-#, fuzzy
msgctxt ""
"strings.src\n"
"RID_STR_EXPRESSION1\n"
"string.text"
msgid "Expression1"
-msgstr "Uitdrukking is"
+msgstr "Uitdrukking1"
#: strings.src
msgctxt ""
diff --git a/source/af/dbaccess/source/ext/macromigration.po b/source/af/dbaccess/source/ext/macromigration.po
index eec349e0e80..1f0b7036616 100644
--- a/source/af/dbaccess/source/ext/macromigration.po
+++ b/source/af/dbaccess/source/ext/macromigration.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:40+0200\n"
-"PO-Revision-Date: 2015-05-11 19:41+0000\n"
+"PO-Revision-Date: 2016-03-07 14:32+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431373275.000000\n"
+"X-POOTLE-MTIME: 1457361131.000000\n"
#: macromigration.src
msgctxt ""
@@ -187,13 +187,12 @@ msgid "Warnings"
msgstr "Waarskuwings"
#: macromigration.src
-#, fuzzy
msgctxt ""
"macromigration.src\n"
"STR_EXCEPTION\n"
"string.text"
msgid "caught exception:"
-msgstr "uitsondering gevang: "
+msgstr "uitsondering gevang:"
#: macromigration.src
msgctxt ""
diff --git a/source/af/dbaccess/uiconfig/ui.po b/source/af/dbaccess/uiconfig/ui.po
index 08b1022c252..dc876e72c87 100644
--- a/source/af/dbaccess/uiconfig/ui.po
+++ b/source/af/dbaccess/uiconfig/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-04-22 23:40+0200\n"
-"PO-Revision-Date: 2013-02-17 20:08+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 14:34+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361131721.0\n"
+"X-POOTLE-MTIME: 1457361263.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1928,22 +1928,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1955,13 +1957,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3017,58 +3020,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/af/desktop/source/deployment/gui.po b/source/af/desktop/source/deployment/gui.po
index fcb7ce9d5ff..377779381e4 100644
--- a/source/af/desktop/source/deployment/gui.po
+++ b/source/af/desktop/source/deployment/gui.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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2016-02-25 13:11+0000\n"
-"Last-Translator: Noel Grandin <noelgrandin@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 14:34+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: af\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456405870.000000\n"
+"X-POOTLE-MTIME: 1457361283.000000\n"
#: dp_gui_dialog.src
msgctxt ""
@@ -168,7 +168,6 @@ msgid "Show license"
msgstr "~Wys skyfie"
#: dp_gui_dialog.src
-#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
"RID_STR_WARNING_INSTALL_EXTENSION\n"
@@ -178,12 +177,11 @@ msgid ""
"Click 'OK' to proceed with the installation.\n"
"Click 'Cancel' to stop the installation."
msgstr ""
-"Jy gaan nou die uitbreiding \\'%NAME\\' installeer.\n"
-"Kliek \\'OK\\' om te begin installeer.\n"
-"Kliek \\'Kanselleer\\' om die installasieproses te staak."
+"Jy gaan nou die uitbreiding '%NAME' installeer.\n"
+"Kliek 'OK' om te begin installeer.\n"
+"Kliek 'Kanselleer' om die installasieproses te staak."
#: dp_gui_dialog.src
-#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_EXTENSION\n"
@@ -193,12 +191,11 @@ msgid ""
"Click 'OK' to remove the extension.\n"
"Click 'Cancel' to stop removing the extension."
msgstr ""
-"U gaan nou die uitbreiding \\'%NAME\\' verwyder.\n"
-"Kliek \\'OK\\' om die uitbreiding te verwyder.\n"
-"Kliek \\'Kanselleer\\' om op te hou om die uitbreiding te verwyder."
+"U gaan nou die uitbreiding '%NAME' verwyder.\n"
+"Kliek 'OK' om die uitbreiding te verwyder.\n"
+"Kliek 'Kanselleer' om op te hou om die uitbreiding te verwyder."
#: dp_gui_dialog.src
-#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
"RID_STR_WARNING_REMOVE_SHARED_EXTENSION\n"
@@ -209,11 +206,10 @@ msgid ""
"Click 'Cancel' to stop removing the extension."
msgstr ""
"Maak seker dat geen ander gebruikers aan %PRODUCTNAME werk nie as jy die gedeelde uitbreiding in 'n veelgebruikeromgewing verander.\n"
-"Kliek \\'OK\\' om die uitbreiding te verwyder.\n"
-"Kliek \\'Kanselleer\\' om op te hou om die uitbreiding te verwyder."
+"Kliek 'OK' om die uitbreiding te verwyder.\n"
+"Kliek 'Kanselleer' om op te hou om die uitbreiding te verwyder."
#: dp_gui_dialog.src
-#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
"RID_STR_WARNING_ENABLE_SHARED_EXTENSION\n"
@@ -224,11 +220,10 @@ msgid ""
"Click 'Cancel' to stop enabling the extension."
msgstr ""
"Maak seker dat geen ander gebruikers aan %PRODUCTNAME werk nie as jy die gedeelde uitbreiding in 'n veelgebruikeromgewing verander.\n"
-"Kliek \\'OK\\' om die uitbreiding te aktiveer.\n"
-"Kliek \\'Kanselleer\\' om op te hou om die uitbreiding te aktiveer."
+"Kliek 'OK' om die uitbreiding te aktiveer.\n"
+"Kliek 'Kanselleer' om op te hou om die uitbreiding te aktiveer."
#: dp_gui_dialog.src
-#, fuzzy
msgctxt ""
"dp_gui_dialog.src\n"
"RID_STR_WARNING_DISABLE_SHARED_EXTENSION\n"
@@ -239,8 +234,8 @@ msgid ""
"Click 'Cancel' to stop disabling the extension."
msgstr ""
"Maak seker dat geen ander gebruikers aan %PRODUCTNAME werk nie as jy die gedeelde uitbreiding in 'n veelgebruikeromgewing verander.\n"
-"Kliek \\'OK\\' om die uitbreiding te deaktiveer.\n"
-"Kliek \\'Kanselleer\\' om op te hou om die uitbreiding te deaktiveer."
+"Kliek 'OK' om die uitbreiding te deaktiveer.\n"
+"Kliek 'Kanselleer' om op te hou om die uitbreiding te deaktiveer."
#: dp_gui_dialog.src
msgctxt ""
@@ -428,7 +423,6 @@ msgid "The extension will not be installed."
msgstr "Die uitbreiding sal nie geïnstalleer word nie."
#: dp_gui_versionboxes.src
-#, fuzzy
msgctxt ""
"dp_gui_versionboxes.src\n"
"RID_STR_WARNING_VERSION_LESS\n"
@@ -439,13 +433,12 @@ msgid ""
"Click 'OK' to replace the installed extension.\n"
"Click 'Cancel' to stop the installation."
msgstr ""
-"U gaan nou weergawe $NEW van die uitbreiding \\'$NAME\\' installeer.\n"
+"U gaan nou weergawe $NEW van die uitbreiding '$NAME' installeer.\n"
"Die nuwer weergawe $DEPLOYED is reeds geïnstalleer.\n"
-"Kliek \\'OK\\' om die geïnstalleerde uitbreiding te vervang.\n"
-"Kliek \\'Kanselleer\\' om die installasieproses te staak."
+"Kliek 'OK' om die geïnstalleerde uitbreiding te vervang.\n"
+"Kliek 'Kanselleer' om die installasieproses te staak."
#: dp_gui_versionboxes.src
-#, fuzzy
msgctxt ""
"dp_gui_versionboxes.src\n"
"RID_STR_WARNINGBOX_VERSION_LESS_DIFFERENT_NAMES\n"
@@ -456,13 +449,12 @@ msgid ""
"Click 'OK' to replace the installed extension.\n"
"Click 'Cancel' to stop the installation."
msgstr ""
-"U gaan nou weergawe $NEW van die uitbreiding \\'$NAME\\' installeer.\n"
-"Die nuwer weergawe $DEPLOYED, genaamd \\'$OLDNAME\\' is reeds geïnstalleer.\n"
-"Kliek \\'OK\\' om die geïnstalleerde uitbreiding te vervang.\n"
-"Kliek \\'Kanselleer\\' om die installasieproses te staak."
+"U gaan nou weergawe $NEW van die uitbreiding '$NAME' installeer.\n"
+"Die nuwer weergawe $DEPLOYED, genaamd '$OLDNAME' is reeds geïnstalleer.\n"
+"Kliek 'OK' om die geïnstalleerde uitbreiding te vervang.\n"
+"Kliek 'Kanselleer' om die installasieproses te staak."
#: dp_gui_versionboxes.src
-#, fuzzy
msgctxt ""
"dp_gui_versionboxes.src\n"
"RID_STR_WARNING_VERSION_EQUAL\n"
@@ -473,13 +465,12 @@ msgid ""
"Click 'OK' to replace the installed extension.\n"
"Click 'Cancel' to stop the installation."
msgstr ""
-"U gaan nou weergawe $NEW van die uitbreiding \\'$NAME\\' installeer.\n"
+"U gaan nou weergawe $NEW van die uitbreiding '$NAME' installeer.\n"
"Daardie weergawe is reeds geïnstalleer.\n"
-"Kliek \\'OK\\' om die geïnstalleerde uitbreiding te vervang.\n"
-"Kliek \\'Kanselleer\\' om die installasieproses te staak."
+"Kliek 'OK' om die geïnstalleerde uitbreiding te vervang.\n"
+"Kliek 'Kanselleer' om die installasieproses te staak."
#: dp_gui_versionboxes.src
-#, fuzzy
msgctxt ""
"dp_gui_versionboxes.src\n"
"RID_STR_WARNINGBOX_VERSION_EQUAL_DIFFERENT_NAMES\n"
@@ -490,13 +481,12 @@ msgid ""
"Click 'OK' to replace the installed extension.\n"
"Click 'Cancel' to stop the installation."
msgstr ""
-"U gaan nou weergawe $NEW van die uitbreiding \\'$NAME\\' installeer.\n"
-"Daardie weergawe, genaamd \\'$OLDNAME\\', is reeds geïnstalleer.\n"
-"Kliek \\'OK\\' om die geïnstalleerde uitbreiding te vervang.\n"
-"Kliek \\'Kanselleer\\' om die installasieproses te staak."
+"U gaan nou weergawe $NEW van die uitbreiding '$NAME' installeer.\n"
+"Daardie weergawe, genaamd '$OLDNAME', is reeds geïnstalleer.\n"
+"Kliek 'OK' om die geïnstalleerde uitbreiding te vervang.\n"
+"Kliek 'Kanselleer' om die installasieproses te staak."
#: dp_gui_versionboxes.src
-#, fuzzy
msgctxt ""
"dp_gui_versionboxes.src\n"
"RID_STR_WARNING_VERSION_GREATER\n"
@@ -507,13 +497,12 @@ msgid ""
"Click 'OK' to replace the installed extension.\n"
"Click 'Cancel' to stop the installation."
msgstr ""
-"U gaan nou weergawe $NEW van die uitbreiding \\'$NAME\\' installeer.\n"
+"U gaan nou weergawe $NEW van die uitbreiding '$NAME' installeer.\n"
"Die ouer weergawe $DEPLOYED is reeds geïnstalleer.\n"
-"Kliek \\'OK\\' om die geïnstalleerde uitbreiding te vervang.\n"
-"Kliek \\'Kanselleer\\' om die installasieproses te staak."
+"Kliek 'OK' om die geïnstalleerde uitbreiding te vervang.\n"
+"Kliek 'Kanselleer' om die installasieproses te staak."
#: dp_gui_versionboxes.src
-#, fuzzy
msgctxt ""
"dp_gui_versionboxes.src\n"
"RID_STR_WARNINGBOX_VERSION_GREATER_DIFFERENT_NAMES\n"
@@ -524,7 +513,7 @@ msgid ""
"Click 'OK' to replace the installed extension.\n"
"Click 'Cancel' to stop the installation."
msgstr ""
-"U gaan nou weergawe $NEW van die uitbreiding \\'$NAME\\' installeer.\n"
-"Die ouer weergawe $DEPLOYED, genaamd \\'$OLDNAME\\' is reeds geïnstalleer.\n"
-"Kliek \\'OK\\' om die geïnstalleerde uitbreiding te vervang.\n"
-"Kliek \\'Kanselleer\\' om die installasieproses te staak."
+"U gaan nou weergawe $NEW van die uitbreiding '$NAME' installeer.\n"
+"Die ouer weergawe $DEPLOYED, genaamd '$OLDNAME' is reeds geïnstalleer.\n"
+"Kliek 'OK' om die geïnstalleerde uitbreiding te vervang.\n"
+"Kliek 'Kanselleer' om die installasieproses te staak."
diff --git a/source/af/editeng/source/items.po b/source/af/editeng/source/items.po
index ae3e8cf5b1c..3c8fbc03f74 100644
--- a/source/af/editeng/source/items.po
+++ b/source/af/editeng/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: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: 2015-05-11 19:43+0000\n"
+"PO-Revision-Date: 2016-03-07 14:36+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431373411.000000\n"
+"X-POOTLE-MTIME: 1457361417.000000\n"
#: page.src
msgctxt ""
@@ -994,22 +994,20 @@ msgid "Double, inside: thick, outside: fine, spacing: large"
msgstr "Dubbel, binnekant: dun, buitekant: dik, spasiëring: groot"
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_EMBOSSED\n"
"string.text"
msgid "3D embossed"
-msgstr "Geëmbosseer"
+msgstr "3D Geëmbosseer"
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_ENGRAVED\n"
"string.text"
msgid "3D engraved"
-msgstr "Gegraveer"
+msgstr "3D Gegraveer"
#: svxitems.src
#, fuzzy
@@ -1111,13 +1109,12 @@ msgid "pixel"
msgstr ""
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_SHADOWED_TRUE\n"
"string.text"
msgid "Shadowed"
-msgstr "Skaduwee: "
+msgstr "Skaduwee"
#: svxitems.src
msgctxt ""
@@ -1499,22 +1496,20 @@ msgid "Orphan control"
msgstr "Wesiebeheer"
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_HYPHEN_MINLEAD\n"
"string.text"
msgid "%1 characters at end of line"
-msgstr "Karakters aan einde van reël"
+msgstr "%1 Karakters aan einde van reël"
#: svxitems.src
-#, fuzzy
msgctxt ""
"svxitems.src\n"
"RID_SVXITEMS_HYPHEN_MINTRAIL\n"
"string.text"
msgid "%1 characters at beginning of line"
-msgstr "Karakters aan begin van reël"
+msgstr "%1 Karakters aan begin van reël"
#: svxitems.src
msgctxt ""
diff --git a/source/af/extensions/uiconfig/sabpilot/ui.po b/source/af/extensions/uiconfig/sabpilot/ui.po
index 1e2b7f83297..796d4057332 100644
--- a/source/af/extensions/uiconfig/sabpilot/ui.po
+++ b/source/af/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 21:59+0000\n"
+"PO-Revision-Date: 2016-03-07 14:39+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435269574.000000\n"
+"X-POOTLE-MTIME: 1457361578.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/af/filter/source/config/fragments/filters.po b/source/af/filter/source/config/fragments/filters.po
index 598d9b1a7ca..4af5124cbd7 100644
--- a/source/af/filter/source/config/fragments/filters.po
+++ b/source/af/filter/source/config/fragments/filters.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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 14:16+0000\n"
+"PO-Revision-Date: 2016-03-07 14:42+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449843403.000000\n"
+"X-POOTLE-MTIME: 1457361749.000000\n"
#: AbiWord.xcu
msgctxt ""
@@ -350,44 +350,40 @@ 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-sjabloon"
+msgstr "Microsoft Excel 97-2003-sjabloon"
#: MS_PowerPoint_97.xcu
-#, fuzzy
msgctxt ""
"MS_PowerPoint_97.xcu\n"
"MS PowerPoint 97\n"
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 97-2003"
-msgstr "Microsoft PowerPoint 97/2000/XP-sjabloon"
+msgstr "Microsoft PowerPoint 97-2003"
#: MS_PowerPoint_97_AutoPlay.xcu
-#, fuzzy
msgctxt ""
"MS_PowerPoint_97_AutoPlay.xcu\n"
"MS PowerPoint 97 AutoPlay\n"
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 97-2003 AutoPlay"
-msgstr "Microsoft PowerPoint 97/2000/XP-sjabloon"
+msgstr "Microsoft PowerPoint 97-2003 Auto-speel"
#: 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-sjabloon"
+msgstr "Microsoft PowerPoint 97-2003-sjabloon"
#: MS_WinWord_5.xcu
msgctxt ""
@@ -417,24 +413,22 @@ msgid "Microsoft Word 2003 XML"
msgstr "Microsoft Word 2003 XML"
#: MS_Word_2007_XML.xcu
-#, fuzzy
msgctxt ""
"MS_Word_2007_XML.xcu\n"
"MS Word 2007 XML\n"
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML"
-msgstr "Microsoft Word 2003 XML"
+msgstr "Microsoft Word 2007-2013 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-sjabloon"
+msgstr "Microsoft Word 2007-2103-XML-sjabloon"
#: MS_Word_95.xcu
msgctxt ""
@@ -464,14 +458,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-sjabloon"
+msgstr "Microsoft Word 97-2003-sjabloon"
#: MS_Works.xcu
msgctxt ""
@@ -1150,24 +1143,22 @@ msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
-#, fuzzy
msgctxt ""
"calc_MS_Excel_2007_XML.xcu\n"
"Calc MS Excel 2007 XML\n"
"UIName\n"
"value.text"
msgid "Microsoft Excel 2007-2013 XML"
-msgstr "Microsoft Excel 2003 XML"
+msgstr "Microsoft Excel 2007-2013 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-sjabloon"
+msgstr "Microsoft Excel 2007-2013-XML-sjabloon"
#: calc_OOXML.xcu
msgctxt ""
@@ -1494,34 +1485,31 @@ msgid "ODF Presentation Template"
msgstr "ODF-voorleggingsjabloon"
#: impress_MS_PowerPoint_2007_XML.xcu
-#, fuzzy
msgctxt ""
"impress_MS_PowerPoint_2007_XML.xcu\n"
"Impress MS PowerPoint 2007 XML\n"
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 2007-2013 XML"
-msgstr "Microsoft Word 2003 XML"
+msgstr "Microsoft PowerPoint 2007-2013 XML"
#: impress_MS_PowerPoint_2007_XML_AutoPlay.xcu
-#, fuzzy
msgctxt ""
"impress_MS_PowerPoint_2007_XML_AutoPlay.xcu\n"
"Impress MS PowerPoint 2007 XML AutoPlay\n"
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 2007-2013 XML AutoPlay"
-msgstr "Microsoft PowerPoint 97/2000/XP-sjabloon"
+msgstr "Microsoft PowerPoint 2007-2013 XML Auto-speel"
#: impress_MS_PowerPoint_2007_XML_Template.xcu
-#, fuzzy
msgctxt ""
"impress_MS_PowerPoint_2007_XML_Template.xcu\n"
"Impress MS PowerPoint 2007 XML Template\n"
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 2007-2013 XML Template"
-msgstr "Microsoft PowerPoint 97/2000/XP-sjabloon"
+msgstr "Microsoft PowerPoint 2007-3013 XML-sjabloon"
#: impress_OOXML.xcu
msgctxt ""
diff --git a/source/af/filter/source/config/fragments/types.po b/source/af/filter/source/config/fragments/types.po
index 70f662db270..61dc7d0c0b0 100644
--- a/source/af/filter/source/config/fragments/types.po
+++ b/source/af/filter/source/config/fragments/types.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-05-11 19:45+0000\n"
+"PO-Revision-Date: 2016-03-07 14:42+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431373519.000000\n"
+"X-POOTLE-MTIME: 1457361767.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -26,64 +26,58 @@ msgid "Microsoft Excel 2007 Binary"
msgstr "Microsoft Excel 2007- binêre lêer"
#: MS_Excel_2007_VBA_XML.xcu
-#, fuzzy
msgctxt ""
"MS_Excel_2007_VBA_XML.xcu\n"
"MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
msgid "Microsoft Excel 2007-2016 VBA XML"
-msgstr "Microsoft Excel 2003 XML"
+msgstr "Microsoft Excel 2007-2016 VBA XML"
#: MS_Excel_2007_XML.xcu
-#, fuzzy
msgctxt ""
"MS_Excel_2007_XML.xcu\n"
"MS Excel 2007 XML\n"
"UIName\n"
"value.text"
msgid "Microsoft Excel 2007-2013 XML"
-msgstr "Microsoft Excel 2003 XML"
+msgstr "Microsoft Excel 2007-2013 XML"
#: MS_Excel_2007_XML_Template.xcu
-#, fuzzy
msgctxt ""
"MS_Excel_2007_XML_Template.xcu\n"
"MS Excel 2007 XML Template\n"
"UIName\n"
"value.text"
msgid "Microsoft Excel 2007-2013 XML Template"
-msgstr "Microsoft Excel 2003 XML"
+msgstr "Microsoft Excel 2007-2013 XML-sjabloon"
#: MS_PowerPoint_2007_XML.xcu
-#, fuzzy
msgctxt ""
"MS_PowerPoint_2007_XML.xcu\n"
"MS PowerPoint 2007 XML\n"
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 2007-2013 XML"
-msgstr "Microsoft Word 2003 XML"
+msgstr "Microsoft PowerPoint 2007-2013 XML"
#: MS_PowerPoint_2007_XML_AutoPlay.xcu
-#, fuzzy
msgctxt ""
"MS_PowerPoint_2007_XML_AutoPlay.xcu\n"
"MS PowerPoint 2007 XML AutoPlay\n"
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 2007-2013 XML"
-msgstr "Microsoft Word 2003 XML"
+msgstr "Microsoft PowerPoint 2007-2013 XML"
#: MS_PowerPoint_2007_XML_Template.xcu
-#, fuzzy
msgctxt ""
"MS_PowerPoint_2007_XML_Template.xcu\n"
"MS PowerPoint 2007 XML Template\n"
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 2007-2013 XML Template"
-msgstr "Microsoft Word 2003 XML"
+msgstr "Microsoft PowerPoint 2007-2013 XML-sjabloon"
#: StarBase.xcu
msgctxt ""
@@ -285,24 +279,22 @@ msgid "Microsoft Word 2003 XML"
msgstr "Microsoft Word 2003 XML"
#: writer_MS_Word_2007_XML.xcu
-#, fuzzy
msgctxt ""
"writer_MS_Word_2007_XML.xcu\n"
"writer_MS_Word_2007\n"
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML"
-msgstr "Microsoft Word 2003 XML"
+msgstr "Microsoft Word 2007-2013 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-sjabloon"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/af/filter/source/xsltdialog.po b/source/af/filter/source/xsltdialog.po
index 738c01dc0d2..9740f54676d 100644
--- a/source/af/filter/source/xsltdialog.po
+++ b/source/af/filter/source/xsltdialog.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:01+0100\n"
-"PO-Revision-Date: 2013-02-17 20:08+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-07 14:43+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361131721.0\n"
+"X-POOTLE-MTIME: 1457361781.000000\n"
#: xmlfilterdialogstrings.src
msgctxt ""
@@ -199,4 +199,4 @@ msgctxt ""
"STR_XML_FILTER_LISTBOX\n"
"string.text"
msgid "XML Filter List"
-msgstr "XML-filter: %s"
+msgstr "XML-filter Leis"
diff --git a/source/af/fpicker/source/office.po b/source/af/fpicker/source/office.po
index dc170357b43..cf2306ba668 100644
--- a/source/af/fpicker/source/office.po
+++ b/source/af/fpicker/source/office.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: 2015-08-25 15:51+0000\n"
+"PO-Revision-Date: 2016-03-07 14:44+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440517874.000000\n"
+"X-POOTLE-MTIME: 1457361898.000000\n"
#: OfficeFilePicker.src
msgctxt ""
@@ -229,7 +229,6 @@ msgid "All files"
msgstr "Alle lêers"
#: iodlg.src
-#, fuzzy
msgctxt ""
"iodlg.src\n"
"STR_SVT_ALREADYEXISTOVERWRITE\n"
@@ -239,7 +238,8 @@ msgid ""
"\n"
"Do you want to replace it?"
msgstr ""
-"'n Ontwerp met hierdie naam bestaan reeds.\n"
+"'n Ontwerp genaamd \"$filename$\" bestaan reeds.\n"
+"\n"
"Wil u dit vervang?"
#: iodlg.src
diff --git a/source/af/librelogo/source/pythonpath.po b/source/af/librelogo/source/pythonpath.po
index 60c2e37790f..b19fc82fd25 100644
--- a/source/af/librelogo/source/pythonpath.po
+++ b/source/af/librelogo/source/pythonpath.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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2013-02-17 20:08+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-07 14:48+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361131721.0\n"
+"X-POOTLE-MTIME: 1457362083.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -797,20 +797,22 @@ msgid "pi|π"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
"property.text"
msgid "."
-msgstr ""
+msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/af/officecfg/registry/data/org/openoffice/Office.po b/source/af/officecfg/registry/data/org/openoffice/Office.po
index 22ff7c29c27..6349ca8eaa7 100644
--- a/source/af/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/af/officecfg/registry/data/org/openoffice/Office.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-08-06 22:34+0000\n"
+"PO-Revision-Date: 2016-03-07 14:55+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438900465.000000\n"
+"X-POOTLE-MTIME: 1457362507.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1430,13 +1430,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po b/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
index a2ac603df54..de472d6843a 100644
--- a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/af/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-01-08 13:42+0100\n"
-"PO-Revision-Date: 2015-08-25 17:18+0000\n"
+"PO-Revision-Date: 2016-03-07 15:09+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440523125.000000\n"
+"X-POOTLE-MTIME: 1457363353.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -14506,14 +14506,13 @@ msgid "Line Spacing: 1"
msgstr "Reëlspasiëring: 1"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:SpacePara15\n"
"Label\n"
"value.text"
msgid "Line Spacing: 1.5"
-msgstr "Reëlspasiëring: 1,5"
+msgstr "Reëlspasiëring: 1.5"
#: GenericCommands.xcu
#, fuzzy
@@ -14670,14 +14669,13 @@ msgid "200%"
msgstr "200%"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:Zoom150Percent\n"
"Label\n"
"value.text"
msgid "150%"
-msgstr "50%"
+msgstr "150%"
#: GenericCommands.xcu
msgctxt ""
@@ -20986,14 +20984,13 @@ msgid "Zoom 100%"
msgstr "Zoem 100%"
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Commands..uno:View200\n"
"Label\n"
"value.text"
msgid "Zoom 200%"
-msgstr "Zoem 100%"
+msgstr "Zoem 200%"
#: MathCommands.xcu
msgctxt ""
diff --git a/source/af/reportdesign/uiconfig/dbreport/ui.po b/source/af/reportdesign/uiconfig/dbreport/ui.po
index c62c64de5f2..28644108db6 100644
--- a/source/af/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/af/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-18 11:31+0000\n"
+"PO-Revision-Date: 2016-03-07 15:10+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416310271.000000\n"
+"X-POOTLE-MTIME: 1457363455.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/af/sc/source/ui/src.po b/source/af/sc/source/ui/src.po
index 31d19c8976b..9a5aa42f5ad 100644
--- a/source/af/sc/source/ui/src.po
+++ b/source/af/sc/source/ui/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-12-11 12:57+0100\n"
-"PO-Revision-Date: 2015-08-25 17:32+0000\n"
+"PO-Revision-Date: 2016-03-07 15:26+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440523950.000000\n"
+"X-POOTLE-MTIME: 1457364373.000000\n"
#: condformatdlg.src
#, fuzzy
@@ -12010,14 +12010,13 @@ msgid "Number"
msgstr "Nommer"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_ARC_COS_HYP\n"
"3\n"
"string.text"
msgid "A value greater than or equal to 1 for which the inverse hyperbolic cosine is to be returned."
-msgstr "Waarde kleiner as -1 of groter as 1 waarvan die omgekeerde hiperboliese kotangens gelewer moet word."
+msgstr "'n Waarde groter as of geleik aan 1 waarvan die omgekeerde hiperboliese kotangens gelewer moet word."
#: scfuncs.src
msgctxt ""
@@ -13776,14 +13775,13 @@ msgid "Array multiplication. Returns the product of two arrays."
msgstr "Skikkingsvermenigvuldiging. Lewer die produk van twee skikkings op."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_MAT_MULT\n"
"2\n"
"string.text"
msgid "array_1"
-msgstr "skikking_x"
+msgstr "skikking_1"
#: scfuncs.src
msgctxt ""
@@ -13795,14 +13793,13 @@ msgid "The first array for the array product."
msgstr "Die eerste skikking vir die skikkingsproduk."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_MAT_MULT\n"
"4\n"
"string.text"
msgid "array_2"
-msgstr "skikking_x"
+msgstr "skikking_2"
#: scfuncs.src
msgctxt ""
@@ -15237,14 +15234,13 @@ msgid "number "
msgstr "aantal "
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_MODAL_VALUE_MULTI\n"
"3\n"
"string.text"
msgid "Number 1, number 2, ... are 1 to 254 numerical arguments which portray a sample."
-msgstr "Nommer 1, nommer 2, ... is 1 tot 30 numeriese argumente wat 'n monster voorstel."
+msgstr "Nommer 1, nommer 2, ... is 1 tot 254 numeriese argumente wat 'n monster voorstel."
#: scfuncs.src
msgctxt ""
@@ -24050,14 +24046,13 @@ msgid "Bitwise \"AND\" of two integers."
msgstr ""
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITAND\n"
"2\n"
"string.text"
msgid "Number1"
-msgstr "Nommer"
+msgstr "Nommer1"
#: scfuncs.src
msgctxt ""
@@ -24069,14 +24064,13 @@ msgid "Positive integer less than 2^48."
msgstr ""
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITAND\n"
"4\n"
"string.text"
msgid "Number2"
-msgstr "Nommer"
+msgstr "Nommer2"
#: scfuncs.src
msgctxt ""
@@ -24097,14 +24091,13 @@ msgid "Bitwise \"OR\" of two integers."
msgstr ""
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITOR\n"
"2\n"
"string.text"
msgid "Number1"
-msgstr "Nommer"
+msgstr "Nommer1"
#: scfuncs.src
msgctxt ""
@@ -24116,14 +24109,13 @@ msgid "Positive integer less than 2^48."
msgstr ""
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITOR\n"
"4\n"
"string.text"
msgid "Number2"
-msgstr "Nommer"
+msgstr "Nommer2"
#: scfuncs.src
msgctxt ""
@@ -24144,14 +24136,13 @@ msgid "Bitwise \"exclusive OR\" of two integers."
msgstr ""
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITXOR\n"
"2\n"
"string.text"
msgid "Number1"
-msgstr "Nommer"
+msgstr "Nommer1"
#: scfuncs.src
msgctxt ""
@@ -24163,14 +24154,13 @@ msgid "Positive integer less than 2^48."
msgstr ""
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_BITXOR\n"
"4\n"
"string.text"
msgid "Number2"
-msgstr "Nommer"
+msgstr "Nommer2"
#: scfuncs.src
msgctxt ""
@@ -24858,13 +24848,12 @@ msgstr "onbenoem"
#. %1 is replaced to column letter, such as 'Column A'
#: scstring.src
-#, fuzzy
msgctxt ""
"scstring.src\n"
"SCSTR_COLUMN\n"
"string.text"
msgid "Column %1"
-msgstr "Kolom "
+msgstr "Kolom %1"
#. %1 is replaced to row number, such as 'Row 1'
#: scstring.src
@@ -25660,13 +25649,12 @@ msgid "%PRODUCTNAME Spreadsheets"
msgstr "%PRODUCTNAME-sigblad"
#: scstring.src
-#, fuzzy
msgctxt ""
"scstring.src\n"
"STR_ACC_DOC_SPREADSHEET_READONLY\n"
"string.text"
msgid "(read-only)"
-msgstr " (leesalleen)"
+msgstr "(leesalleen)"
#: scstring.src
#, fuzzy
@@ -25782,7 +25770,7 @@ msgctxt ""
"%PRODUCTNAME %s\n"
"itemlist.text"
msgid "%PRODUCTNAME %s"
-msgstr "%PRODUCTNAME Calc"
+msgstr "%PRODUCTNAME %s"
#: scstring.src
msgctxt ""
diff --git a/source/af/sc/uiconfig/scalc/ui.po b/source/af/sc/uiconfig/scalc/ui.po
index 2af0ee6d7a1..beeddbe5c0f 100644
--- a/source/af/sc/uiconfig/scalc/ui.po
+++ b/source/af/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-08-25 17:32+0000\n"
+"PO-Revision-Date: 2016-03-07 15:29+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: af\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440523971.000000\n"
+"X-POOTLE-MTIME: 1457364580.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6390,22 +6390,24 @@ msgid "Distribution:"
msgstr ""
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter1-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter2-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
msgctxt ""
diff --git a/source/af/sd/source/ui/view.po b/source/af/sd/source/ui/view.po
index 165f1f214dd..b5098161fe7 100644
--- a/source/af/sd/source/ui/view.po
+++ b/source/af/sd/source/ui/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: 2015-08-25 12:34+0200\n"
-"PO-Revision-Date: 2015-08-25 17:34+0000\n"
+"PO-Revision-Date: 2016-03-07 15:43+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: af\n"
@@ -14,17 +14,16 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440524097.000000\n"
+"X-POOTLE-MTIME: 1457365426.000000\n"
#: DocumentRenderer.src
-#, fuzzy
msgctxt ""
"DocumentRenderer.src\n"
"_STR_IMPRESS_PRINT_UI_OPTIONS\n"
"_STR_IMPRESS_PRINT_UI_GROUP_NAME\n"
"string.text"
msgid "%PRODUCTNAME %s"
-msgstr "%PRODUCTNAME Base"
+msgstr "%PRODUCTNAME %s"
#: DocumentRenderer.src
msgctxt ""
diff --git a/source/af/sd/uiconfig/simpress/ui.po b/source/af/sd/uiconfig/simpress/ui.po
index f656cc60e5b..e3ac2150d3c 100644
--- a/source/af/sd/uiconfig/simpress/ui.po
+++ b/source/af/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 22:30+0000\n"
+"PO-Revision-Date: 2016-03-07 15:45+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: af\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435271410.000000\n"
+"X-POOTLE-MTIME: 1457365504.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -998,22 +998,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/af/sfx2/source/appl.po b/source/af/sfx2/source/appl.po
index a35afa1d72e..01a33467879 100644
--- a/source/af/sfx2/source/appl.po
+++ b/source/af/sfx2/source/appl.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: 2015-05-11 19:53+0000\n"
+"PO-Revision-Date: 2016-03-07 15:45+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431374026.000000\n"
+"X-POOTLE-MTIME: 1457365538.000000\n"
#: app.src
msgctxt ""
@@ -456,13 +456,12 @@ msgid ""
msgstr ""
#: app.src
-#, fuzzy
msgctxt ""
"app.src\n"
"STR_DDE_ERROR\n"
"string.text"
msgid "DDE link to %1 for %2 area %3 are not available."
-msgstr "DDE-skakel na % vir % ruimte % is nie beskikbaar nie."
+msgstr "DDE-skakel na %1 vir %2 ruimte %3 is nie beskikbaar nie."
#: app.src
#, fuzzy
diff --git a/source/af/starmath/source.po b/source/af/starmath/source.po
index 87388bc57b2..66ec0743669 100644
--- a/source/af/starmath/source.po
+++ b/source/af/starmath/source.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:40+0200\n"
-"PO-Revision-Date: 2015-05-11 19:57+0000\n"
+"PO-Revision-Date: 2016-03-07 15:50+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431374237.000000\n"
+"X-POOTLE-MTIME: 1457365823.000000\n"
#: commands.src
msgctxt ""
@@ -2599,7 +2599,7 @@ msgctxt ""
"%PRODUCTNAME %s\n"
"itemlist.text"
msgid "%PRODUCTNAME %s"
-msgstr "%PRODUCTNAME Base"
+msgstr "%PRODUCTNAME %s"
#: smres.src
msgctxt ""
diff --git a/source/af/svtools/source/dialogs.po b/source/af/svtools/source/dialogs.po
index ae8651c07ce..74563ad9276 100644
--- a/source/af/svtools/source/dialogs.po
+++ b/source/af/svtools/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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-08-25 17:35+0000\n"
+"PO-Revision-Date: 2016-03-07 15:52+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440524106.000000\n"
+"X-POOTLE-MTIME: 1457365960.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -625,13 +625,12 @@ msgid "Biff5 (Microsoft Excel 5.0/95)"
msgstr "Biff5 (Microsoft Excel 5.0/95)"
#: formats.src
-#, fuzzy
msgctxt ""
"formats.src\n"
"STR_FORMAT_ID_BIFF_8\n"
"string.text"
msgid "Biff8 (Microsoft Excel 97/2000/XP/2003)"
-msgstr "Biff8 (Microsoft Excel 97/2000/XP)"
+msgstr "Biff8 (Microsoft Excel 97/2000/XP/2003)"
#: formats.src
msgctxt ""
diff --git a/source/af/svtools/source/misc.po b/source/af/svtools/source/misc.po
index c19b3fb3008..0bdd28e24e7 100644
--- a/source/af/svtools/source/misc.po
+++ b/source/af/svtools/source/misc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-08-25 17:35+0000\n"
+"PO-Revision-Date: 2016-03-07 15:55+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440524108.000000\n"
+"X-POOTLE-MTIME: 1457366112.000000\n"
#: imagemgr.src
msgctxt ""
@@ -155,13 +155,12 @@ msgid "Link"
msgstr "Skakel"
#: imagemgr.src
-#, fuzzy
msgctxt ""
"imagemgr.src\n"
"STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC\n"
"string.text"
msgid "StarOffice 3.0 - 5.0 Template"
-msgstr "StarOffice 5.0-sjabloon"
+msgstr "StarOffice 3.0 - 5.0-sjabloon"
#: imagemgr.src
msgctxt ""
@@ -3888,13 +3887,12 @@ msgid "4 bit color"
msgstr ""
#: svtools.src
-#, fuzzy
msgctxt ""
"svtools.src\n"
"STR_SVT_8BIT_GRAYSCALE\n"
"string.text"
msgid "8 bit grayscale"
-msgstr "4-bis-gryskleur"
+msgstr "8-bis-gryskleur"
#: svtools.src
msgctxt ""
diff --git a/source/af/svtools/uiconfig/ui.po b/source/af/svtools/uiconfig/ui.po
index fcd1d690b08..fbb819ce0a2 100644
--- a/source/af/svtools/uiconfig/ui.po
+++ b/source/af/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-08-25 17:35+0000\n"
+"PO-Revision-Date: 2016-03-07 15:55+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: af\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440524119.000000\n"
+"X-POOTLE-MTIME: 1457366148.000000\n"
#: GraphicExportOptionsDialog.ui
msgctxt ""
@@ -147,14 +147,13 @@ msgid "Field Assignment"
msgstr ""
#: graphicexport.ui
-#, fuzzy
msgctxt ""
"graphicexport.ui\n"
"GraphicExportDialog\n"
"title\n"
"string.text"
msgid "%1 Options"
-msgstr " Opsies"
+msgstr "%1 Opsies"
#: graphicexport.ui
#, fuzzy
diff --git a/source/af/svx/inc.po b/source/af/svx/inc.po
index cfe4825ebef..944931ea1bd 100644
--- a/source/af/svx/inc.po
+++ b/source/af/svx/inc.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:33+0200\n"
-"PO-Revision-Date: 2015-08-25 17:35+0000\n"
+"PO-Revision-Date: 2016-03-07 15:56+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440524120.000000\n"
+"X-POOTLE-MTIME: 1457366162.000000\n"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"ITEM_FORMAT_PARA_LINESPACE_15\n"
"#define.text"
msgid "1.5 lines"
-msgstr "1,5 reëls"
+msgstr "1.5 reëls"
#: globlmn_tmpl.hrc
msgctxt ""
diff --git a/source/af/svx/source/dialog.po b/source/af/svx/source/dialog.po
index 6b0b86115d7..82a8d2c5ff3 100644
--- a/source/af/svx/source/dialog.po
+++ b/source/af/svx/source/dialog.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: 2015-06-16 11:40+0000\n"
-"Last-Translator: Dwayne Bailey (admin) <dwayne+loadmin@translate.org.za>\n"
+"PO-Revision-Date: 2016-03-07 15:59+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: af\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1434454831.000000\n"
+"X-POOTLE-MTIME: 1457366370.000000\n"
#: bmpmask.src
msgctxt ""
@@ -1313,83 +1313,75 @@ msgstr "Aksiaal ligrooi/wit"
#. l means left
#: sdstring.src
-#, fuzzy
msgctxt ""
"sdstring.src\n"
"RID_SVXSTR_GRDT10\n"
"string.text"
msgid "Diagonal 1l"
-msgstr "Diagonaal"
+msgstr "Diagonaal 1l"
#. r means right
#: sdstring.src
-#, fuzzy
msgctxt ""
"sdstring.src\n"
"RID_SVXSTR_GRDT11\n"
"string.text"
msgid "Diagonal 1r"
-msgstr "Diagonaal"
+msgstr "Diagonaal 1r"
#. l means left
#: sdstring.src
-#, fuzzy
msgctxt ""
"sdstring.src\n"
"RID_SVXSTR_GRDT12\n"
"string.text"
msgid "Diagonal 2l"
-msgstr "Diagonaal"
+msgstr "Diagonaal 2l"
#. r means right
#: sdstring.src
-#, fuzzy
msgctxt ""
"sdstring.src\n"
"RID_SVXSTR_GRDT13\n"
"string.text"
msgid "Diagonal 2r"
-msgstr "Diagonaal"
+msgstr "Diagonaal 2r"
#. l means left
#: sdstring.src
-#, fuzzy
msgctxt ""
"sdstring.src\n"
"RID_SVXSTR_GRDT14\n"
"string.text"
msgid "Diagonal 3l"
-msgstr "Diagonaal"
+msgstr "Diagonaal 3l"
#. r means right
#: sdstring.src
-#, fuzzy
msgctxt ""
"sdstring.src\n"
"RID_SVXSTR_GRDT15\n"
"string.text"
msgid "Diagonal 3r"
-msgstr "Diagonaal"
+msgstr "Diagonaal 3r"
#. l means left
#: sdstring.src
-#, fuzzy
msgctxt ""
"sdstring.src\n"
"RID_SVXSTR_GRDT16\n"
"string.text"
msgid "Diagonal 4l"
-msgstr "Diagonaal"
+msgstr "Diagonaal 4l"
#. r means right
#: sdstring.src
-#, fuzzy
msgctxt ""
"sdstring.src\n"
"RID_SVXSTR_GRDT17\n"
"string.text"
msgid "Diagonal 4r"
-msgstr "Diagonaal"
+msgstr "Diagonaal 4r"
#: sdstring.src
#, fuzzy
@@ -2270,13 +2262,12 @@ msgid "Fine Dashed"
msgstr "Fyn strepies"
#: sdstring.src
-#, fuzzy
msgctxt ""
"sdstring.src\n"
"RID_SVXSTR_DASH2\n"
"string.text"
msgid "2 Dots 3 Dashes"
-msgstr "2 stippels 1 strepie"
+msgstr "2 stippels 3 strepie"
#: sdstring.src
#, fuzzy
@@ -2503,13 +2494,12 @@ msgid "Circle unfilled"
msgstr "Sirkel, oningevul"
#: sdstring.src
-#, fuzzy
msgctxt ""
"sdstring.src\n"
"RID_SVXSTR_LEND17\n"
"string.text"
msgid "Square 45 unfilled"
-msgstr "Vierkant, oningevul"
+msgstr "Vierkant 45, oningevul"
#: sdstring.src
#, fuzzy
@@ -4207,14 +4197,13 @@ msgid "Korean (Windows-Johab-1361)"
msgstr "Koreaans (Windows-Johab-1361)"
#: txenctab.src
-#, fuzzy
msgctxt ""
"txenctab.src\n"
"RID_SVXSTR_TEXTENCODING_TABLE\n"
"RTL_TEXTENCODING_UCS2\n"
"pairedlist.text"
msgid "Unicode (UTF-16)"
-msgstr "Unicode (UTF-7)"
+msgstr "Unicode (UTF-16)"
#: txenctab.src
msgctxt ""
diff --git a/source/af/svx/source/gallery2.po b/source/af/svx/source/gallery2.po
index 64e5d26257c..65ad43a498f 100644
--- a/source/af/svx/source/gallery2.po
+++ b/source/af/svx/source/gallery2.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:41+0200\n"
-"PO-Revision-Date: 2015-05-11 19:59+0000\n"
+"PO-Revision-Date: 2016-03-07 16:02+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431374392.000000\n"
+"X-POOTLE-MTIME: 1457366521.000000\n"
#: gallery.src
msgctxt ""
@@ -607,22 +607,20 @@ msgid "Shapes - polygons"
msgstr ""
#: galtheme.src
-#, fuzzy
msgctxt ""
"galtheme.src\n"
"RID_GALLERYSTR_THEME_SHAPES_1\n"
"string.text"
msgid "Shapes 1"
-msgstr "Vorms"
+msgstr "Vorms 1"
#: galtheme.src
-#, fuzzy
msgctxt ""
"galtheme.src\n"
"RID_GALLERYSTR_THEME_SHAPES_2\n"
"string.text"
msgid "Shapes 2"
-msgstr "Vorms"
+msgstr "Vorms 2"
#: galtheme.src
msgctxt ""
@@ -818,13 +816,12 @@ msgid "Flowcharts"
msgstr "Vloeigrafieke"
#: galtheme.src
-#, fuzzy
msgctxt ""
"galtheme.src\n"
"RID_GALLERYSTR_THEME_FLOWCHARTS_2\n"
"string.text"
msgid "Flowcharts 2"
-msgstr "Vloeigrafieke"
+msgstr "Vloeigrafieke 2"
#: galtheme.src
msgctxt ""
@@ -1421,19 +1418,17 @@ msgid "Buildings"
msgstr "Bindings"
#: galtheme.src
-#, fuzzy
msgctxt ""
"galtheme.src\n"
"RID_GALLERYSTR_THEME_HOMEPAGE2\n"
"string.text"
msgid "Homepage 2"
-msgstr "Tuisblad"
+msgstr "Tuisblad 2"
#: galtheme.src
-#, fuzzy
msgctxt ""
"galtheme.src\n"
"RID_GALLERYSTR_THEME_ELEMENTSBULLETS2\n"
"string.text"
msgid "Bullets 2"
-msgstr "Koeëltjies"
+msgstr "Koeëltjies 2"
diff --git a/source/af/svx/source/src.po b/source/af/svx/source/src.po
index 71f4ff17c43..25b29e9271c 100644
--- a/source/af/svx/source/src.po
+++ b/source/af/svx/source/src.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: 2012-11-13 20:14+0000\n"
-"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2016-03-07 16:03+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1352837663.0\n"
+"X-POOTLE-MTIME: 1457366628.000000\n"
#: errtxt.src
msgctxt ""
@@ -1016,7 +1016,6 @@ msgstr ""
"Om sekuriteitsredes is makrosteun gedeaktiveer."
#: errtxt.src
-#, fuzzy
msgctxt ""
"errtxt.src\n"
"RID_ERRHDL\n"
@@ -1031,7 +1030,7 @@ msgid ""
msgstr ""
"Hierdie dokument bevat makro's.\n"
"\n"
-"Makro's kan virusse bevat. Die uitvoer van makro's is gedeaktiveer vanweë die huidige makrosekuriteitinstelling in Nuts - Opsies - %PRODUCTNAME - Sekuriteit.\n"
+"Makro's kan virusse bevat. Die uitvoer van makro's is gedeaktiveer vanweë die huidige makrosekuriteitinstelling in %PRODUCTNAME - Opsies - %PRODUCTNAME - Sekuriteit.\n"
"\n"
"Sommige funksies sal daarom dalk nie beskikbaar wees nie."
diff --git a/source/af/svx/source/svdraw.po b/source/af/svx/source/svdraw.po
index 4905124fd05..cad7e13be86 100644
--- a/source/af/svx/source/svdraw.po
+++ b/source/af/svx/source/svdraw.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-08-25 17:36+0000\n"
+"PO-Revision-Date: 2016-03-07 16:08+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440524181.000000\n"
+"X-POOTLE-MTIME: 1457366893.000000\n"
#: svdstr.src
msgctxt ""
@@ -4138,13 +4138,12 @@ msgid "Decimal places"
msgstr "Desimale plekke"
#: svdstr.src
-#, fuzzy
msgctxt ""
"svdstr.src\n"
"SIP_SA_MEASURERESERVE05\n"
"string.text"
msgid "Dimensioning reserved for 5"
-msgstr "Dimensionering gereserveer vir 6"
+msgstr "Dimensionering gereserveer vir 5"
#: svdstr.src
msgctxt ""
diff --git a/source/af/svx/source/tbxctrls.po b/source/af/svx/source/tbxctrls.po
index 49dff9ffb7e..88531e5f2ad 100644
--- a/source/af/svx/source/tbxctrls.po
+++ b/source/af/svx/source/tbxctrls.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-06-25 22:33+0000\n"
+"PO-Revision-Date: 2016-03-07 16:08+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435271622.000000\n"
+"X-POOTLE-MTIME: 1457366933.000000\n"
#: colrctrl.src
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"RID_SVXSTR_DEPTH_2\n"
"string.text"
msgid "~2.5 cm"
-msgstr "~2,5 cm"
+msgstr "~2.5 cm"
#: extrusioncontrols.src
msgctxt ""
diff --git a/source/af/sw/source/ui/config.po b/source/af/sw/source/ui/config.po
index 1f79979a48a..4fd37fe2599 100644
--- a/source/af/sw/source/ui/config.po
+++ b/source/af/sw/source/ui/config.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:40+0200\n"
-"PO-Revision-Date: 2015-05-11 20:01+0000\n"
+"PO-Revision-Date: 2016-03-07 16:14+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431374501.000000\n"
+"X-POOTLE-MTIME: 1457367254.000000\n"
#: optdlg.src
msgctxt ""
@@ -47,7 +47,7 @@ msgctxt ""
"%PRODUCTNAME %s\n"
"itemlist.text"
msgid "%PRODUCTNAME %s"
-msgstr "%PRODUCTNAME Base"
+msgstr "%PRODUCTNAME %s"
#: optdlg.src
msgctxt ""
diff --git a/source/af/sw/source/ui/dbui.po b/source/af/sw/source/ui/dbui.po
index 8dd1f9f454a..7930b4b8c2e 100644
--- a/source/af/sw/source/ui/dbui.po
+++ b/source/af/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-11 20:02+0000\n"
+"PO-Revision-Date: 2016-03-07 16:14+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431374533.000000\n"
+"X-POOTLE-MTIME: 1457367269.000000\n"
#: dbui.src
msgctxt ""
@@ -488,31 +488,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/af/sw/source/ui/index.po b/source/af/sw/source/ui/index.po
index 1cc3b0e7e5d..cf5433fccd2 100644
--- a/source/af/sw/source/ui/index.po
+++ b/source/af/sw/source/ui/index.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: 2012-11-13 20:14+0000\n"
-"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-07 16:15+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1352837663.0\n"
+"X-POOTLE-MTIME: 1457367356.000000\n"
#: cnttab.src
#, fuzzy
@@ -58,20 +58,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -106,12 +108,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/af/sw/source/ui/utlui.po b/source/af/sw/source/ui/utlui.po
index ef30a10ffea..597e45b32d2 100644
--- a/source/af/sw/source/ui/utlui.po
+++ b/source/af/sw/source/ui/utlui.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: 2013-02-17 20:08+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-07 16:18+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361131721.0\n"
+"X-POOTLE-MTIME: 1457367501.000000\n"
#: poolfmt.src
msgctxt ""
@@ -1437,13 +1437,12 @@ msgid "Rubies"
msgstr "Klein drukletters"
#: poolfmt.src
-#, fuzzy
msgctxt ""
"poolfmt.src\n"
"STR_COLUMN_VALUESET_ITEM0\n"
"string.text"
msgid "1 column"
-msgstr "kolom"
+msgstr "1 kolom"
#: poolfmt.src
msgctxt ""
@@ -1902,13 +1901,12 @@ msgid "This is the content from the first chapter. This is a user directory entr
msgstr ""
#: utlui.src
-#, fuzzy
msgctxt ""
"utlui.src\n"
"STR_IDXEXAMPLE_IDXTXT_HEADING11\n"
"string.text"
msgid "Heading 1.1"
-msgstr "Opskrif 1"
+msgstr "Opskrif 1.1"
#: utlui.src
msgctxt ""
@@ -1919,13 +1917,12 @@ msgid "This is the content from chapter 1.1. This is the entry for the table of
msgstr ""
#: utlui.src
-#, fuzzy
msgctxt ""
"utlui.src\n"
"STR_IDXEXAMPLE_IDXTXT_HEADING12\n"
"string.text"
msgid "Heading 1.2"
-msgstr "Opskrif 1"
+msgstr "Opskrif 1.2"
#: utlui.src
msgctxt ""
diff --git a/source/af/sw/uiconfig/swriter/ui.po b/source/af/sw/uiconfig/swriter/ui.po
index d9c3076d900..442dd527e4f 100644
--- a/source/af/sw/uiconfig/swriter/ui.po
+++ b/source/af/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-25 17:40+0000\n"
+"PO-Revision-Date: 2016-03-07 16:27+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: af\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440524409.000000\n"
+"X-POOTLE-MTIME: 1457368061.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2311,13 +2311,14 @@ msgid "Convert Table to Text"
msgstr "Skakel tabel om na teks"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2503,13 +2504,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2521,13 +2523,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4434,13 +4437,14 @@ msgid "None"
msgstr ""
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5422,22 +5426,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6347,13 +6353,14 @@ msgid "Position:"
msgstr "Posisie"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"separator_edit\n"
"text\n"
"string.text"
msgid ": "
-msgstr ""
+msgstr ": "
#: insertcaption.ui
msgctxt ""
@@ -6365,13 +6372,14 @@ msgid "Numbering separator:"
msgstr ""
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
msgctxt ""
@@ -8707,13 +8715,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8725,13 +8734,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9579,13 +9589,14 @@ msgid "Position:"
msgstr "Posisie"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
#, fuzzy
@@ -15702,40 +15713,44 @@ msgid "[none]"
msgstr "[Geen]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/af/vcl/source/src.po b/source/af/vcl/source/src.po
index 0865599ff09..d2a23840bee 100644
--- a/source/af/vcl/source/src.po
+++ b/source/af/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 14:50+0000\n"
+"PO-Revision-Date: 2016-03-07 16:30+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449845420.000000\n"
+"X-POOTLE-MTIME: 1457368250.000000\n"
#: app.src
msgctxt ""
@@ -451,13 +451,12 @@ msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its
msgstr ""
#: fpicker.src
-#, fuzzy
msgctxt ""
"fpicker.src\n"
"STR_FPICKER_ALLFORMATS\n"
"string.text"
msgid "All Formats"
-msgstr "<Alle formate>"
+msgstr "Alle Formate"
#: fpicker.src
msgctxt ""
@@ -1192,12 +1191,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1476,13 +1476,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/am/cui/source/options.po b/source/am/cui/source/options.po
index c836c03ed1f..727e636e273 100644
--- a/source/am/cui/source/options.po
+++ b/source/am/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-02-06 21:29+0000\n"
+"PO-Revision-Date: 2016-03-11 13:45+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1454794194.000000\n"
+"X-POOTLE-MTIME: 1457703911.000000\n"
#: connpooloptions.src
msgctxt ""
@@ -282,7 +282,7 @@ msgctxt ""
msgid ""
"The folder you selected does not contain a Java runtime environment.\n"
"Please select a different folder."
-msgstr "እርስዎ የመረጡት ፎልደር የ Java runtime environment. አልያዘም እባክዎን የተለየ ፎልደር ይምረጡ"
+msgstr "እርስዎ የመረጡት ፎልደር የ Java runtime environment.አልያዘም እባክዎን የተለየ ፎልደር ይምረጡ"
#: optjava.src
msgctxt ""
diff --git a/source/am/formula/source/core/resource.po b/source/am/formula/source/core/resource.po
index d986327661d..f8942f89d42 100644
--- a/source/am/formula/source/core/resource.po
+++ b/source/am/formula/source/core/resource.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-02-29 18:09+0100\n"
+"POT-Creation-Date: 2016-03-15 11:20+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1784,7 +1784,7 @@ msgctxt ""
"SC_OPCODE_DB_AVERAGE\n"
"string.text"
msgid "DAVERAGE"
-msgstr "DAVERAGE"
+msgstr "መካከለኛ ዳታ"
#: core_resource.src
msgctxt ""
@@ -1892,7 +1892,7 @@ msgctxt ""
"SC_OPCODE_COUNT_EMPTY_CELLS\n"
"string.text"
msgid "COUNTBLANK"
-msgstr "COUNTBLANK"
+msgstr "ባዶ መቁጠሪያ"
#: core_resource.src
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index a6bb2dd0ca1..c02b3602038 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared.po
+++ b/source/am/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: 2015-09-01 20:20+0200\n"
-"PO-Revision-Date: 2016-02-21 22:35+0000\n"
-"Last-Translator: Samson B <sambelet@yahoo.com>\n"
+"PO-Revision-Date: 2016-03-03 16:27+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456094137.000000\n"
+"X-POOTLE-MTIME: 1457022466.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -1696,7 +1696,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "MySecondValue = myFunction(MyFirstValue)"
-msgstr ""
+msgstr "የ እኔ ሁለተኛ ዋጋ = የ እኔ ተግባሮች(የ እኔ መጀመሪያ ዋጋ)"
#: 01010210.xhp
msgctxt ""
@@ -1714,7 +1714,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "Global variables are valid for all subs and functions inside a module. They are declared at the beginning of a module before the first sub or function starts."
-msgstr ""
+msgstr "አለም አቀፍ ተለዋዋጮች ዋጋ አላቸው ለ ንዑሶች እና ተግባሮች በ ክፍል ውስጥ: የሚገለጹት በ ክፍሉ መጀመሪያ ነው: ከ ንዑስ ወይንም ተግባር መጀመሪያ በፊት"
#: 01010210.xhp
msgctxt ""
@@ -1810,7 +1810,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "The following describes the basic use of variables in $[officename] Basic."
-msgstr ""
+msgstr "የሚቀጥለው የሚገልጸው መሰረታዊ የ ተለዋዋጭ አጠቃቀም ነው ለ $[officename] Basic."
#: 01020100.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc.po b/source/am/helpcontent2/source/text/scalc.po
index 13e4be34bd2..edfd4eb7a8b 100644
--- a/source/am/helpcontent2/source/text/scalc.po
+++ b/source/am/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-11-20 18:50+0000\n"
-"Last-Translator: Samson B <sambelet@yahoo.com>\n"
+"PO-Revision-Date: 2016-03-03 16:29+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1448045452.000000\n"
+"X-POOTLE-MTIME: 1457022540.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1533,14 +1533,13 @@ msgid "With a few mouse-clicks, you can reorganize your spreadsheet to show or h
msgstr "በ ጥቂት አይጥ-መጫኛ እርስዎ እንደገና ማዘጋጀት ይችላሉ የ እርስዎን ሰንጠረዥ: ለ ማሳየት ወይንም ለ መደበቅ የ ተወሰነ የ ዳታ መጠን: ወይንም ለ ማቅረብ መጠኖችን እንደ ተለየ ሁኔታ: ወይንም በ ፍጥነት ንዑስ ድምሮች እና ጠቅላላ ድምር ለማስላት"
#: main0503.xhp
-#, fuzzy
msgctxt ""
"main0503.xhp\n"
"hd_id3155601\n"
"16\n"
"help.text"
msgid "Dynamic Charts"
-msgstr "Dynamic Charts"
+msgstr "ሐይለኛ Charts"
#: main0503.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/05.po b/source/am/helpcontent2/source/text/scalc/05.po
index 694e9020214..940efe92e77 100644
--- a/source/am/helpcontent2/source/text/scalc/05.po
+++ b/source/am/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2016-02-15 22:27+0000\n"
+"PO-Revision-Date: 2016-03-04 01:24+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1455575276.000000\n"
+"X-POOTLE-MTIME: 1457054647.000000\n"
#: 02140000.xhp
msgctxt ""
@@ -1059,7 +1059,7 @@ msgctxt ""
"par_id4238715\n"
"help.text"
msgid "For the following examples, A1 contains a number, B1 is empty, C1 contains the reference to B1:"
-msgstr ""
+msgstr "ለሚቀጥለው ለምሳሌ:, A1 የያዘው ቁጥር ነው: B1 ባዶ ነው: C1 የያዘው ማመሳከሪያ ነው ለ B1:"
#: empty_cells.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/schart/01.po b/source/am/helpcontent2/source/text/schart/01.po
index b2f7bcd4f72..1f735bb88b8 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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-02-25 17:14+0000\n"
+"PO-Revision-Date: 2016-03-04 01: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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456420458.000000\n"
+"X-POOTLE-MTIME: 1457054449.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -153,7 +153,7 @@ msgctxt ""
"par_id9116794\n"
"help.text"
msgid "The order of the categories or data points in the chart is the same as in the data table. Use the <emph>Move Row Down</emph> icon to switch the current row with its neighbor below."
-msgstr "የ ተከታታይ ዳታ ደንብ ተመሳሳይ ነው ከ chart ዳታ ሰንጠረዥ ጋር: ይጠቀሙ የ <emph>ረድፍ ወደ ታች ማንቀሳቀሻ</emph>ምልክት ለ መቀየር ወደ አሁኑ ረድፍ ጎረቤት በ ታች በኩል"
+msgstr "የ ተከታታይ ዳታ ደንብ ተመሳሳይ ነው ከ chart ዳታ ሰንጠረዥ ጋር: ይጠቀሙ የ <emph>ረድፍ ወደ ታች ማንቀሳቀሻ</emph>ምልክት ለ መቀየር ወደ አሁኑ ረድፍ ጎረቤት በ ታች በኩል"
#: 03010000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/00.po b/source/am/helpcontent2/source/text/shared/00.po
index ebdf7217a5d..a126094a920 100644
--- a/source/am/helpcontent2/source/text/shared/00.po
+++ b/source/am/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-02-24 19:27+0000\n"
-"Last-Translator: Samson B <sambelet@yahoo.com>\n"
+"PO-Revision-Date: 2016-03-03 17:13+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456342053.000000\n"
+"X-POOTLE-MTIME: 1457025219.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -9909,7 +9909,7 @@ msgctxt ""
"69\n"
"help.text"
msgid "<variable id=\"relationen\">In a database file window, choose <emph>Tools - Relationships</emph></variable>"
-msgstr "<variable id=\"relationen\">ከ ዳታቤዝ ፋይል መስኮት ውስጥ ይምረጡ <emph>መሳሪያዎች - ዝምድናቸው</emph></variable>"
+msgstr "<variable id=\"relationen\">ከ ዳታቤዝ ፋይል መስኮት ውስጥ ይምረጡ <emph>መሳሪያዎች - ግንኙነታቸው</emph></variable>"
#: 00040500.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index 920eb24e626..4a1acf6b214 100644
--- a/source/am/helpcontent2/source/text/shared/01.po
+++ b/source/am/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-02-28 15:37+0000\n"
+"PO-Revision-Date: 2016-03-04 01:11+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456673861.000000\n"
+"X-POOTLE-MTIME: 1457053893.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -25737,7 +25737,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/gradientpage/centerxmtr\">Enter the horizontal offset for the gradient, where 0% corresponds to the current horizontal location of the endpoint color in the gradient. The endpoint color is the color that is selected in the <emph>To</emph> box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/gradientpage/centerxmtr\">የ አግድም ማካካሻ ለ ከፍታ ያስገቡ: ይህ 0% ተመሳሳይ ነው ለ አግድም አካባቢ ለ መጨረሻ ነጥብ ቀለም በ ከፍታ ውስጥ: የ መጨረሻ ነጥብ ቀለም የ ተመረጠው ቀለም ነው በ <emph>ለ</emph> ሳጥን ውስጥ</ahelp>"
#: 05210300.xhp
msgctxt ""
@@ -25755,7 +25755,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/gradientpage/centerymtr\">Enter the vertical offset for the gradient, where 0% corresponds to the current vertical location of the endpoint color in the gradient. The endpoint color is the color that is selected in the <emph>To</emph> box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/gradientpage/centerymtr\">የ ቁመት ማካካሻ ለ ከፍታ ያስገቡ: ይህ 0% ተመሳሳይ ነው ለ ቁመት አካባቢ ለ መጨረሻ ነጥብ ቀለም በ ከፍታ ውስጥ: የ መጨረሻ ነጥብ ቀለም የ ተመረጠው ቀለም ነው በ <emph>ለ</emph> ሳጥን ውስጥ</ahelp>"
#: 05210300.xhp
msgctxt ""
@@ -25791,7 +25791,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/gradientpage/bordermtr\">Enter the amount by which you want to adjust the area of the endpoint color on the gradient. The endpoint color is the color that is selected in the <emph>To</emph> box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/gradientpage/bordermtr\">መጠን ያስገቡ አካባቢውን ለማስተካከል ለ መጨረሻ ነጥብ ቀለም በ ከፍታ ውስጥ: የ መጨረሻ ነጥብ ቀለም የ ተመረጠው ቀለም ነው በ <emph>ለ</emph> ሳጥን ውስጥ</ahelp>"
#: 05210300.xhp
msgctxt ""
@@ -26219,7 +26219,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/bitmaptabpage/BitmapTabPage\">Select a bitmap that you want to use as a fill pattern, or create your own pixel pattern. You can also import bitmaps, and save or load bitmap lists.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/bitmaptabpage/BitmapTabPage\">እርስዎ መጠቀም የሚፈልጉትን bitmap ይምረጡ እንደ መሙያ ድግግሞሽ ወይንም ይፍጠሩ የራስዎትን በ pixel ድግግሞሽ: እርስዎ bitmaps ማምጣት ይችላሉ እና ማስቀመጥ ወይንም ወደ bitmap ዝርዝር መጫን </ahelp>"
#: 05210500.xhp
msgctxt ""
@@ -26700,7 +26700,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/transparencytabpage/RBT_TRANS_GRADIENT\">Applies a transparency gradient to the current fill color. Select this option, and then set the gradient properties.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/transparencytabpage/RBT_TRANS_GRADIENT\">ወደ አሁኑ ቀለም መሙያ የ ግልጽነት ከፍታ መፈጸሚያ: ይህን ምርጫ ይምረጡ እና ከዛ የ ከፍታ ባህሪዎችን ያሰናዱ</ahelp>"
#: 05210700.xhp
msgctxt ""
@@ -26790,7 +26790,7 @@ msgctxt ""
"32\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/transparencytabpage/MTR_TRGR_BORDER\">Enter the amount by which you want to adjust the transparent area of the gradient. The default value is 0%.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/transparencytabpage/MTR_TRGR_BORDER\">እርስዎ ለ ግልጽነትን ቦታ ማስተካከል የሚፈልጉበትን መጠን ያስገቡ: ነባር ዋጋ 0% ነው</ahelp>"
#: 05210700.xhp
msgctxt ""
@@ -26887,7 +26887,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "The text is positioned relative to the edges of the drawing or text object."
-msgstr ""
+msgstr "ጽሁፍ የሚቀመጠው ከ ጠርዞች አንጻር ነው በ መሳያ ወይንም በ ጽሁፍ እቃ ውስጥ"
#: 05220000.xhp
msgctxt ""
@@ -27240,7 +27240,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/possizetabpage/MTR_FLD_POS_X\">Enter the horizontal distance that you want to move the object relative to the base point selected in the grid.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/possizetabpage/MTR_FLD_POS_X\">የ አግድም እርዝመት ያስገቡ እቃውን ማንቀሳቀስ የሚፈልጉበትን ከ መሰረታዊ ነጥብ አንጻር በ መጋጠሚያው ከ ተመረጠው</ahelp>"
#: 05230100.xhp
msgctxt ""
@@ -27258,7 +27258,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/possizetabpage/MTR_FLD_POS_Y\">Enter the vertical distance that you want to move the object relative to the base point selected in the grid.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/possizetabpage/MTR_FLD_POS_Y\">የ ቁመት እርዝመት ያስገቡ እቃውን ማንቀሳቀስ የሚፈልጉበትን ከ መሰረታዊ ነጥብ አንጻር በ መጋጠሚያው ከ ተመረጠው</ahelp>"
#: 05230100.xhp
msgctxt ""
@@ -27631,7 +27631,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/rotationtabpage/CTL_ANGLE\">Click to specify the rotation angle in multiples of 45 degrees.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/rotationtabpage/CTL_ANGLE\">ይጫኑ የ ተወሰነ የ ማዞሪያ አንግል ያለ ቀሪ የሚያካፍል 45 ዲግሪዎች </ahelp>"
#: 05230400.xhp
msgctxt ""
@@ -27860,7 +27860,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "The <emph>Length </emph>box is only available if you select the <emph>Angled connector line</emph> callout style, and leave the <emph>Optimal </emph>checkbox cleared."
-msgstr ""
+msgstr "የ <emph>እርዝመት </emph>ሳጥን ዝግጁ የሚሆነው እርስዎ ሲመርጡ ነው የ <emph>አንግል አገናኝ መስመር</emph> መጥሪያ ዘዴ: እና ይተዉት የ <emph>አጥጋቢ </emph>ምልክት ማድረጊያ ሳጥን ያጽዱ"
#: 05230500.xhp
msgctxt ""
@@ -27878,7 +27878,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/calloutpage/optimal\">Click here to display a single-angled line in an optimal way.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/calloutpage/optimal\">ይጫኑ እዚህ ለማሳየት የ ነጠላ-አንግል መስመር በ አጥጋቢ ዘዴ</ahelp>"
#: 05240000.xhp
msgctxt ""
@@ -29327,7 +29327,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"betretentext\"><ahelp hid=\".uno:EnterGroup\" visibility=\"visible\">Opens the selected group, so that you can edit the individual objects. If the selected group contains nested group, you can repeat this command on the subgroups.</ahelp></variable> This command does not permanently ungroup the objects."
-msgstr ""
+msgstr "<variable id=\"betretentext\"><ahelp hid=\".uno:EnterGroup\" visibility=\"visible\">የ ተመረጠውን ቡድን መክፈቻ: ስለዚህ እርስዎ እያንዳንዱን እቃዎች ማረም ይችላሉ: የ ተመረጠውን ቡድን እቅፍ ቡድን ከያዘ: እርስዎ ይህን ትእዛዝ መድገም ይችላሉ በ ንዑስ ቡድኖች ላይ </ahelp></variable> ይህ ትእዛዝ እቃዎችን በቋሚነት አይለያይም"
#: 05290300.xhp
msgctxt ""
@@ -29378,7 +29378,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"verlassentext\"><ahelp hid=\".uno:LeaveGroup\" visibility=\"visible\">Exits the group, so that you can no longer edit the individual objects in the group.</ahelp></variable> If you are in a nested group, only the nested group is closed."
-msgstr ""
+msgstr "<variable id=\"verlassentext\"><ahelp hid=\".uno:LeaveGroup\" visibility=\"visible\">ከ ቡድን መውጫ: ስለዚ እርስዎ ማረም አይችሉም እያንዳንዱ እቃ በ ቡድን ውስጥ </ahelp></variable> እርስዎ በ ታቀፋ ቡድን ውስጥ ካሉ: የሚዘጋው የ ታቀፈው ቡድን ብቻ ነው"
#: 05290400.xhp
msgctxt ""
@@ -41455,7 +41455,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Formatting Mark"
-msgstr ""
+msgstr "የ አቀራረብ ምልክት"
#: formatting_mark.xhp
msgctxt ""
@@ -41463,7 +41463,7 @@ msgctxt ""
"bm_id9930722\n"
"help.text"
msgid "<bookmark_value>CTL;(not) wrapping words</bookmark_value> <bookmark_value>words;wrapping in CTL</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>CTL;(አይደለም) ቃላት መጠቅለያ</bookmark_value> <bookmark_value>ቃላት;መጠቅለያ በ CTL</bookmark_value>"
#: formatting_mark.xhp
msgctxt ""
@@ -41471,7 +41471,7 @@ msgctxt ""
"hd_id030220091035120\n"
"help.text"
msgid "<variable id=\"formattingmark\"><link href=\"text/shared/01/formatting_mark.xhp\">Formatting Mark</link></variable>"
-msgstr ""
+msgstr "<variable id=\"formattingmark\"><link href=\"text/shared/01/formatting_mark.xhp\">የ አቀራረብ ምልክት</link></variable>"
#: formatting_mark.xhp
msgctxt ""
@@ -41479,7 +41479,7 @@ msgctxt ""
"par_id0302200910351248\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a submenu to insert special formatting marks. Enable CTL for more commands.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ንዑስ ዝርዝር መክፈቻ የተለየ የ አቀራረብ ምልክት ለማስገባት: ያስችሉ CTL ለ ተጨማሪ ትእዛዞች</ahelp>"
#: formatting_mark.xhp
msgctxt ""
@@ -41527,7 +41527,7 @@ msgctxt ""
"par_id9407330\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts an invisible hyphen within a word that will appear and create a line break once it becomes the last character in a line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የማይታይ ክፍተት ማስገቢያ በ ቃል ውስጥ የሚታይ እና የ መስመር መጨረሻ መፍጠሪያ በ መስመር ላይ የ መጨረሻ ባህሪ ሲሆን </ahelp>"
#: formatting_mark.xhp
msgctxt ""
@@ -41631,7 +41631,7 @@ msgctxt ""
"par_id3150789\n"
"help.text"
msgid "<variable id=\"media_gallery_text\"><ahelp hid=\".\">Opens the Gallery deck of the Sidebar, where you can select images and audio clips to insert into your document.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"media_gallery_text\"><ahelp hid=\".\">መክፈቻ የ አዳራሽ ማሳረፊያ በ ጎን መደርደሪያ በኩል: እርስዎ መምረጥ የሚችሉበት ምስሎች እና ድምፆች ናሙና ለማስገባት በ እርስዎ ሰነድ ውስጥ</ahelp></variable>"
#: gallery.xhp
msgctxt ""
@@ -41655,7 +41655,7 @@ msgctxt ""
"par_id3145346\n"
"help.text"
msgid "Themes are listed on the left side of the <emph>Gallery</emph>.<ahelp hid=\"HID_GALLERY_THEMELIST\">Click a theme to view the objects associated with the theme.</ahelp>"
-msgstr ""
+msgstr "የ ገጽታዎች ዝርዝር በ ግራ በኩል ነው በ <emph>አዳራሽ</emph>.<ahelp hid=\"HID_GALLERY_THEMELIST\">ይጫኑ ገጽታውን እቃዎች ለ መመልከት ከ ገጽታ ጋር የተዛመዱ</ahelp>"
#: gallery.xhp
msgctxt ""
@@ -41928,7 +41928,7 @@ msgctxt ""
"par_idN10582\n"
"help.text"
msgid "Displays or hides grid lines that you can use to align objects such as graphics on a page."
-msgstr ""
+msgstr "የ መጋጠሚያ መስመሮች ማሳያ ወይንም መደበቂያ እርስዎ መጠቀም የሚችሉበት እቃዎችን ለማሰለፍ እንደ ንድፍ ያሉ በ ገጽ ውስጥ"
#: grid.xhp
msgctxt ""
@@ -42016,7 +42016,7 @@ msgctxt ""
"par_idN1057F\n"
"help.text"
msgid "Displays or hides snap lines that you can use to align objects on a page."
-msgstr ""
+msgstr "የ መጋጠሚያ መስመሮች ማሳያ ወይንም መደበቂያ እርስዎ መጠቀም የሚችሉበት እቃዎችን ለማሰለፍ በ ገጽ ውስጥ"
#: guides.xhp
msgctxt ""
@@ -42080,7 +42080,7 @@ msgctxt ""
"par_idN10560\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Media Player window where you can preview movie and sound files as well as insert these files into the current document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">መክፈቻ የ ብዙሀን መገናኛ ማጫወቻ መስኮት እርስዎ በ ቅድመ እይታ የሚያዩበት ሙቪ እና ድምፅ ፋይሎች እንዲሁም የሚያስገቡበት እነዚህን ፋይሎች ወደ እርስዎ ሰነድ ውስጥ </ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -42088,7 +42088,7 @@ msgctxt ""
"par_idN10577\n"
"help.text"
msgid "The Media Player supports many different media formats. You can also insert media files from the Media Player into your document."
-msgstr ""
+msgstr "የ ብዙሀን መገናኛ ማጫወቻ በርካታ አይነት የ መገናኛ አቀራረብ ይደግፋል: እርስዎ የ መገናኛ ፋይሎች ከ ብዙሀን መገናኛ ማጫወቻ ወደ እርስዎ ሰነድ ውስጥ ማስገባት ይችላሉ"
#: mediaplayer.xhp
msgctxt ""
@@ -42120,7 +42120,7 @@ msgctxt ""
"par_idN10585\n"
"help.text"
msgid "Inserts the current movie file or sound file as a media object into the current document."
-msgstr ""
+msgstr "የ አሁኑን ሙቪ ፋይል ወይንም ድምፅ እንደ መገናኛ እቃ ወደ አሁኑ ሰነድ ውስጥ ማስገቢያ"
#: mediaplayer.xhp
msgctxt ""
@@ -42272,7 +42272,7 @@ msgctxt ""
"par_id10292015122231415\n"
"help.text"
msgid "<ahelp hid=\".\">Toggle the visibility of the <emph>Find</emph> toolbar to search for text or navigate a document by element.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">መቀያየሪያ የሚታየውን የ <emph>መፈለጊያ</emph> እቃ መደርደሪያ ለ ጽሁፍ መቃኛ ወይንም ሰነዶችን በ አካል መፈለጊያ</ahelp>"
#: menu_view_sidebar.xhp
msgctxt ""
@@ -42376,7 +42376,7 @@ msgctxt ""
"par_idN10696\n"
"help.text"
msgid "In the File Open dialog, select the file that you want to insert."
-msgstr ""
+msgstr "በ ፋይል መክፈቻ ንግግር ውስጥ: ይምረጡ ፋይል እርስዎ ማስገባት የሚፈልጉትን"
#: moviesound.xhp
msgctxt ""
@@ -42384,7 +42384,7 @@ msgctxt ""
"par_idN10699\n"
"help.text"
msgid "The file types that are listed in this dialog are not supported by all operating systems."
-msgstr ""
+msgstr "እነዚህ ፋይሎች እዚህ የ ተዘረዘሩት በዚህ ንግግር የ ተደገፉ አይደሉም በ ሁሉም የ መስሪያ ስርአት"
#: moviesound.xhp
msgctxt ""
@@ -42392,7 +42392,7 @@ msgctxt ""
"par_idN10700\n"
"help.text"
msgid "Click the <emph>Link</emph> box if you want a link to the original file. If it is not checked, the media file will be embedded (not supported with all file formats)."
-msgstr ""
+msgstr "ይጫኑ የ <emph>አገናኝ</emph> ሳጥን እርስዎ ማገናኘት ከ ፈለጉ ከ ዋናው ፋይል ጋር: ምልክት ካልተደረገበት: የ መገናኛ ፋይሉ ይጣበቃ (በ ሁሉም የ ፋይል አቀራረብ የ ተደገፈ አይደለም)."
#: moviesound.xhp
msgctxt ""
@@ -42408,7 +42408,7 @@ msgctxt ""
"par_id0120200912190948\n"
"help.text"
msgid "Alternatively, you can choose <item type=\"menuitem\">Tools - Media Player</item> to open the Media Player. Use the Media Player to preview all supported media files. Click the Apply button in the Media Player window to insert the current media file into your document."
-msgstr ""
+msgstr "በ አማራጭ: እርስዎ መምረጥ ይችላሉ <item type=\"menuitem\">መሳሪያዎች - መገናኛ ማጫወቻ</item> ለ መክፈት የ መገናኛ ማጫወቻ: ይጠቀሙ የ መገናኛ ማጫወቻ ሁሉንም የ ተደገፉ የ መገናኛ ፋይሎች በ ቅድመ እይታ ለማየት: ይጫኑ የ መፈጸሚያ ቁልፍ በ መገናኛ ማጫወቻ መስኮት ውስጥ ለማስገባት የ አሁኑን የ መገናኛ ፋይል ወደ እርስዎ ሰነድ ውስጥ"
#: moviesound.xhp
msgctxt ""
@@ -42432,7 +42432,7 @@ msgctxt ""
"par_id0120200912190940\n"
"help.text"
msgid "If the icon is arranged on the background, hold down Ctrl while you click."
-msgstr ""
+msgstr "ምልክት የ ተዘጋጀው በ መደብ ላይ ከሆነ: ተጭነው ይያዙ Ctrl በሚጫኑ ጊዜ"
#: moviesound.xhp
msgctxt ""
@@ -42440,7 +42440,7 @@ msgctxt ""
"par_id0120200912062096\n"
"help.text"
msgid "The Media Playback toolbar is shown."
-msgstr ""
+msgstr "የ መገናኛ በድጋሚ ማጫወቻ እቃ መደርደሪያ ይታያል"
#: moviesound.xhp
msgctxt ""
@@ -42496,7 +42496,7 @@ msgctxt ""
"par_id3174230\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Mark to enable the automatic check for updates. Choose %PRODUCTNAME - Online Update in the Options dialog box to disable or enable this feature.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ራሱ በራሱ ማሻሻያ እንዲፈልግ ለማስቻል ምልክት ያድርጉ: ይምረጡ %PRODUCTNAME - በ መስመር ላይ ማሻሻያ ምርጫ ንግግር ሳጥን ውስጥ ይህን ገጽታ ለ ማስቻል ወይንም ለ ማሰናከል </ahelp>"
#: online_update.xhp
msgctxt ""
@@ -42616,7 +42616,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 ""
+msgstr "ይህ %PRODUCTNAME ከተዘጋጀ ራሱ በራሱ ፋይሎችን እንዲያወርድ: ማውረድ ወዲያውኑ ይጀምራል: ንግግሩን ቢያሳንሱም ማውረዱን ይቀጥላል"
#: online_update.xhp
msgctxt ""
@@ -42664,7 +42664,7 @@ msgctxt ""
"par_id1906491\n"
"help.text"
msgid "<ahelp hid=\".\">Checks for available updates to your version of %PRODUCTNAME. If a newer version is available, you can choose to download the update. After downloading, if you have write permissions for the installation directory, you can install the update.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ዝግጁ ማሻሻያ ይፈልጋል ለ እርስዎ እትም ለ %PRODUCTNAME. አዲስ እትም ዝግጁ ከሆነ: እርስዎ መምረጥ ይችላሉ ለማውረድ: ከ ወረደ በኋላ እርስዎ በቂ የ መጻፍ ፍቃድ ካለዎት ለ መግጠሚያ ዳይሬክቶሪ ላይ: ማሻሻያውን መግጠም ይችላሉ </ahelp>"
#: online_update_dialog.xhp
msgctxt ""
@@ -42672,7 +42672,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 ""
+msgstr "አንዴ መውረድ ከጀመረ: ለ እርስዎ የ ሂደት መደርደሪያ እና ሶስት ቁልፎች ይታያል በ ንግግር ውስጥ: እርስዎ ማውረዱን ማስቆም እና መቀጠል ይችላሉ እና መቀጠል በ ቁልፎቹ: ይጫኑ መሰረዣ ለማቋረጥ ማውረዱን እና ለማጥፋት በ ከፊል የ ወረደውን ፋይል"
#: online_update_dialog.xhp
msgctxt ""
@@ -42688,7 +42688,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 ""
+msgstr "ማውረዱ ከ ጨረሰ በኋላ: እርስዎ መጫን ይችላሉ መግጠም ለማስጀመር የ ማሻሻያውን መግጠሚያ: ለ እርስዎ የ ማረጋገጫ ንግግር ይታያል: እርስዎ መምረጥ ይችላሉ ለ መዝጋት %PRODUCTNAME."
#: online_update_dialog.xhp
msgctxt ""
@@ -42712,7 +42712,7 @@ msgctxt ""
"par_id4238715\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Downloads and saves the update files to the desktop or a folder of your choice. Select the folder in %PRODUCTNAME - Online Update in the Options dialog box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">ማሻሻያ ፋይል ማውረጃ እና ማስቀመጫ ወደ ዴስክቶፕ ወይንም ፎልደር እንደ እርስዎ ምርጫ: ፎልደር ይምረጡ በ %PRODUCTNAME - መስመር ላይ ማሻሻያ ምርጫዎች ንግግር ሳጥን ውስጥ </ahelp>"
#: online_update_dialog.xhp
msgctxt ""
@@ -42880,7 +42880,7 @@ msgctxt ""
"par_id9143955\n"
"help.text"
msgid "An extension is available as a file with the file extension .oxt."
-msgstr ""
+msgstr "ተጨማሪ ዝግጁ ነው እንደ ፋይል በ ፋይል ተጨማሪ .oxt."
#: packagemanager.xhp
msgctxt ""
@@ -42888,7 +42888,7 @@ msgctxt ""
"par_id7857905\n"
"help.text"
msgid "You can find a collection of extensions on the Web. Click the \"Get more extensions here\" link in the Extension Manager to open your Web browser and see the <link href=\"http://extensions.libreoffice.org/\">http://extensions.libreoffice.org/</link> page."
-msgstr ""
+msgstr "እርስዎ ማግኘት ይችላሉ የ ተጨማሪዎች ስብስብ በ ዌብ ላይ: ይጫኑ \"ተጨማሪ ተጨማሪዎች ያግኙ\" አገናኝ ከ ተጨማሪዎች አስተዳዳሪ ለ መክፈት የ ዌብ መቃኛ እና ይመልከቱ የ <link href=\"http://extensions.libreoffice.org/\">http://extensions.libreoffice.org/</link> ገጽ"
#: packagemanager.xhp
msgctxt ""
@@ -43000,7 +43000,7 @@ msgctxt ""
"par_idN106BD\n"
"help.text"
msgid "A file dialog opens where you can select the extension that you want to add. To copy and to register the selected extension, click Open."
-msgstr ""
+msgstr "የ ፋይል ንግግር መክፈቻ እርስዎ ተጨማሪ የሚመርጡበት እና የሚጨምሩበት: የተመረጠውን ተጨማሪ ኮፒ ለማድረግ እና ለ መመዝገብ: ይጫኑ ለ መክፈት"
#: packagemanager.xhp
msgctxt ""
@@ -43008,7 +43008,7 @@ msgctxt ""
"par_id4856410\n"
"help.text"
msgid "An extension can show a license dialog. <ahelp hid=\".\">Read the license. Click the Scroll Down button to scroll down if necessary. Click Accept to continue the installation of the extension.</ahelp>"
-msgstr ""
+msgstr "ተእማሪ የ ፍቃድ ንግግር ያሳያል <ahelp hid=\".\">ፍቃዱን ያንብቡ: ይጫኑ መሸብለያውን ወደ ታች ለ መሸብለል አስፈላጊ ከሆነ: ይጫኑ እቀበላለሁ እና ለ መቀጠል ተጨማሪውን ለ መግጠም </ahelp>"
#: packagemanager.xhp
msgctxt ""
@@ -43104,7 +43104,7 @@ msgctxt ""
"par_id0103201110331832\n"
"help.text"
msgid "Some additional commands can appear in the context menu of an extension in the Extension Manager window, depending on the selected extension. You can choose to show the license text again. You can choose to exclude the extension from checking for updates or to include an excluded extension."
-msgstr ""
+msgstr "በ አገባብ ዝርዝር ውስጥ ለ ተጨማሪ አንዳንድ ተጨማሪ ትእዛዞች ይታያሉ በ ተጨማሪ አስተዳዳሪ መስኮት ውስጥ: እንደ ተመረጠው ተጨማሪ አይነት: እርስዎ መምረጥ ይችላሉ የ ፍቃዱን ጽሁፍ በ ድጋሚ እንዲታይ: እርስዎ መምረጥ ይችላሉ ተጨማሪ ማሻሻያ እንዲፈልግ ወይንም ተጨማሪ ማሻሻያ እንዳይፈልግ"
#: password_dlg.xhp
msgctxt ""
@@ -43242,7 +43242,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "You can save some passwords for the duration of a session, or permanently to a file protected by a master password."
-msgstr ""
+msgstr "እርስዎ ማስቀመጥ ይችላሉ በ መግቢያ ቃል የሚጠበቅ ክፍለ ጊዜ: ወይንም በ ቋሚነት ፋይል እንዲጠበቅ በ ዋናው የ መግቢያ ቃል"
#: password_main.xhp
msgctxt ""
@@ -43251,7 +43251,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "You must enter the master password to access a file or service that is protected by a saved password. You only need to enter the master password once during a session."
-msgstr ""
+msgstr "እርስዎ ማስገባት አለብዎት ዋናውን የ መግቢያ ቃል ፋይል ወይንም ግልጋሎት ጋር ለ መድረስ በ መግቢያ ቃል የሚጠበ ጋር: እርስዎ ቢያንስ አንዴ የ መግቢያ ቃል ማስገባት አለብዎት በ ክፍለ ጊዜ ውስጥ"
#: password_main.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 23ec18b643c..70095d727f0 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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2016-02-29 16:40+0000\n"
+"PO-Revision-Date: 2016-03-04 01:25+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456764055.000000\n"
+"X-POOTLE-MTIME: 1457054717.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -3419,7 +3419,7 @@ msgctxt ""
"40\n"
"help.text"
msgid "<link href=\"text/shared/explorer/database/05020000.xhp\" name=\"Relations, Primary and External Key\">Relations, Primary and External Key</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/explorer/database/05020000.xhp\" name=\"Relations, Primary and External Key\">ግኑኘነቶች: ቀዳሚ እና የ ውጪ ቁልፍ</link>"
#: 05000001.xhp
msgctxt ""
@@ -4224,7 +4224,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/indexdesigndialog/UNIQUE\">Specifies whether the current index allows only unique values.</ahelp> Checking the <emph>Unique </emph>option prevents duplicate data from being entered in the field and ensures data integrity."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/indexdesigndialog/UNIQUE\">የ አሁኑ ማውጫ የተለዩ ዋጋዎችን ይፈቅድ እንደሆን ይወስኑ</ahelp>ምልክት ማድረግ <emph>የተለዩ </emph>ምርጫዎች ላይ የ ተባዙ ዳታዎች ወደ ሜዳ ውስጥ ማስገባት ይከለክላል: እርግጠኛ ይሁኑ ዳታው ትክክል መሆኑን"
#: 05010100.xhp
msgctxt ""
@@ -4260,7 +4260,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGINDEX_INDEXDETAILS_FIELD\">Displays a list of the fields in the current table. You can select more than one field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_DLGINDEX_INDEXDETAILS_FIELD\">በ አሁኑ ሰንጠረዥ ውስጥ የ ሜዳዎች ዝርዝር ማሳያ: እርስዎ ከ አንድ በላይ ሜዳ መምረጥ ይችላሉ </ahelp>"
#: 05010100.xhp
msgctxt ""
@@ -4321,7 +4321,7 @@ msgctxt ""
"bm_id3146957\n"
"help.text"
msgid "<bookmark_value>relational databases (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ ዳታቤዝ ግንኙነት (Base)</bookmark_value>"
#: 05020000.xhp
msgctxt ""
@@ -4330,7 +4330,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "This command opens the <emph>Relation Design </emph>window, which allows you to define relationships between various database tables."
-msgstr ""
+msgstr "ይህ ትእዛዝ የሚከፍተው የ <emph>ዳታቤዝ ግንኙነት </emph>መስኮት ነው: እርስዎን ግንኙነቱን መግለጽ ያስችሎታል በ ተለያዩ የ ዳታቤዝ ሰንጠረዥ መካከል"
#: 05020000.xhp
msgctxt ""
@@ -4348,7 +4348,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "This function is only available if you are working with a relational database."
-msgstr ""
+msgstr "ይህ ተግባር ዝግጁ የሚሆነው እርስዎ የ ዳታቤዝ ግንኙነት ሲሰሩ ነው"
#: 05020000.xhp
msgctxt ""
@@ -4357,7 +4357,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "When you choose <emph>Tools - Relationships</emph>, a window opens in which all the existing relationships between the tables of the current database are shown. If no relationships have been defined, or if you want to relate other tables of the database to each other, then click the <emph>Add Tables</emph> icon. The <link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link> dialog opens in which you can select the tables that you want."
-msgstr ""
+msgstr "እርስዎ በሚመርጡ ጊዜ <emph>መሳሪያዎች – ግንኙነቶች</emph>, መስኮት ይከፈታል ሁሉንም የ ነበሩ ግንኙነቶች በ ሰንጠረዦች እና በ አሁኑ የ ዳታቤዝ ያሉ ይታያሉ: ምንም ግንኙነት ካልተገለጸ: ወይንም እርስዎ ሌሎች ሰንጠረዦች ጋር ግንኙነት ማድረግ ከፈለጉ ከ ዳታቤዝ ውስጥ ከ እያንዳንዳቸው ጋራ: ይጫኑ የ <emph> ሰንጠረዥ መጨመሪያ </emph> ምልክት: የ <link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">ሰንጠረዥ መጨመሪያ</link> ንግግር ይከፈታል እርስዎ የሚፈልጉትን ሰንጠረዥ የሚመርጡበት"
#: 05020000.xhp
msgctxt ""
@@ -4366,7 +4366,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "If the <emph>Relation Design</emph> window is open, the selected tables cannot be modified, even in Table Design mode. This ensures that tables are not changed while the relations are being created."
-msgstr ""
+msgstr "ይህ የ <emph>ግንኙነት ንድፍ</emph> መስኮት ነው: የ ተመረጠውን ሰንጠረዥ ማሻሻል አይቻልም: በ ሰንጠረዥ ንድፍ ዘዴም ውስጥ እንኳን: ይህ ማረጋገጫ ነው ሰንጠረዦች እንደማይቀየሩ ግንኙነት በሚፈጠር ጊዜ"
#: 05020000.xhp
msgctxt ""
@@ -4375,7 +4375,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "The selected tables are shown in the top area of the design view. You can close a table window through the context menu or with the Delete key."
-msgstr ""
+msgstr "የ ተመረጠው ሰንጠረዥ ከ ንድፍ መልከቻ ከ ላይ በኩል ይታያል: እርስዎ መዝጋት ይችላሉ የ ሰንጠረዥ መስኮት በ አገባብ ዝርዝር ወይንም በ ማጥፊያ ቁልፍ"
#: 05020000.xhp
msgctxt ""
@@ -4401,7 +4401,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "If you want to define a relation among the different tables, you should enter a <link href=\"text/shared/00/00000005.xhp#primaerschluessel\" name=\"primary key\">primary key</link> that clearly identifies a data field of the existing table. You can refer to the primary key from other tables to access the data of this table. All data fields referring to this primary key will be identified as an external key."
-msgstr ""
+msgstr "እርስዎ በ ተለያዩ ሰንጠረዦች ውስጥ ግንኙነት መግለጽ ከፈለጉ: እርስዎ ማስገባት አለብዎት የ <link href=\"text/shared/00/00000005.xhp#primaerschluessel\" name=\"primary key\">ቀዳሚ ቁልፍ</link> በ ግልጽ የ ዳታ ሜዳ የሚለይ በ ነበረው ሰንጠረዥ ውስጥ: እርስዎ ማመሳከር ይችላሉ ወደ ቀዳሚ ቁልፍ ከ ሌላ ሰንጠረዥ ውስጥ እንዲደርሱ ወደ እዚህ ሰንጠረዥ ዳታ ውስጥ: ሁሉም የ ዳታ ሜዳዎች ቀዳሚ ቁልፍ የሚያመሳክሩ በ ውጪ ቁልፍ ይለያሉ"
#: 05020000.xhp
msgctxt ""
@@ -4410,7 +4410,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "All data fields referring to a primary key will be identified in the table window by a small key symbol."
-msgstr ""
+msgstr "ሁሉንም የ ዳታ ሜዳዎች ቀዳሚ ቁልፍ የሚያመሳክሩ ይለያሉ በ ሰንጠረዥ መስኮት በ ትንሽ ቁልፍ ምልክት"
#: 05020000.xhp
msgctxt ""
@@ -4427,7 +4427,7 @@ msgctxt ""
"bm_id3155430\n"
"help.text"
msgid "<bookmark_value>relations; creating and deleting (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ግንኙነት; መፍጠሪያ እና ማጥፊያ (Base)</bookmark_value>"
#: 05020000.xhp
msgctxt ""
@@ -4436,7 +4436,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "All existing relations are shown in the relations windows by a line that connects the primary and other key fields. You can add a relation by using drag-and-drop to drop the field of one table onto the field of the other table. A relation is removed again by selecting it and pressing the Delete key."
-msgstr ""
+msgstr "ሁሉም የ ነበሩ ግንኙነቶች ይታያሉ በ ግንኙነቶች መስኮቶች ውስጥ በ መስመር የሚያገናኝ ቀዳሚ ቁልፍ እና ሌሎች ቁልፍ ሜዳዎች: እርስዎ መጨመር ይችላሉ ግንኙነት በ መጎተቻ-እና-መጣያ በ መጠቀም: የ አንድ ሰንጠረዥ ሜዳ በ መጣል ወደ ሌላ ሰንጠረዥ ሜዳ: ግንኙነት ማስወገድ ይችላሉ በ መምረጥ እና በ መጫን ማጥፊያ ቁልፍ"
#: 05020000.xhp
msgctxt ""
@@ -4445,7 +4445,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "Alternatively, you can also click the <emph>New Relation</emph> icon in the top area of the relation field and define the relation between two tables in the <link href=\"text/shared/explorer/database/05020100.xhp\" name=\"Relations\"><emph>Relations</emph></link> dialog."
-msgstr ""
+msgstr "በ አማራጭ እርስዎ ይጫኑ የ <emph>አዲስ ግንኙነት</emph> ምልክት ከ ግንኙነት ሜዳ በ ላይ በኩል እና ይግለጹ ግንኙነት በ ሁለት ሰንጠረዦች መካከል በ <link href=\"text/shared/explorer/database/05020100.xhp\" name=\"Relations\"><emph>ግንኙነቶች</emph></link> ንግግር ውስጥ"
#: 05020000.xhp
msgctxt ""
@@ -4454,7 +4454,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "If you use $[officename] as the front-end for a relational database, the creation and deletion of relationships is not placed in an intermediate memory by $[officename], but is forwarded directly to the external database."
-msgstr ""
+msgstr "እርስዎ ከ ተጠቀሙ $[officename] እንደ የ ፊት-መጨረሻ ለ ዳታቤዝ ግንኙነት: የ መፍጠሪያ እና የ ማጥፊያ ግንኙነቶች አይቀመጥም በ ማስታወሻ መካከል በ $[officename], ነገር ግን በ ቀጥታ ወደ ፊት ይተላለፋል ወደ ውጪ ዳታቤዝ"
#: 05020000.xhp
msgctxt ""
@@ -4463,7 +4463,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "By double-clicking a connection line, you can assign certain properties to the relation. The <emph>Relations </emph>dialog opens."
-msgstr ""
+msgstr "ሁለት ጊዜ-በ መጫን የ ግንኙነት መስመር ላይ: እርስዎ አንዳንድ ባህሪዎች መመደብ ይችላሉ ወደ ግንኙነት የ <emph>ግንኙነቶች </emph>ንግግር ይከፈታል"
#: 05020100.xhp
msgctxt ""
@@ -4506,7 +4506,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "The update and delete options are only available if they are supported by the database used."
-msgstr ""
+msgstr "የ ማሻሻያ እና የ ማጥፊያ ምርጫዎች ዝግጁ የሚሆነው የሚጠቀሙት ዳታቤዝ የሚደግፈው ከሆነ ነው"
#: 05020100.xhp
msgctxt ""
@@ -4524,7 +4524,7 @@ msgctxt ""
"28\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\" visibility=\"hidden\">This is where the two related tables are listed.</ahelp> If you create a new relation, you can select one table from each of the combo boxes in the top part of the dialog."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/table2\" visibility=\"hidden\">እዚህ ነው የ ተገናኙ ሰንጠረዦች የሚታዩት </ahelp> እርስዎ አዲስ ግንኙነት ከ ፈጠሩ: እርስዎ መምረጥ ይችላሉ አንድ ሰንጠረዥ ከ እያንዳንዱ መቀላቀያ ሳጥኖች ከ ንግግሩ በ ላይ በኩል"
#: 05020100.xhp
msgctxt ""
@@ -4533,7 +4533,7 @@ msgctxt ""
"29\n"
"help.text"
msgid "If you opened the <emph>Relations</emph> dialog for an existing relation by double-clicking the connection lines in the Relation window, then the tables involved in the relation cannot be modified."
-msgstr ""
+msgstr "እርስዎ ከ ከፈቱ የ <emph>ግንኙነቶች</emph> ንኅግር ለ ነበረ ግንኙነት ሁለት ጊዜ-በ መጫን የ ግንኙነት መስመር በ ግንኙነት መስኮት ውስጥ: እና ከዛ የ ተገናኙትን ሰንጠረዦቹ ማሻሻል አይችሉም"
#: 05020100.xhp
msgctxt ""
@@ -4560,7 +4560,7 @@ msgctxt ""
"30\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/relationdialog/table2\">The names of the tables selected for the link appear here as column names.</ahelp> If you click a field, you can use the arrow buttons to select a field from the table. Each relation is written in a row."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/table2\">የ ተመረጠው ሰንጠረዥ ስሞች ለ አገናኝ ይታያል እዚህ እንደ አምድ ስሞች:</ahelp> እርስዎ ሜዳ ላይ ከ ተጫኑ: እርስዎ መጠቀም ይችላሉ የ ቀስት ቁልፎች ሜዳ ለ መምረጥ ከ ሰንጠረዥ ውስጥ: እያንዳንዱ ግንኙነት የሚጻፈው በ ረድፍ ነው"
#: 05020100.xhp
msgctxt ""
@@ -4578,7 +4578,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "Here you can select options that take effect when there are changes to a primary key field."
-msgstr ""
+msgstr "እዚህ መምረጥ ይችላሉ ምርጫዎች ተጽእኖ የሚፈጥሩ ለውጦች በሚኖሩ ጊዜ በ ቀዳሚ ቁልፍ ሜዳ ውስጥ"
#: 05020100.xhp
msgctxt ""
@@ -4596,7 +4596,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addaction\">Specifies that any change made to a primary key does not affect other external key fields.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/addaction\">በ ቀዳሚ ቁልፍ ላይ የተደረገ ማንኛውም ለውጥ በ ውጪ ቁልፍ ሜዳዎች ላይ ተጽእኖ እንዳይፈጥር መወሰኛ </ahelp>"
#: 05020100.xhp
msgctxt ""
@@ -4605,7 +4605,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "Updating cascade"
-msgstr ""
+msgstr "cascade ማሻሻያ"
#: 05020100.xhp
msgctxt ""
@@ -4614,7 +4614,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addcascade\">Updates all the external key fields if the value of the corresponding primary key has been modified (Cascading Update).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/addcascade\">ማሻሻያ ሁሉም የ ውጪ ቁልፍ ሜዳዎች ዋጋ ተመሳሳይ ቀዳሚ ቁልፍ ከ ተሻሻለ (Cascading Update).</ahelp>"
#: 05020100.xhp
msgctxt ""
@@ -4632,7 +4632,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/relationdialog/addnull\"> If the corresponding primary key has been modified, use this option to set the \"IS NULL\" value to all external key fields. IS NULL means that the field is empty.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/addnull\">ይህ ተመሳሳይ ቀዳሚ ቁልፍ ከ ተሻሻለ: ይህን ምርጫ ይጠቀሙ ለ ማሰናዳት \"ባዶ ነው\" ዋጋ ለ ሁሉም የ ውጪ ቁልፍ ሜዳዎች: ባዶ ነው ማለት ሜዳው ባዶ ነው ማለት ነው </ahelp>"
#: 05020100.xhp
msgctxt ""
@@ -4650,7 +4650,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/relationdialog/adddefault\"> If the corresponding primary key has been modified, use this option to set a default value to all external key fields.</ahelp> During the creation of the corresponding table, the default value of an external key field will be defined when you assign the field properties."
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/adddefault\"> ይህ ተመሳሳይ ቁልፍ ቀዳሚ ቁልፍ ከ ተሻሻለ: ይህን ምርጫ ይጠቀሙ ነባር ዋጋ ለማሰናዳት ለ ሁሉም የ ውጪ ቁልፍ ሜዳዎች</ahelp> ተመሳሳይ ሰንጠረዥ በሚፈጥሩ ጊዜ: የ ውጪ ቁልፍ ሜዳ ነባር ዋጋ ይገለጻል እርስዎ የ ሜዳ ባህሪዎች በሚመድቡ ጊዜ"
#: 05020100.xhp
msgctxt ""
@@ -4686,7 +4686,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delaction\">Specifies that the deletion of a primary key will not have any effect on other external key fields.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/delaction\">የ ቀዳሚ ቁልፍ በሚያጠፉ ጊዜ በ ሌሎች የ ውጪ ቁልፍ ሜዳዎች ላይ ተጽእኖ እንዳይፈጥር መወሰኛ </ahelp>"
#: 05020100.xhp
msgctxt ""
@@ -4695,7 +4695,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "Delete cascade"
-msgstr ""
+msgstr "cascade ማጥፊያ"
#: 05020100.xhp
msgctxt ""
@@ -4704,7 +4704,7 @@ msgctxt ""
"21\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/relationdialog/delcascade\">Specifies that all external key fields will be deleted if you delete the corresponding primary key field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/relationdialog/delcascade\">ሁሉም የ ውጪ ቁልፍ ሜዳዎች ይጠፉ እንደሆን መወሰኛ እርስዎ ቀዳሚ ቁልፍ ሜዳ ሲያጠፉ </ahelp>"
#: 05020100.xhp
msgctxt ""
@@ -4953,7 +4953,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "The table definition must be exactly the same so that data can be copied. Data cannot be copied if a data field in the target table has another format than the data field in the source table."
-msgstr ""
+msgstr "የ ሰንጠረዥ ትርጉም በ ትክክል ተመሳሳይ መሆን አለበት ስለዚህ ዳታ ኮፒ ማድረግ ይችላሉ: ዳታ ኮፒ ማድረግ አይቻልም የ ዳታ ሜዳ የ ታለመው ሰንጠረዥ ሌላ አይነት አቀራረብ ካለው ከ ዳታ ሜዳ በ ሰንጠረዡ ምንጭ ውስጥ"
#: 05030100.xhp
msgctxt ""
@@ -4980,7 +4980,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "If the fields of the target table have a smaller field length than in the source table when data is being attached, the source data fields will automatically be truncated to match the field lengths in the target table."
-msgstr ""
+msgstr "የ ታለመው የ ሰንጠረዥ ሜዳ አነስተኛ የ ሜዳ እርዝመት ካለው ከ ሰንጠረዥ ምንጩ ጋር ዳታ በሚያያዝበት ጊዜ: የ ዳታ ሜዳ ምንጭ ራሱ በራሱ ያሳጥራል እንዲስማማ ከ ታለመው ሰንጠረዥ ሜዳ እርዝመት ጋር"
#: 05030100.xhp
msgctxt ""
@@ -5157,7 +5157,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "In the data source explorer, you can copy a table by dragging and dropping the table onto the table container. The<emph> Type formatting </emph>dialog is the third window of the <emph>Copy table</emph> dialog."
-msgstr ""
+msgstr "የ ዳታ ምንጭ መቃኛ ውስጥ: እርስዎ ሰንጠረዥ በ መጎተት እና በ መጣል ኮፒ ማድረግ ይችላሉ ወደ ሰንጠረዥ ማጠራቀሚያ: የ <emph>አቀራረብ አይነት </emph>ንግግር በ ሶስተኛው መስኮት ነው የ <emph>ሰንጠረዥ ኮፒ ማድረጊያ</emph> ንግግር ውስጥ"
#: 05030300.xhp
msgctxt ""
@@ -5238,7 +5238,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "<ahelp hid=\"HID_TAB_ENT_LEN\">Enter the number of characters for the data field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_TAB_ENT_LEN\">ለ ዳታ ሜዳ የ ባህሪዎች ቁጥር ያስገቡ </ahelp>"
#: 05030300.xhp
msgctxt ""
@@ -5274,7 +5274,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "<ahelp hid=\"HID_TAB_ENT_BOOL_DEFAULT\">Select the default value for a Yes/No field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_TAB_ENT_BOOL_DEFAULT\">ይምረጡ ነባር ዋጋ ለ አዎ/አይ ሜዳ </ahelp>"
#: 05030300.xhp
msgctxt ""
@@ -5283,7 +5283,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "Automatic type recognition"
-msgstr ""
+msgstr "ራሱ በራሱ የሚጽፉትን ማስታወሻ"
#: 05030300.xhp
msgctxt ""
@@ -5328,7 +5328,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/typeselectpage/autobutton\">Enables automatic type recognition.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/typeselectpage/autobutton\">ራሱ በራሱ የሚጽፉትን ማስታወሻ ማስቻያ </ahelp>"
#: 05030400.xhp
msgctxt ""
@@ -5363,7 +5363,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "Source table"
-msgstr ""
+msgstr "የ ሰንጠረዥ ምንጭ"
#: 05030400.xhp
msgctxt ""
@@ -5408,7 +5408,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/namematchingpage/up_right\">Moves the selected entry up one position in the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/namematchingpage/up_right\">የ ተመረጠውን ማስገቢያ አንድ ደረጃ ወደ ላይ በ ዝርዝር ውስጥ ማንቀሳቀሻ</ahelp>"
#: 05030400.xhp
msgctxt ""
@@ -5426,7 +5426,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/namematchingpage/down_right\">Moves the selected entry down one position in the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/namematchingpage/down_right\">የ ተመረጠውን ማስገቢያ አንድ ደረጃ ወደ ታች በ ዝርዝር ውስጥ ማንቀሳቀሻ</ahelp>"
#: 05030400.xhp
msgctxt ""
@@ -5444,7 +5444,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/namematchingpage/all\">Selects all of the data fields in the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/namematchingpage/all\">ሁሉንም የ ዳታ ሜዳዎች ከ ዝርዝር ውስጥ መምረጫ </ahelp>"
#: 05030400.xhp
msgctxt ""
@@ -5462,7 +5462,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/namematchingpage/none\">Clears all of the check boxes in the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/namematchingpage/none\">ሁሉንም የ ምልክት ማድረጊያዎች ከ ዝርዝር ውስጥ ማጽጃ </ahelp>"
#: 05040000.xhp
msgctxt ""
@@ -5513,7 +5513,7 @@ msgctxt ""
"bm_id3152594\n"
"help.text"
msgid "<bookmark_value>access rights for database tables (Base)</bookmark_value><bookmark_value>tables in databases; access rights to (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>መድረሻ ፍቃድ ለ ዳታቤዝ ሰንጠረዥ (Base)</bookmark_value><bookmark_value>ሰንጠረዥ ዳታቤዝ ውስጥ; መድረሻ ፍቃድ ወደ (Base)</bookmark_value>"
#: 05040100.xhp
msgctxt ""
@@ -5522,7 +5522,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "If you are not the administrator, you can use the <emph>General</emph> tab to view your access rights for the selected table."
-msgstr ""
+msgstr "እርስዎ አስተዳዳሪ ካልሆኑ: እርስዎ መጠቀም ይችላሉ የ <emph>ባጠቃላይ</emph>tab የ እርስዎን ፍቃድ ለ መመልከት ለ ተመረጠው ሰንጠረዥ"
#: 05040100.xhp
msgctxt ""
@@ -5576,7 +5576,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "Displays the complete path of the database table."
-msgstr ""
+msgstr "የ ዳታቤዝ ሰንጠረዥ ሙሉ መንገድ ማሳያ"
#: 05040100.xhp
msgctxt ""
@@ -5657,7 +5657,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "Change table structure"
-msgstr ""
+msgstr "የ ሰንጠረዥ አካል መቀየሪያ"
#: 05040100.xhp
msgctxt ""
@@ -5666,7 +5666,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "<ahelp hid=\".\">Allows a user to change the table structure.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ተጠቃሚውን የ ሰንጠረዥ አካል መቀየሪያ ያስችለዋል</ahelp>"
#: 05040100.xhp
msgctxt ""
@@ -5684,7 +5684,7 @@ msgctxt ""
"23\n"
"help.text"
msgid "<ahelp hid=\".\">Allows the user to delete the table structure.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ተጠቃሚውን የ ሰንጠረዥ አካል ማጥፋት ያስችለዋል</ahelp>"
#: 05040100.xhp
msgctxt ""
@@ -5753,7 +5753,7 @@ msgctxt ""
"bm_id3155449\n"
"help.text"
msgid "<bookmark_value>databases;drag and drop (Base)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ዳታቤዞች;መጎተቻ እና መጣያ (Base)</bookmark_value>"
#: 11000002.xhp
msgctxt ""
@@ -5762,7 +5762,7 @@ msgctxt ""
"93\n"
"help.text"
msgid "<link href=\"text/shared/explorer/database/11000002.xhp\" name=\"Data sources in $[officename]\">Data sources in $[officename]</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/explorer/database/11000002.xhp\" name=\"Data sources in $[officename]\">የ ዳታ ምንጭ በ $[officename]</link>"
#: 11000002.xhp
msgctxt ""
@@ -5771,7 +5771,7 @@ msgctxt ""
"49\n"
"help.text"
msgid "Selecting the Address Book"
-msgstr ""
+msgstr "የ አድራሻ ደብተር በ መምረጥ ላይ"
#: 11000002.xhp
msgctxt ""
@@ -5780,7 +5780,7 @@ msgctxt ""
"101\n"
"help.text"
msgid "To select the address book that you want to use, choose <link href=\"text/shared/01/01110101.xhp\" name=\"Tools - Address Book Source\"><emph>Tools - Address Book Source</emph></link>."
-msgstr ""
+msgstr "እርስዎ መጠቀም የሚፈልጉትን የ አድራሻ ደብተር ለ መምረጥ: ይምረጡ <link href=\"text/shared/01/01110101.xhp\" name=\"Tools - Address Book Source\"><emph>መሳሪያዎች - የ አድራሻ ደብተር ምንጭ</emph></link>."
#: 11000002.xhp
msgctxt ""
@@ -5789,7 +5789,7 @@ msgctxt ""
"26\n"
"help.text"
msgid "Opening a Data Source"
-msgstr ""
+msgstr "የ ዳታ ምንጭ በ መክፈት ላይ"
#: 11000002.xhp
msgctxt ""
@@ -5798,7 +5798,7 @@ msgctxt ""
"102\n"
"help.text"
msgid "To open the data source view, press F4 in a text, spreadsheet or form document."
-msgstr ""
+msgstr "የ ዳታ ምንጭ መመልከቻ ለ መክፈት: ይጫኑ F4 በ ጽሁፍ: ሰንጠረዥ ወይንም ከ ሰነድ ውስጥ"
#: 11000002.xhp
msgctxt ""
@@ -5807,7 +5807,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "To view the contents of a database, click the plus sign (+) in front of the name in the data source view."
-msgstr ""
+msgstr "የ ዳታቤዝ ይዞታዎችን ለ መመልከት: ይጫኑ የ መደመሪያ ምልክት (+) ከ ስሙ ፊት ለ ፊት ያለውን ከ ዳታ ምንጭ መመልከቻ ውስጥ"
#: 11020000.xhp
msgctxt ""
@@ -5833,7 +5833,7 @@ msgctxt ""
"2\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 ""
+msgstr "<ahelp hid=\"\">ማሰናጃዎች መወሰኛ ለ <link href=\"text/shared/00/00000005.xhp#odbc\" name=\"ODBC\">ODBC</link> ዳታቤዞች: ይህ የ እርስዎን መድረሻ ዳታ ያካትታል: driver ማሰናጃዎች: እና የ ፊደል ትርጉሞች </ahelp>"
#: 11020000.xhp
msgctxt ""
@@ -5869,7 +5869,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "<ahelp hid=\".\">Prevents an unauthorized user from accessing the database. You only need to enter the password once per session.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ፍቃድ የሌላቸውን ተጠቃሚዎች ወደ ዳታቤዝ እንዳይደርሱ መከልከያ: እርስዎ የ መግቢያ ቃል አንድ ጊዜ በ ክፈለ ጊዜ ማስገባት አለብዎት</ahelp>"
#: 11020000.xhp
msgctxt ""
@@ -5878,7 +5878,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "Driver Settings"
-msgstr ""
+msgstr "Driver ማሰናጃዎች"
#: 11020000.xhp
msgctxt ""
@@ -5941,7 +5941,7 @@ msgctxt ""
"26\n"
"help.text"
msgid "Auto-increment statement"
-msgstr ""
+msgstr "በራሱ-መጨመሪያ አነጋገር"
#: 11020000.xhp
msgctxt ""
@@ -5959,7 +5959,7 @@ msgctxt ""
"28\n"
"help.text"
msgid "CREATE TABLE \"table1\" (\"id\" INTEGER)"
-msgstr ""
+msgstr "ሰንጠረዥ መፍጠሪያ \"ሰንጠረዥ1\" (\"id\" INTEGER)"
#: 11020000.xhp
msgctxt ""
@@ -5977,7 +5977,7 @@ msgctxt ""
"30\n"
"help.text"
msgid "CREATE TABLE \"table1\" (\"id\" INTEGER AUTO_INCREMENT)"
-msgstr ""
+msgstr "ሰንጠረዥ መፍጠሪያ \"ሰንጠረዥ1\" (\"id\" INTEGER በራሱ_መጨመሪያ)"
#: 11020000.xhp
msgctxt ""
@@ -5986,7 +5986,7 @@ msgctxt ""
"31\n"
"help.text"
msgid "In other words, enter AUTO_INCREMENT into <emph>Auto-increment statement</emph> box."
-msgstr ""
+msgstr "በ ሌላ አነጋገር: ያስገቡ በራሱ_መጨመሪያ ወደ <emph>በራሱ-መጨመሪያ አነጋገር</emph> ሳጥን ውስጥ"
#: 11020000.xhp
msgctxt ""
@@ -5995,7 +5995,7 @@ msgctxt ""
"32\n"
"help.text"
msgid "Query of generated values"
-msgstr ""
+msgstr "የ መነጩ ዋጋዎች ጥያቄ"
#: 11020000.xhp
msgctxt ""
@@ -6013,7 +6013,7 @@ msgctxt ""
"34\n"
"help.text"
msgid "SELECT LAST_INSERT_D();"
-msgstr ""
+msgstr "ይምረጡ መጨረሻ_የገባው_ን();"
#: 11020000.xhp
msgctxt ""
@@ -6057,7 +6057,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "dBASE"
-msgstr ""
+msgstr "ዳታቤዝ"
#: 11030000.xhp
msgctxt ""
@@ -6093,7 +6093,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "Display inactive records"
-msgstr ""
+msgstr "ንቁ ያልሆኑ መዝገቦች ማሳያ"
#: 11030000.xhp
msgctxt ""
@@ -6146,7 +6146,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbasepage/indiciesButton\">Opens the <link href=\"text/shared/explorer/database/11030100.xhp\" name=\"Indexes\"><emph>Indexes</emph></link> dialog, where you can organize the table indexes in the current dBASE database.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbasepage/indiciesButton\">መክፈቻ የ <link href=\"text/shared/explorer/database/11030100.xhp\" name=\"Indexes\"><emph>ማውጫዎች</emph></link> ንግግር: እርስዎ የሚያደራጁበት የ ሰንጠረዥ ማውጫ ለ አሁኑ ዳታቤዝ ዳታቤዝ</ahelp>"
#: 11030100.xhp
msgctxt ""
@@ -6190,7 +6190,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/table\">Select the database table that you want to index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/table\">ይምረጡ የ ሰንጠረዥ ዳታቤዝ እርስዎ ማውጫ መፍጠር የሚፈልጉትን </ahelp>"
#: 11030100.xhp
msgctxt ""
@@ -6235,7 +6235,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6244,7 +6244,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/add\">Moves the selected index to the <emph>Table Indexes</emph> list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/add\">የ ተመረጠውን ማውጫ ማንቀሳቀሻ ወደ <emph>ሰንጠረዥ ማውጫ</emph> ዝርዝር</ahelp>"
#: 11030100.xhp
msgctxt ""
@@ -6262,7 +6262,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free indexes to the <emph>Table Indexes</emph> list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">የ ተመረጡትን ሁሉንም ነፃ ማውጫ ማንቀሳቀሻ ወደ <emph>ሰንጠረዥ ማውጫ</emph> ዝርዝር</ahelp>"
#: 11030100.xhp
msgctxt ""
@@ -6271,7 +6271,7 @@ msgctxt ""
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -6280,7 +6280,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/remove\">Moves the selected table indexes to the <emph>Free Indexes</emph> list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/remove\">የ ተመረጡትን የ ሰንጠረዥ ማውጫዎች ማንቀሳቀሻ ወደ <emph>ነፃ ማውጫ</emph> ዝርዝር</ahelp>"
#: 11030100.xhp
msgctxt ""
@@ -6298,7 +6298,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/removeall\">Moves all of the table indexes to the <emph>Free Indexes</emph> list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/removeall\">የ ተመረጡትን ሁሉንም የ ሰንጠረዥ ማውጫ ማንቀሳቀሻ ወደ <emph>ነፃ ማውጫ</emph> ዝርዝር</ahelp>"
#: 11080000.xhp
msgctxt ""
@@ -6546,7 +6546,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/useradminpage/user\">Select the user whose settings you want to modify.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/useradminpage/user\">ተጠቃሚ ይምረጡ እርስዎ ማሰናጃውን ማሻሻል የሚፈልጉትን</ahelp>"
#: 11150200.xhp
msgctxt ""
@@ -6555,7 +6555,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "Add user"
-msgstr ""
+msgstr "ተጠቃሚ መጨመሪያ"
#: 11150200.xhp
msgctxt ""
@@ -6564,7 +6564,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/useradminpage/add\">Adds a new user for accessing the selected database.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/useradminpage/add\">አዲስ ተጠቃሚ መጨመሪያ እንዲደርስ ወደ ተመረጠው ዳታቤዝ ጋር </ahelp>"
#: 11150200.xhp
msgctxt ""
@@ -6573,7 +6573,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "Change password"
-msgstr ""
+msgstr "የ መግቢያ ቃል መቀየሪያ"
#: 11150200.xhp
msgctxt ""
@@ -6582,7 +6582,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/useradminpage/changepass\">Changes the current user password for accessing the database.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"dbaccess/ui/useradminpage/changepass\">የ አሁኑን ተጠቃሚ የ መግቢያ ቃል መቀየሪያ እንዲደርስ ወደ ዳታቤዝ ጋር </ahelp>"
#: 11150200.xhp
msgctxt ""
@@ -6609,7 +6609,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "Access rights for selected user."
-msgstr ""
+msgstr "ለ ተመረጠው ተጠቃሚ የ መድረሻ ፍቃድ"
#: 11150200.xhp
msgctxt ""
@@ -6680,7 +6680,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "Increment size"
-msgstr ""
+msgstr "የ ጭማሪ መጠን"
#: 11170000.xhp
msgctxt ""
@@ -6734,7 +6734,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "Shut down the service when closing $[officename]"
-msgstr ""
+msgstr "ግልጋሎቱን መዝጊያ በሚዘጋ ጊዜ $[officename]"
#: 11170000.xhp
msgctxt ""
@@ -6752,7 +6752,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "Extended"
-msgstr ""
+msgstr "የ ተስፋፉ"
#: 11170000.xhp
msgctxt ""
@@ -6769,7 +6769,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Database Statistics"
-msgstr ""
+msgstr "የ ዳታቤዝ Statistics"
#: 11170100.xhp
msgctxt ""
@@ -6778,7 +6778,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "Database Statistics"
-msgstr ""
+msgstr "የ ዳታቤዝ Statistics"
#: 11170100.xhp
msgctxt ""
@@ -7001,7 +7001,7 @@ msgctxt ""
"39\n"
"help.text"
msgid "Choose <emph>File - New - Database</emph> to open the Database Wizard."
-msgstr ""
+msgstr "ይምረጡ <emph>ፋይል - አዲስ - ዳታቤዝ</emph> ለ መክፈት የ ዳታቤዝ አዋቂ"
#: 30000000.xhp
msgctxt ""
@@ -7162,7 +7162,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "<ahelp hid=\"HID_DLG_ADABAS_DOMAINPWD\">Enter a password.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_DLG_ADABAS_DOMAINPWD\">የ መግቢያ ቃል ያስገቡ</ahelp>"
#: 30100000.xhp
msgctxt ""
@@ -7171,7 +7171,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "Database settings"
-msgstr ""
+msgstr "የ ዳታቤዝ ማሰናጃዎች"
#: 30100000.xhp
msgctxt ""
@@ -7397,7 +7397,7 @@ msgctxt ""
"par_id7679372\n"
"help.text"
msgid "In a database window, choose <emph>Edit - Database - Advanced Settings</emph>"
-msgstr ""
+msgstr "ከ ዳታቤዝ መስኮት ውስጥ ይምረጡ <emph>ማረሚያ - ዳታቤዝ - የ ረቀቁ ማሰናጃዎች </emph>"
#: dabaadvpropdat.xhp
msgctxt ""
@@ -7477,7 +7477,7 @@ msgctxt ""
"par_idN105A5\n"
"help.text"
msgid "Use Outer Join syntax '{OJ }'"
-msgstr ""
+msgstr "ይጠቀሙ የ ውጭ ማገናኛ አገባብ ለ '{OJ }'"
#: dabaadvpropdat.xhp
msgctxt ""
@@ -7525,7 +7525,7 @@ msgctxt ""
"par_idN105CB\n"
"help.text"
msgid "Replace named parameters with ?"
-msgstr ""
+msgstr "የ ተሰየሙ ደንቦችን ልቀይር በ ?"
#: dabaadvpropdat.xhp
msgctxt ""
@@ -7533,7 +7533,7 @@ msgctxt ""
"par_idN105CF\n"
"help.text"
msgid "<ahelp hid=\".\">Replaces named parameters in a data source with a question mark (?).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ተሰየሙ ደንቦችን መቀየሪያ ከ ዳታ ምንጭ ውስጥ በ ጥያቄ ምልክት (?).</ahelp>"
#: dabaadvpropdat.xhp
msgctxt ""
@@ -7557,7 +7557,7 @@ msgctxt ""
"par_idN105FA\n"
"help.text"
msgid "Use the catalog name in SELECT statements"
-msgstr ""
+msgstr "የ መዝገብ ስም ይጠቀሙ በ መምረጫ አነጋገር"
#: dabaadvpropdat.xhp
msgctxt ""
@@ -7589,7 +7589,7 @@ msgctxt ""
"par_idN1061A\n"
"help.text"
msgid "Create index with ASC or DESC statement"
-msgstr ""
+msgstr "ማውጫ መፍጠሪያ እየጨመረ ወይንም እየቀነሰ በሚሄድ አሰራር"
#: dabaadvpropdat.xhp
msgctxt ""
@@ -7597,7 +7597,7 @@ msgctxt ""
"par_idN1061E\n"
"help.text"
msgid "<ahelp hid=\".\">Creates an index with ASC or DESC statements.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ማውጫ መፍጠሪያ እየጨመረ ወይንም እየቀነሰ በሚሄድ አሰራር </ahelp>"
#: dabaadvpropdat.xhp
msgctxt ""
@@ -7621,7 +7621,7 @@ msgctxt ""
"hd_id1101718\n"
"help.text"
msgid "Form data input checks for required fields"
-msgstr ""
+msgstr "ለሚፈለጉት ሜዳዎች የ ዳታ ማስገቢያ ፎርም መመርመሪያ"
#: dabaadvpropdat.xhp
msgctxt ""
@@ -7685,7 +7685,7 @@ msgctxt ""
"hd_id04092009442139524\n"
"help.text"
msgid "Supports primary keys"
-msgstr ""
+msgstr "ቀዳሚ ቁልፍ ይደግፋል"
#: dabaadvpropdat.xhp
msgctxt ""
@@ -7725,7 +7725,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Generated Values"
-msgstr ""
+msgstr "የ መነጩ ዋጋዎች"
#: dabaadvpropgen.xhp
msgctxt ""
@@ -7773,7 +7773,7 @@ msgctxt ""
"par_idN10593\n"
"help.text"
msgid "Auto-increment statement"
-msgstr ""
+msgstr "በራሱ-መጨመሪያ አነጋገር"
#: dabaadvpropgen.xhp
msgctxt ""
@@ -12418,12 +12418,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr "<ahelp hid=\".\">አዲስ የረድፍ መቆጣጠሪያዎች መጨመሪያ</ahelp>"
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14442,12 +14443,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr ""
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress/01.po b/source/am/helpcontent2/source/text/simpress/01.po
index 74d845e6f2a..f4d240a408a 100644
--- a/source/am/helpcontent2/source/text/simpress/01.po
+++ b/source/am/helpcontent2/source/text/simpress/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: 2015-11-16 19:02+0100\n"
-"PO-Revision-Date: 2016-02-28 17:35+0000\n"
-"Last-Translator: Samson B <sambelet@yahoo.com>\n"
+"PO-Revision-Date: 2016-03-03 18:18+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456680927.000000\n"
+"X-POOTLE-MTIME: 1457029087.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -7581,7 +7581,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/vectorize/fillholes\">Fills the color gaps caused by applying a point reduction.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/vectorize/fillholes\">ነጥብ በሚቀንሱ ጊዜ ለ ተፈጸመው ክፍተት ቀለም መሙያ</ahelp>"
#: 13050200.xhp
msgctxt ""
@@ -7838,7 +7838,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "You can also copy the selected object and choose <emph>Edit - Paste Special </emph>and select the bitmap format from the list."
-msgstr ""
+msgstr "እርስዎ የተመረጠውን እቃ ኮፒ ማድረግ ይችላሉ እና ከዛ ይምረጡ <emph>ማረሚያ - የተለየ መለጠፊያ </emph>እና ከዛ ይምረጡ የ bitmap አቀራረብ ከ ዝርዝር ውስጥ"
#: 13050600.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/01.po b/source/am/helpcontent2/source/text/swriter/01.po
index 462f27b89e5..02e8f534421 100644
--- a/source/am/helpcontent2/source/text/swriter/01.po
+++ b/source/am/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2016-02-24 17:10+0000\n"
+"PO-Revision-Date: 2016-03-04 01:10+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456333813.000000\n"
+"X-POOTLE-MTIME: 1457053807.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -4355,7 +4355,7 @@ msgctxt ""
"par_idN108E3\n"
"help.text"
msgid "You see this area of the dialog when the current document is an XForms document."
-msgstr ""
+msgstr "ለ እርስዎ ይህ የ ንግግር ቦታ ይታያል የ አሁኑ ሰነድ የ XForms ሲሆን"
#: 04020100.xhp
msgctxt ""
@@ -9935,7 +9935,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "Returns TRUE if the current entry in the COMPANY field is not \"Sun\". (Exclamation sign represents a logical NOT.)"
-msgstr ""
+msgstr "ይመልሳል እውነት የ አሁኑ ማስገቢያ ለ ድርጅቱ ሜዳ ካልሆነ \"ፀሐይ\": (የ ቃለ አጋኖ ምልክት የሚወክለው logical NOT. ነው)"
#: 04090200.xhp
msgctxt ""
@@ -9962,7 +9962,7 @@ msgctxt ""
"53\n"
"help.text"
msgid "Note the difference between the boolean NOT \"!\" and the comparative operator not equal \"!=\" (NEQ)."
-msgstr ""
+msgstr "በ ሁለቱ መካከል ልዩነቱን ያስታውሱ boolean NOT \"!\" እና የ አንቀሳቃሽ ማወዳደሪያ እኩል አይደለም \"!=\" (NEQ)."
#: 04090200.xhp
msgctxt ""
@@ -9971,7 +9971,7 @@ msgctxt ""
"54\n"
"help.text"
msgid "When you refer to a database field in a condition, use the form Databasename.Tablename.Fieldname. If one of the names contains a character that is an operator, such as a minus sign (-), enclose the name in square brackets, for example, Databasename.[Table-name].Fieldname. Never use spaces inside field names."
-msgstr ""
+msgstr "እርስዎ በሚያመሳክሩ ጊዜ ወደ ዳታቤዝ ሜዳ በ ሁኔታ ውስጥ: ይጠቀሙ ፎርም ዳታቤዝ ስም:ሰንጠረዥ ስም:ሜዳ ስም: አንዱ ስም ባህሪ ከያዘ የ አንቀሳቃሽ: እንደ መቀነስ ምልክት (-) ስሙን በ ስኴር ቅንፎች ውስጥ ይክበቡ ለምሳሌ: ዳታቤዝ ስም[ሰንጠረዥ -ስም].ሜዳ ስም: በ ሜዳ ስሞች መካከል ክፍተት በፍጹም አይጠቀሙ"
#: 04090200.xhp
msgctxt ""
@@ -12266,7 +12266,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "The <emph>Structure </emph>line defines how the entries in the index are composed. To change the appearance of an entry you can enter codes or text in the empty boxes on this line. You can also click in an empty box or on a code, and then click a code button."
-msgstr ""
+msgstr "የ <emph>አካል </emph>መስመር የሚገልጸው በ ማውጫ ውስጥ ማስገቢያዎች እንዴት እንደሚሰንሰናዱ ነው: አቀራረቡን ለ መቀየር ማስገቢያውን እርስዎ ኮድ ማስገባት ይችላሉ ወይንም ጽሁፍ ወደ ባዶ ሳጥኖች በዚህ መስመር ላይ: እርስዎ እንዲሁም መጫን ይችላሉ በ ባዶ ሳጥን ወይንም ኮድ ላይ እና ከዛ ይጫኑ የ ኮድ ቁልፍ"
#: 04120221.xhp
msgctxt ""
@@ -12356,7 +12356,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/tabstop\">Inserts a tab stop. To add leader dots to the tab stop, select a character in the <emph>Fill character box</emph>. To change the position of the tab stop, enter a value in the <emph>Tab stop position </emph>box, or select the <emph>Align right </emph>check box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/tabstop\">የ ማስረጊያ ማስቆሚያ: ቀዳሚ ነጥቦች ለ መጨመር ወደ ማስረጊያ ማስቆሚያ: ይምረጡ ባህሪ በ <emph>ባህሪ መሙያ ሳጥን ውስጥ </emph> የ ማስረጊያ ማስቆሚያ ቦታ ለ መቀየር: ዋጋ ያስገቡ በ <emph>ማስረጊያ ማስቆሚያ ቦታ </emph>ሳጥን ውስጥ: ወይንም ይምረጡ የ <emph>በ ቀኝ ማሰለፊያ </emph>ሳጥን ውስጥ ምልክት ያድርጉ</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -12526,7 +12526,7 @@ msgctxt ""
"33\n"
"help.text"
msgid "Tab position relative to Paragraph Style indent"
-msgstr ""
+msgstr "የ ማስረጊያ ቦታ ከ አንቀጽ ዘዴ ማስረጊያ አንጻር"
#: 04120221.xhp
msgctxt ""
@@ -12535,7 +12535,7 @@ msgctxt ""
"34\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/reltostyle\">Positions the tab stop relative to the \"indent from left\" value defined in the paragraph style selected on the <emph>Styles</emph> tab. Otherwise the tab stop is positioned relative to the left text margin.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/reltostyle\">የ ማስረጊያ ማስቆሚያ ቦታ ከ \"በ ግራ ማስረጊያ\" ዋጋ አንጻር ነው የሚገለጸው: በ ተመረጠው የ አንቀጽ ዘዴ ውስጥ: በ <emph>ዘዴዎች</emph> ማስረጊያ ውስጥ: ያለበለዚያ የ ማስረጊያ ማስቆሚያ ቦታ በ ግራ የ ጽሁፍ መስመር አንጻር ነው</ahelp>"
#: 04120222.xhp
msgctxt ""
@@ -12622,7 +12622,7 @@ msgctxt ""
"par_id6739402\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the maximum hierarchy level down to which objects are shown in the generated index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ያስገቡ ከፍተኛ ቅደም ተከተል ደረጃ እስከ ታች የሚታዩት እቃዎች ድረስ በ ማውጫ ማመንጫው ውስጥ </ahelp>"
#: 04120222.xhp
msgctxt ""
@@ -12640,7 +12640,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/mainstyle\">Specify the formatting style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose <emph>Edit - </emph><link href=\"text/swriter/01/04120100.xhp\" name=\"Index Entry\"><emph>Index Entry</emph></link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/mainstyle\">መወሰኛ የ አቀራረብ ዘዴ ለ ዋናው ማስገቢያ በ ፊደል ቅደም ተከተል ማውጫ: በ ዋናው ማስገቢያ የ ማውጫ ማስገቢያ ለ መቀይር: ይጫኑ ከ ማውጫ ሜዳ ፊት ለ ፊት በ ሰነድ ውስጥ እና ከዛ ይምረጡ <emph>ማረሚያ - </emph><link href=\"text/swriter/01/04120100.xhp\" name=\"Index Entry\"><emph> ማውጫ ማስገቢያ</emph></link>.</ahelp>"
#: 04120222.xhp
msgctxt ""
@@ -12967,7 +12967,7 @@ msgctxt ""
"15\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/sortcontents\">Sorts the bibliography entries by the Sort keys that you specify, for example, by author or by year of publication.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/sortcontents\">መለያ በ bibliography ማስገቢያ በ መለያ ቁልፎች እርስዎ በወሰኑት: ለምሳሌ: በ ደራሲው ወይንም በ ታተመበት አመት </ahelp>"
#: 04120227.xhp
msgctxt ""
@@ -12994,7 +12994,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/key3lb\">Select the entry by which to sort the bibliography entries. This option is only available if you select the <emph>Content</emph> radio button in the <emph>Sort by</emph> area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/key3lb\">ይምረጡ ማስገቢያ የሚለይበት bibliography ማስገቢያ: ይህ ምርጫ ዝግጁ የሚሆነው እርስዎ ሲመርጡ ነው የ <emph>ይዞታ</emph> ራዲዮ ቁልፍ በ <emph>መለያ በ</emph> ቦታ</ahelp>"
#: 04120227.xhp
msgctxt ""
@@ -13179,7 +13179,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "To access the Edit Concordance File dialog:"
-msgstr ""
+msgstr "በ ፊደል ቅደም ተከተል ፋይል ንግግር ለ ማረም መድረሻ:"
#: 04120250.xhp
msgctxt ""
@@ -13242,7 +13242,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "\"Alternative entry\" refers to the index entry that you want to appear in the index."
-msgstr ""
+msgstr "\"አማራጭ ማስገቢያ\" የሚያመሳክረው የ ማውጫ ማስገቢያ ነው እርስዎ በ ማውጫ ላይ እንዲታይ የሚፈልጉትን"
#: 04120250.xhp
msgctxt ""
@@ -13287,7 +13287,7 @@ msgctxt ""
"25\n"
"help.text"
msgid "To create a concordance file without the Edit Concordance File dialog:"
-msgstr ""
+msgstr "ፋይል በ ፊደል ቅደም ተከተል ለ መፍጠር ያለ ማረሚያ በ ፊደል ቅደም ተከተል ንግግር:"
#: 04120250.xhp
msgctxt ""
@@ -13296,7 +13296,7 @@ msgctxt ""
"9\n"
"help.text"
msgid "Use the following format guidelines when you create a concordance file:"
-msgstr ""
+msgstr "ይህን የ አቀራረብ መምሪያ ይጠቀሙ እርስዎ በ ፊደል ቅደም ተከተል ፋይል በሚፈጥሩ ጊዜ:"
#: 04120250.xhp
msgctxt ""
@@ -13305,7 +13305,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "Each entry in the concordance file is on a separate line."
-msgstr ""
+msgstr "እያንዳንዱ ማስገቢያ በ ፊደል ቅደም ተከተል ፋይል በ ተለየ መስመር ላይ ነው:"
#: 04120250.xhp
msgctxt ""
@@ -13475,7 +13475,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "When you save a document that contains bibliography entries, the corresponding records are automatically saved in a hidden field in the document."
-msgstr ""
+msgstr "እርስዎ ሰነድ ሲያስቀምጡ የ bibliography ማስገቢያዎች የያዘ: ተመሳሳይ መዝገብ ራሱ በራሱ ይቀመጣል በ ተደበቀ ሜዳ በ ሰነድ ውስጥ"
#: 04120300.xhp
msgctxt ""
@@ -13618,7 +13618,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"rahm\"><ahelp hid=\".uno:InsertFrame\">Inserts a frame that you can use to create a layout of one or more columns of text and objects.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"rahm\"><ahelp hid=\".uno:InsertFrame\">እርስዎ አንድ ወይንም ተጨማሪ አምዶች ለ ጽሁፍ እና እቃዎች ማስገቢያ ክፈፍ እቅድ ለ መፍጠር የሚጠቀሙበት </ahelp></variable>"
#: 04130000.xhp
msgctxt ""
@@ -13663,7 +13663,7 @@ msgctxt ""
"26\n"
"help.text"
msgid "You can also preview the effects when you change the frame anchor to \"As Character\". The \"Baseline\" is drawn in red, \"Character\" is the font height, and \"line\" is the height of the line, including the frame."
-msgstr ""
+msgstr "እርስዎ እንዲሁም በ ቅድመ እይታ ውጤቶችን መመልከት ይችላሉ እርስዎ ሲቀይሩ የ ክፈፍ ማስቆሚያዎችን ወደ \"እንደ ባህሪዎ\" የ \"መሰረታዊ መስመር\" በ ቀይ ቀለም ይሳላል: \"ባህሪ\" የ ፊደል እርዝመት ነው: እና \"መስመር\" የ መስመር እርዝመት ነው: ክፈፍንም ያካትታል"
#: 04130000.xhp
msgctxt ""
@@ -13724,7 +13724,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "To move a selected frame or object, press an arrow key. To move by one pixel, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>, and then press an arrow key."
-msgstr ""
+msgstr "የ ተመረጠውን ክፈፍ ወይንም እቃ ለ ማንቀሳቀስ: ይጫኑ የ ቀስት ቁልፍ: ለ ማንቀሳቀስ በ አንድ ፒክስል: ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline> እና ከዛ ይጫኑ የ ቀስት ቁልፍ"
#: 04130100.xhp
msgctxt ""
@@ -13733,7 +13733,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "To resize a selected frame or object, first press Ctrl+Tab. Now one of the handles blinks to show that it is selected. To select another handle, press Ctrl+Tab again. Press an arrow key to resize the object by one grid unit. To resize by one pixel, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>, and then press an arrow key."
-msgstr ""
+msgstr "እንደገና ለ መመጠን የ ተመረጠውን ክፈፍ ወይንም እቃ: መጀመሪያ ይጫኑ Ctrl+Tab. አሁን አንዱ እጄታ ብልጭ ድርግም ይላል መመረጡን ለማሳየት: ሌላ እጄታ ለ መምረጥ: ይጫኑ Ctrl+Tab እንደገና: ይጫኑ የ ቀስት ቁልፍ እቃውን እንደገና ለ መመጠን በ አንድ መጋጠሚያ ነጥብ መለኪያ: እቃውን እንደገና ለ መመጠን በ አንድ ፒክስል ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline> እና ከዛ ይጫኑ የ ቀስት ቁልፍ"
#: 04130100.xhp
msgctxt ""
@@ -13742,7 +13742,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "The increment by which you move an object with the keyboard is determined by the document grid. To change the properties of the document grid, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01050100.xhp\" name=\"Text document - Grid\">%PRODUCTNAME Writer - Grid</link></emph>."
-msgstr ""
+msgstr "እርስዎ እቃ የሚያንቀሳቅሱበት ጭማሪ በ ፊደል ገበታ የ ተወሰነው በ ሰነድ መጋጠሚያ ነው: የ ሰነድ መጋጠሚያ ባህሪ ለ መቀየር: ይምረጡ <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - ምርጫዎች</caseinline><defaultinline>መሳሪያዎች – ምርጫ</defaultinline></switchinline> - <link href=\"text/shared/optionen/01050100.xhp\" name=\"Text document - Grid\">%PRODUCTNAME መጻፊያ - መጋጠሚያ</link></emph>."
#: 04150000.xhp
msgctxt ""
@@ -13768,7 +13768,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"tabelletext\"><ahelp hid=\".uno:InsertTable\">Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"tabelletext\"><ahelp hid=\".uno:InsertTable\">ሰንጠረዥ ወደ ሰነድ ውስጥ ማስገቢያ: እርስዎ እንዲሁም መጫን ይችላሉ የ ቀስት ቁልፎች: ይጎትቱ ለ መምረጥ የ ረድፎች እና አምዶች ቁጥር በ ሰንጠረዥ ውስጥ ለማካተት: እና ከዛ ይጫኑ በ መጨረሻው ክፍል ላይ</ahelp></variable>"
#: 04150000.xhp
msgctxt ""
@@ -13929,7 +13929,7 @@ msgctxt ""
"44\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/inserttable/repeatcb\">Repeats the heading of the table at the top of subsequent page if the table spans more than one page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/inserttable/repeatcb\">የ ሰንጠረዥ ራስጌ መድገሚያ በ ነበረው ገጽ ላይ ከ ላይ በኩል ሰንጠረዡ ከ አንድ ገጽ በላይ በሚሆን ጊዜ</ahelp>"
#: 04150000.xhp
msgctxt ""
@@ -14017,7 +14017,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "On the Insert toolbar, click the <emph>Table</emph> icon to open the <emph>Insert Table</emph> dialog, where you can insert a table in the current document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
-msgstr ""
+msgstr "በ እቃ መደርደሪያ ማስገቢያ ላይ: ይጫኑ የ <emph>ሰንጠረዥ</emph>ምልክት ለ መክፈት የ <emph>ሰንጠረዥ ማስገቢያ</emph>ንግግር: እርስዎ ሰንጠረዥ ወደ አሁኑ ሰነ የሚያስገቡበት: እርስዎ እንዲሁም ቀስት መጫን ይችላሉ: ይጎትቱ ለ መምረጥ የ ረድፎች እና አምዶች ቁጥር በ ሰንጠረዥ ውስጥ ለማካተት: እና ከዛ ይጫኑ በ መጨረሻው ክፍል ላይ"
#: 04150000.xhp
msgctxt ""
@@ -14067,7 +14067,7 @@ msgctxt ""
"par_id3156384\n"
"help.text"
msgid "<variable id=\"datenbankaustext\"><ahelp hid=\".uno:ChangeDatabaseField\">Change the data sources for the current document.</ahelp> To correctly display the contents of inserted fields, the replacement database must contain identical field names. </variable>"
-msgstr ""
+msgstr "<variable id=\"datenbankaustext\"><ahelp hid=\".uno:ChangeDatabaseField\">ለ አሁኑ ሰነድ የ ዳታ ምንጭ መቀየሪያ </ahelp> የ ገቡትን ሜዳዎች ይዞታዎች በ ትክክል ለማሳየት: የ ተቀየረው ዳታቤዝ ተመሳሳይ ስም መያዝ አለበት </variable>"
#: 04180400.xhp
msgctxt ""
@@ -14075,7 +14075,7 @@ msgctxt ""
"par_id3153818\n"
"help.text"
msgid "For example, if you inserting address fields in a form letter from an address database, you can then exchange the database with another address database to insert different addresses."
-msgstr ""
+msgstr "ለምሳሌ: እርስዎ የ አድራሻ ሜዳዎች የሚያስገቡ ከሆነ በ ፎርም ደብዳቤ ውስጥ ከ አድራሻ ዳታቤዝ ውስጥ: እርስዎ መቀያየር ይችላሉ የ ዳታቤዝ ከ ሌላ የ አድራሻ ዳታቤዝ ውስጥ የ ተእየ አድራሻ ለማስገባት"
#: 04180400.xhp
msgctxt ""
@@ -14091,7 +14091,7 @@ msgctxt ""
"par_id3154651\n"
"help.text"
msgid "You can only change one database at a time in this dialog."
-msgstr ""
+msgstr "እርስዎ መቀየር የሚችሉት አንድ ዳታቤዝ ነው በ አንድ ጊዜ በዚህ ንግግር ውስጥ"
#: 04180400.xhp
msgctxt ""
@@ -14107,7 +14107,7 @@ msgctxt ""
"par_id3149053\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/exchangedatabases/inuselb\">Lists the databases that are currently in use.</ahelp> The current document contains at least one data field from each of the databases in the list."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/exchangedatabases/inuselb\">አሁን እየተጠቀሙ ያሉት ዳታቤዝ ዝርዝር </ahelp> የ አሁኑ ሰነድ ቢያንስ አንድ የ ዳታ ሜዳ ከ እያንዳንዱ ዳታቤዝ ውስጥ ይዟል"
#: 04180400.xhp
msgctxt ""
@@ -14155,7 +14155,7 @@ msgctxt ""
"par_id3145827\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/exchangedatabases/define\">Replaces the current data source with the data source that you selected in the <emph>Available Databases </emph>list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/exchangedatabases/define\">የ አሁኑን ዳታ ምንጭ መቀየሪያ እርስዎ በ መረጡት የ ዳታ ምንጭ በ <emph>ዝግጁ ዳታቤዝ </emph>ዝርዝር</ahelp>"
#: 04180400.xhp
msgctxt ""
@@ -14171,7 +14171,7 @@ msgctxt ""
"par_id3149881\n"
"help.text"
msgid "Ensure that both databases contain matching field names and field types."
-msgstr ""
+msgstr "እርግጠኛ ይሁኑ ሁለቱም ዳታቤዝ ተመሳሳይ የ ሜዳ ስም እና የ ሜዳ አይነቶች መያዛቸውን"
#: 04180400.xhp
msgctxt ""
@@ -14245,7 +14245,7 @@ msgctxt ""
"par_idN105BD\n"
"help.text"
msgid "To always have the latest version of the contents of a file, insert a section into your document, and then insert a link to the text file in the section. See <link href=\"text/swriter/01/04020100.xhp\">insert a section</link> for details."
-msgstr ""
+msgstr "ሁልጊዜ የ ፋይል ይዞታዎች ዘመናዊ እትም እንዲኖሮት: ወደ እርስዎ ሰነድ ውስጥ ምርጫ ያስገቡ: እና ከዛ አገናኝ ያስገቡ ወደ ጽሁፍ ፋይል ምርጫ: ይህን ይመልከቱ <link href=\"text/swriter/01/04020100.xhp\">ክፍል ማስገቢያ </link> ለ ዝርዝር"
#: 04200000.xhp
msgctxt ""
@@ -14271,7 +14271,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"scripttext\"><ahelp hid=\".uno:InsertScript\">Inserts a script at the current cursor position in an HTML or text document.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"scripttext\"><ahelp hid=\".uno:InsertScript\">script ማስገቢያ መጠቆሚያው አሁን ባለበት ቦታ በ HTML ወይንም የ ጽሁፍ ሰነድ ውስጥ </ahelp></variable>"
#: 04200000.xhp
msgctxt ""
@@ -14289,7 +14289,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "If your document contains more than one script, the <emph>Edit Script</emph> dialog contains previous and next buttons to jump from script to script."
-msgstr ""
+msgstr "የ እርስዎ ሰነድ ከ አንድ በላይ script ከያዘ: የ <emph>script ማረሚያ </emph>ንግግር የያዛቸው ያለፈው እና ወደሚቀጥለው ቁልፎች መዝለያ ነው ከ script ወደ script"
#: 04200000.xhp
msgctxt ""
@@ -14332,7 +14332,7 @@ msgctxt ""
"10\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/insertscript/scripttype\">Enter the type of script that you want to insert.</ahelp> The script is identified in the HTML source code by the tag <SCRIPT LANGUAGE=\"JavaScript\">."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/insertscript/scripttype\">እርስዎ ማስገባት የሚፈልጉትን አይነት script ያስገቡ</ahelp>ይህ script የሚለየው በ HTML ኮድ ምንጭ በ tag ነው<SCRIPT LANGUAGE=\"JavaScript\">."
#: 04200000.xhp
msgctxt ""
@@ -14350,7 +14350,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/insertscript/urlentry\">Adds a link to a script file. Click the <emph>URL </emph>radio button, and then enter the link in the box. You can also click the browse button (<emph>...</emph>), locate the file, and then click <emph>Insert</emph>.</ahelp> The linked script file is identified in the HTML source code by the following tags:"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/insertscript/urlentry\">ወደ script ፋይል አገናኝ መጨመሪያ: ይጫኑ የ <emph>URL </emph>ሬዲዮ ቁልፍ: እና ከዛ ያስገቡ አገናኝ በ ሳጥን ውስጥ: እርስዎ እንዲሁም መጫን ይችላሉ የ መቃኛ ቁልፍ (<emph>...</emph>), ፋይሉን ፈልገው ያግኙ: እና ከዛ ይጫኑ <emph>ማስገቢያ</emph>.</ahelp> የ ተገናኘ script ፋይል የሚለየው በ HTML ኮድ ምንጭ በሚቀጥለው tags ነው:"
#: 04200000.xhp
msgctxt ""
@@ -14439,7 +14439,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertPageHeader\">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 ""
+msgstr "<ahelp hid=\".uno:InsertPageHeader\">በ ገጽ ዘዴ ውስጥ ራስጌ መጨመሪያ ወይንም ማስወገጃ እርስዎ የ መረጡትን ከ ንዑስ ዝርዝር ውስጥ: ራስጌው ወደ ሁሉም ገጾች ይጨመራል ተመሳሳይ የ ገጽ ዘዴ ለሚጠቀሙ በሙሉ </ahelp>በ አዲስ ሰነድ ውስጥ: ብቻ የ \"ነባር\" ገጽ ዘዴ ይዘረዘራል: ሌሎች የ ገጽ ዘዴዎች የሚጨመሩት ወደ ዝርዝር እርስዎ ሰነድ ላይ ከ ፈጸሙ በኋላ ነው"
#: 04220000.xhp
msgctxt ""
@@ -14509,7 +14509,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertPageFooter\">Adds or removes a footer from the page style that you select in the submenu. The footer 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 ""
+msgstr "<ahelp hid=\".uno:InsertPageFooter\">በ ገጽ ዘዴ ውስጥ ግርጌ መጨመሪያ ወይንም ማስወገጃ እርስዎ የ መረጡትን ከ ንዑስ ዝርዝር ውስጥ: ግርጌው ወደ ሁሉም ገጾች ይጨመራል ተመሳሳይ የ ገጽ ዘዴ ለሚጠቀሙ በሙሉ </ahelp>በ አዲስ ሰነድ ውስጥ: ብቻ የ \"ነባር\" ገጽ ዘዴ ይዘረዘራል: ሌሎች የ ገጽ ዘዴዎች የሚጨመሩት ወደ ዝርዝር እርስዎ ሰነድ ላይ ከ ፈጸሙ በኋላ ነው"
#: 04230000.xhp
msgctxt ""
@@ -14579,7 +14579,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "Inserts a field at the current cursor position. The submenu lists the most common field types. To view all of the available fields, choose <emph>Other</emph>."
-msgstr ""
+msgstr "መጠቆሚያው አሁን ባለበት ቦታ ሜዳ ማስገቢያ: የ ንዑስ ዝርዝር ዝርዝሮች የ ተለመደ የ ሜዳ አይነቶች ናቸው: ሁሉንም ዝግጁ የሆኑ ሜዳዎች ለ መመልከት: ይምረጡ <emph>ሌሎች</emph>"
#: 04990000.xhp
msgctxt ""
@@ -15407,7 +15407,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "You can select from predefined column layouts, or create your own. When you apply a layout to a page style, all pages that use the style are updated. Similarly, when you apply a column layout to a frame style, all frames that use that style are updated. You can also change the column layout for a single frame."
-msgstr ""
+msgstr "እርስዎ መምረጥ ይችላሉ በ ቅድሚያ የ ተወሰኑ የ አምድ እቅዶች: እርስዎ እቅድ ወደ ገጽ ዘዴ በሚፈጽሙ ጊዜ: ሁሉም ገጾች ዘዴውን የሚጠቀሙ ይሻሻላሉ: በ ተመሳሳይ ጊዜ: እርስዎ በሚፈጽሙ ጊዜ የ አምድ እቅድ ወደ ክፈፍ ዘዴ ውስጥ: ሁሉም ክፈፎች ዘዴውን የሚጠቀሙ ይሻሻላሉ: እርስዎ የ አምድ እቅድ ለ ነጠላ ክፈፍ መቀየር ይችላሉ"
#: 05040500.xhp
msgctxt ""
@@ -16032,7 +16032,7 @@ msgctxt ""
"11\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/footnotesendnotestabpage/ftnntattextend\" visibility=\"visible\">Adds footnotes at the end of the section. If the section spans more than one page, the footnotes are added to the bottom of the page on which the footnote anchors appear.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/footnotesendnotestabpage/ftnntattextend\" visibility=\"visible\">ከ ክፍሉ መጨረሻ በኩል የ ግርጌ ማስታወሻ መጨመሪያ: ክፍሉ ከ አንድ ገጽ በላይ በሚሆን ጊዜ: የ ግርጌ ማስታወሻ ከ ገጹ በ ታች በኩል ይጨመራል ከዛ የ ግርጌ ማስታወሻ ማስቆሚያ ይታያል</ahelp>"
#: 05040700.xhp
msgctxt ""
@@ -16309,7 +16309,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "<ahelp hid=\".\">Adds a text grid to the current page style. This option is only available if Asian language support is enabled under <emph>Language Settings - Languages</emph> in the Options dialog box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ወደ አሁኑ የ ገጽ ዘዴ ውስጥ የ ጽሁፍ መጋጠሚያ መጨመሪያ: ይህ ምርጫ ዝግጁ የሚሆነው የ እሲያ ቋንቋ ድጋፍ ሲያስችሉ ነው በ <emph> ቋንቋ ማሰናጃዎች - ቋንቋዎች</emph> በ ምርጫ ንግግር ሳጥን ውስጥ</ahelp>"
#: 05040800.xhp
msgctxt ""
@@ -16584,7 +16584,7 @@ msgctxt ""
"hd_id3154647\n"
"help.text"
msgid "Relative width relation"
-msgstr ""
+msgstr "አንፃራዊ የ ስፋት ግንኙነት"
#: 05060100.xhp
msgctxt ""
@@ -16636,7 +16636,7 @@ msgctxt ""
"hd_id3154648\n"
"help.text"
msgid "Relative height relation"
-msgstr ""
+msgstr "አንፃራዊ የ ስፋት ግንኙነት"
#: 05060100.xhp
msgctxt ""
@@ -16662,7 +16662,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/frmtypepage/ratio\">Maintains the height and width ratio when you change the width or the height setting.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/frmtypepage/ratio\">የ እርዝመት እና ስፋት መጠን መጠበቂያ እርስዎ ስፋት እና እርዝመት በሚቀይሩ ጊዜ ማሰናጃውን </ahelp>"
#: 05060100.xhp
msgctxt ""
@@ -16734,7 +16734,7 @@ msgctxt ""
"18\n"
"help.text"
msgid "Specify the anchoring options for the selected object or frame. The anchor options are not available when you open the dialog from the Styles and Formatting window."
-msgstr ""
+msgstr "ለ ተመረጠው እቃ ወይንም ክፈፍ የ ማስቆሚያ ምርጫ መወሰኛ: የ ማስቆሚያ ምርጫ አይኖርም እርስዎ ንግግር ሲከፍቱ ከ ዘዴዎች እና አቀራረብ መስኮት ውስጥ"
#: 05060100.xhp
msgctxt ""
@@ -17725,7 +17725,7 @@ msgctxt ""
"22\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/floatingcontour/TBI_POLYEDIT\">Lets you change the shape of the contour. Click here, and then drag the handles of the contour.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/floatingcontour/TBI_POLYEDIT\">እርስዎን የ ቅርጽ ቅርጾች መቀየር ያስችሎታል: ይጭኑ እዚህ: እና የ ቅርጾቹን እጄታ ይዘው ይጎትቱ</ahelp>"
#: 05060201.xhp
msgctxt ""
@@ -17760,7 +17760,7 @@ msgctxt ""
"25\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/floatingcontour/TBI_POLYMOVE\">Lets you drag the handles of the contour to change the shape of the contour.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/floatingcontour/TBI_POLYMOVE\">እርስዎን የ ቅርጾቹን እጄታ ይዘው በመጎተት ቅርጹን መቀየር ያስችሎታል</ahelp>"
#: 05060201.xhp
msgctxt ""
@@ -17795,7 +17795,7 @@ msgctxt ""
"28\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/floatingcontour/TBI_POLYINSERT\">Inserts a handle that you can drag to change the shape of the contour. Click here, and then click on the contour outline.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/floatingcontour/TBI_POLYINSERT\">እጄታ ማስገቢያ እርስዎ ቅርጾቹን ይዘው በመጎተት ቅርጹን መቀየር ያስችሎታል: ይጫኑ እዚህ: እና ከዛ ይጫኑ በ ቅርጾቹ ረቂቅ ላይ</ahelp>"
#: 05060201.xhp
msgctxt ""
@@ -24413,7 +24413,7 @@ msgctxt ""
"par_id334242345\n"
"help.text"
msgid "Footnote numbers are left aligned by default in the footnote area. For right aligned footnote numbers first edit the paragraph style <emph>Footnote</emph>. Press <item type=\"keycode\">F11</item> to open <emph>Styles and Formatting</emph> dialog and select <emph>Footnote</emph> from the list of paragraph styles. Open the local menu with right click and choose <emph>Modify</emph>. Go to the <emph>Indents & Spacing</emph> tab page and set indent to 0 before and after the paragraph, including the first line. On <emph>Tabs</emph> tab page create a tab of right type at 12pt and a tab of left type at 14pt. Then in <emph>Footnotes/Endnotes Settings</emph> dialog enter <item type=\"input\">\\t</item> into the <emph>Before</emph> and <emph>After</emph> edit boxes."
-msgstr "የ ግርጌ ማስታወሻ ቁጥሮች በ ነባር በ ግራ የተሰለፉ ናቸው በ ግርጌ ማስታወሻ ቦታ: በ ቀኝ ለሚሰለፉ የ ግርጌ ማስታወሻ ቁጥሮች በ መጀመሪያ የ አንቀጽ ዘዴ ያርሙ: <emph>የ ግርጌ ማስታወሻ</emph>. ይጫኑ <item type=\"keycode\">F11</item> ለ መክፈት <emph>ዘዴዎች እና አቀራረብ</emph> ንግግር እና ይምረጡ <emph>የ ግርጌ ማስታወሻ</emph> ከ አንቀጽ ዘዴዎች ዝርዝር ውስጥ: ይክፈቱ የ አካባቢ ዝርዝር በ ቀኝ በ መጫን እና ይምረጡ <emph>ማሻሻያ</emph>. መሄጃ ወደ <emph>ማስረጊያዎች & ክፍተት</emph> tab ገጽ እና ያሰናዱ ማስረጊያወደ 0 ከ አንቀጹ ፊት እና ኋላ የ መጀመሪያውን መስመር ያካትታል: በ <emph>Tabs</emph> tab ገጽ ለ መፍጠር tab የ ቀኝ ዘዴ በ 12ነጥብ እና a tab የ ግራ ዘዴ በ 14ነጥብ እና ከ ዛ <emph>የ ግርጌ ማስታወሻ/የ መጨረሻ ማስታወሻ ማሰናጃዎች</emph> ንግግር ውስጥ ያስገቡ <item type=\"input\">\t</item> ወደ የ <emph>በፊት</emph> እና <emph>በኋላ</emph> ማረሚያ ሳጥን ውስጥ"
+msgstr "የ ግርጌ ማስታወሻ ቁጥሮች በ ነባር በ ግራ የተሰለፉ ናቸው በ ግርጌ ማስታወሻ ቦታ: በ ቀኝ ለሚሰለፉ የ ግርጌ ማስታወሻ ቁጥሮች በ መጀመሪያ የ አንቀጽ ዘዴ ያርሙ: <emph>የ ግርጌ ማስታወሻ</emph>. ይጫኑ <item type=\"keycode\">F11</item> ለ መክፈት <emph>ዘዴዎች እና አቀራረብ</emph> ንግግር እና ይምረጡ <emph>የ ግርጌ ማስታወሻ</emph> ከ አንቀጽ ዘዴዎች ዝርዝር ውስጥ: ይክፈቱ የ አካባቢ ዝርዝር በ ቀኝ በ መጫን እና ይምረጡ <emph>ማሻሻያ</emph>. መሄጃ ወደ <emph>ማስረጊያዎች & ክፍተት</emph> tab ገጽ እና ያሰናዱ ማስረጊያወደ 0 ከ አንቀጹ ፊት እና በኋላ የ መጀመሪያውን መስመር ያካትታል: በ <emph>Tabs</emph> tab ገጽ ለ መፍጠር tab የ ቀኝ ዘዴ በ 12ነጥብ እና a tab የ ግራ ዘዴ በ 14ነጥብ እና ከ ዛ <emph>የ ግርጌ ማስታወሻ/የ መጨረሻ ማስታወሻ ማሰናጃዎች</emph> ንግግር ውስጥ ያስገቡ <item type=\"input\">\t</item> ወደ የ <emph>በፊት</emph> እና <emph>በኋላ</emph> ማረሚያ ሳጥን ውስጥ"
#: 06080100.xhp
msgctxt ""
@@ -27565,12 +27565,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">ሜዳ ይምረጡ እና ይጎትቱ ሜዳውን ወደ ሌላ ዝርዝር</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
diff --git a/source/ar/extensions/uiconfig/sabpilot/ui.po b/source/ar/extensions/uiconfig/sabpilot/ui.po
index 720a03552f3..7c553de62be 100644
--- a/source/ar/extensions/uiconfig/sabpilot/ui.po
+++ b/source/ar/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 22:10+0000\n"
+"PO-Revision-Date: 2016-03-07 14:44+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ar\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435270207.000000\n"
+"X-POOTLE-MTIME: 1457361899.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -290,13 +290,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -308,13 +309,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -389,22 +391,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -668,13 +672,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/ar/sw/source/ui/index.po b/source/ar/sw/source/ui/index.po
index cc706dd431f..5d24280a572 100644
--- a/source/ar/sw/source/ui/index.po
+++ b/source/ar/sw/source/ui/index.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:40+0200\n"
-"PO-Revision-Date: 2015-07-31 08:09+0000\n"
-"Last-Translator: صفا الفليج <safaalfulaij@hotmail.com>\n"
+"PO-Revision-Date: 2016-03-07 16:45+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438330181.000000\n"
+"X-POOTLE-MTIME: 1457369112.000000\n"
#: cnttab.src
msgctxt ""
@@ -57,20 +57,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -105,12 +107,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/ar/sw/uiconfig/swriter/ui.po b/source/ar/sw/uiconfig/swriter/ui.po
index 2a723345d5b..57d084ae16a 100644
--- a/source/ar/sw/uiconfig/swriter/ui.po
+++ b/source/ar/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-25 19:02+0000\n"
+"PO-Revision-Date: 2016-03-07 17:00+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: ar\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440529366.000000\n"
+"X-POOTLE-MTIME: 1457370018.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2445,13 +2445,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2463,13 +2464,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -8568,13 +8570,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8586,13 +8589,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -15529,40 +15533,44 @@ msgid "[none]"
msgstr "[بدون]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/as/cui/uiconfig/ui.po b/source/as/cui/uiconfig/ui.po
index 7aad5c8ebb3..03456a1d6b3 100644
--- a/source/as/cui/uiconfig/ui.po
+++ b/source/as/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 13:22+0000\n"
+"PO-Revision-Date: 2016-03-07 14:37+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452259352.000000\n"
+"X-POOTLE-MTIME: 1457361449.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14160,31 +14160,34 @@ msgid "N_one"
msgstr "কোনো নহয়"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
diff --git a/source/as/dbaccess/uiconfig/ui.po b/source/as/dbaccess/uiconfig/ui.po
index 19957542e2f..6bcc04959a4 100644
--- a/source/as/dbaccess/uiconfig/ui.po
+++ b/source/as/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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-05-11 21:54+0000\n"
+"PO-Revision-Date: 2016-03-07 14:41+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: as\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431381269.000000\n"
+"X-POOTLE-MTIME: 1457361697.000000\n"
#: admindialog.ui
#, fuzzy
@@ -3053,58 +3053,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/as/extensions/uiconfig/sabpilot/ui.po b/source/as/extensions/uiconfig/sabpilot/ui.po
index 71e8f8c89db..034fa7b17db 100644
--- a/source/as/extensions/uiconfig/sabpilot/ui.po
+++ b/source/as/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 22:26+0000\n"
+"PO-Revision-Date: 2016-03-07 14:47+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: as\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435271191.000000\n"
+"X-POOTLE-MTIME: 1457362071.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -289,13 +289,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -307,13 +308,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -388,22 +390,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -667,13 +671,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/as/officecfg/registry/data/org/openoffice/Office.po b/source/as/officecfg/registry/data/org/openoffice/Office.po
index be8478b5d6f..453dd6dbbd8 100644
--- a/source/as/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/as/officecfg/registry/data/org/openoffice/Office.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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 22:45+0000\n"
+"PO-Revision-Date: 2016-03-07 15:10+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438901109.000000\n"
+"X-POOTLE-MTIME: 1457363407.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1431,13 +1431,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/as/reportdesign/uiconfig/dbreport/ui.po b/source/as/reportdesign/uiconfig/dbreport/ui.po
index 02b0a577d81..626695d2a27 100644
--- a/source/as/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/as/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-18 12:51+0000\n"
+"PO-Revision-Date: 2016-03-07 15:31+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416315104.000000\n"
+"X-POOTLE-MTIME: 1457364675.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/as/sw/uiconfig/swriter/ui.po b/source/as/sw/uiconfig/swriter/ui.po
index 87410b2e6ca..69e235a71ca 100644
--- a/source/as/sw/uiconfig/swriter/ui.po
+++ b/source/as/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-25 19:41+0000\n"
+"PO-Revision-Date: 2016-03-07 17:26+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440531673.000000\n"
+"X-POOTLE-MTIME: 1457371613.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2478,13 +2478,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2496,13 +2497,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4394,13 +4396,14 @@ msgid "None"
msgstr "কোনো নহয়"
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5353,22 +5356,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -8619,13 +8624,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8637,13 +8643,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -15550,40 +15557,44 @@ msgid "[none]"
msgstr "[None]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/ast/dbaccess/uiconfig/ui.po b/source/ast/dbaccess/uiconfig/ui.po
index b03b8d6880c..f21677ad2fa 100644
--- a/source/ast/dbaccess/uiconfig/ui.po
+++ b/source/ast/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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-05-11 22:33+0000\n"
+"PO-Revision-Date: 2016-03-07 14:38+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431383634.000000\n"
+"X-POOTLE-MTIME: 1457361532.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1935,22 +1935,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1962,13 +1964,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3026,58 +3029,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/ast/extensions/uiconfig/sabpilot/ui.po b/source/ast/extensions/uiconfig/sabpilot/ui.po
index dcaa74d9396..9dbba46504b 100644
--- a/source/ast/extensions/uiconfig/sabpilot/ui.po
+++ b/source/ast/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 22:25+0000\n"
+"PO-Revision-Date: 2016-03-07 14:44+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435271151.000000\n"
+"X-POOTLE-MTIME: 1457361842.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/scalc/01.po b/source/ast/helpcontent2/source/text/scalc/01.po
index aefe2279f58..4cd012368fc 100644
--- a/source/ast/helpcontent2/source/text/scalc/01.po
+++ b/source/ast/helpcontent2/source/text/scalc/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 15:05+0000\n"
+"PO-Revision-Date: 2016-03-03 17:03+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
"Language: ast\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-Poedit-SourceCharset: utf-8\n"
-"X-POOTLE-MTIME: 1431356740.000000\n"
+"X-POOTLE-MTIME: 1457024639.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -60135,13 +60135,14 @@ msgid "equal"
msgstr "igual"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -60153,13 +60154,14 @@ msgid "less than"
msgstr "menor que"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
diff --git a/source/ast/reportdesign/uiconfig/dbreport/ui.po b/source/ast/reportdesign/uiconfig/dbreport/ui.po
index cfaf7ff2550..916b49d8f36 100644
--- a/source/ast/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/ast/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2015-05-11 22:40+0000\n"
+"PO-Revision-Date: 2016-03-07 15:21+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431384008.000000\n"
+"X-POOTLE-MTIME: 1457364075.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -198,13 +198,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -216,13 +217,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -279,13 +281,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/ast/sw/uiconfig/swriter/ui.po b/source/ast/sw/uiconfig/swriter/ui.po
index 4282ce908ba..ce428f0f4a7 100644
--- a/source/ast/sw/uiconfig/swriter/ui.po
+++ b/source/ast/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-25 19:40+0000\n"
+"PO-Revision-Date: 2016-03-07 16:56+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: ast\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440531641.000000\n"
+"X-POOTLE-MTIME: 1457369767.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2490,13 +2490,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2508,13 +2509,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -5329,22 +5331,24 @@ msgid "_Alternative (Text only):"
msgstr "_Alternativu (sólo testu):"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -8608,13 +8612,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8626,13 +8631,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
diff --git a/source/ast/vcl/source/src.po b/source/ast/vcl/source/src.po
index 04cd85d7e80..d0ff25fe622 100644
--- a/source/ast/vcl/source/src.po
+++ b/source/ast/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 15:00+0000\n"
+"PO-Revision-Date: 2016-03-07 16:59+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449846011.000000\n"
+"X-POOTLE-MTIME: 1457369966.000000\n"
#: app.src
msgctxt ""
@@ -1174,12 +1174,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1456,13 +1457,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/be/cui/uiconfig/ui.po b/source/be/cui/uiconfig/ui.po
index e7ff939a182..c86b288e23d 100644
--- a/source/be/cui/uiconfig/ui.po
+++ b/source/be/cui/uiconfig/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 13:23+0000\n"
+"PO-Revision-Date: 2016-03-07 16:22+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452259384.000000\n"
+"X-POOTLE-MTIME: 1457367722.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14172,31 +14172,34 @@ msgid "N_one"
msgstr "Няма"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
diff --git a/source/be/dbaccess/uiconfig/ui.po b/source/be/dbaccess/uiconfig/ui.po
index c3e7fd9b183..9ae9c2019f1 100644
--- a/source/be/dbaccess/uiconfig/ui.po
+++ b/source/be/dbaccess/uiconfig/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: 2015-05-11 23:15+0000\n"
+"PO-Revision-Date: 2016-03-07 16:27+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431386111.000000\n"
+"X-POOTLE-MTIME: 1457368022.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1941,22 +1941,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1968,13 +1970,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3034,58 +3037,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/be/extensions/uiconfig/sabpilot/ui.po b/source/be/extensions/uiconfig/sabpilot/ui.po
index ee454a6e929..307ca842f59 100644
--- a/source/be/extensions/uiconfig/sabpilot/ui.po
+++ b/source/be/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 22:01+0000\n"
+"PO-Revision-Date: 2016-03-07 16:35+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435269711.000000\n"
+"X-POOTLE-MTIME: 1457368529.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/be/librelogo/source/pythonpath.po b/source/be/librelogo/source/pythonpath.po
index 275f5c6e7c1..d852914c157 100644
--- a/source/be/librelogo/source/pythonpath.po
+++ b/source/be/librelogo/source/pythonpath.po
@@ -3,16 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: pythonpath\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: 2013-07-24 22:52+0300\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-07 16:50+0000\n"
+"Last-Translator: system 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"
-"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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457369430.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -795,12 +797,13 @@ msgid "."
msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/be/officecfg/registry/data/org/openoffice/Office.po b/source/be/officecfg/registry/data/org/openoffice/Office.po
index 4913ab02954..6b711ca2459 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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 22:34+0000\n"
+"PO-Revision-Date: 2016-03-07 17:00+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438900467.000000\n"
+"X-POOTLE-MTIME: 1457370002.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1457,13 +1457,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/be/reportdesign/uiconfig/dbreport/ui.po b/source/be/reportdesign/uiconfig/dbreport/ui.po
index 4ac3157c87d..9c9f337d142 100644
--- a/source/be/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/be/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-18 13:46+0000\n"
+"PO-Revision-Date: 2016-03-07 17:23+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416318384.000000\n"
+"X-POOTLE-MTIME: 1457371398.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/be/sc/uiconfig/scalc/ui.po b/source/be/sc/uiconfig/scalc/ui.po
index 87c55f05f29..60f81f98c6d 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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-08-25 18:00+0000\n"
+"PO-Revision-Date: 2016-03-07 17:47+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440525600.000000\n"
+"X-POOTLE-MTIME: 1457372852.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6621,22 +6621,24 @@ msgid "Distribution:"
msgstr ""
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter1-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter2-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
msgctxt ""
diff --git a/source/be/sw/source/ui/dbui.po b/source/be/sw/source/ui/dbui.po
index c589dc24a4c..2dd352dce5a 100644
--- a/source/be/sw/source/ui/dbui.po
+++ b/source/be/sw/source/ui/dbui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: dbui\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:32+0000\n"
+"PO-Revision-Date: 2016-03-07 18:39+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431387161.000000\n"
+"X-POOTLE-MTIME: 1457375960.000000\n"
#: dbui.src
msgctxt ""
@@ -488,31 +488,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/be/sw/source/ui/index.po b/source/be/sw/source/ui/index.po
index cc00d7bb673..0228e829655 100644
--- a/source/be/sw/source/ui/index.po
+++ b/source/be/sw/source/ui/index.po
@@ -3,17 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: index\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: 2013-08-13 09:45+0300\n"
-"Last-Translator: Yury Tarasievich <yury.tarasievich@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-07 18:40+0000\n"
+"Last-Translator: system user <>\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=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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457376028.000000\n"
#: cnttab.src
msgctxt ""
@@ -56,20 +57,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -104,12 +107,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/be/sw/uiconfig/swriter/ui.po b/source/be/sw/uiconfig/swriter/ui.po
index df5bb6ba0a4..cb92d6c6e18 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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-25 18:07+0000\n"
+"PO-Revision-Date: 2016-03-07 18:54+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440526035.000000\n"
+"X-POOTLE-MTIME: 1457376840.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2477,13 +2477,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2495,13 +2496,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4393,13 +4395,14 @@ msgid "None"
msgstr "Няма"
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5352,22 +5355,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -8617,13 +8622,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8635,13 +8641,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -15547,40 +15554,44 @@ msgid "[none]"
msgstr "[няма]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/be/vcl/source/src.po b/source/be/vcl/source/src.po
index 2d0ea880c25..6462edd0994 100644
--- a/source/be/vcl/source/src.po
+++ b/source/be/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 14:57+0000\n"
+"PO-Revision-Date: 2016-03-07 18:57+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449845833.000000\n"
+"X-POOTLE-MTIME: 1457377046.000000\n"
#: app.src
msgctxt ""
@@ -1176,12 +1176,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1458,13 +1459,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/scalc/01.po b/source/bn-IN/helpcontent2/source/text/scalc/01.po
index d843dbe3fc8..1f95cb963ad 100644
--- a/source/bn-IN/helpcontent2/source/text/scalc/01.po
+++ b/source/bn-IN/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 15:33+0000\n"
+"PO-Revision-Date: 2016-03-03 17:07+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431358388.000000\n"
+"X-POOTLE-MTIME: 1457024856.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -60123,13 +60123,14 @@ msgid "equal"
msgstr "সমান"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -60141,13 +60142,14 @@ msgid "less than"
msgstr "এর চাইতে ছোট"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/shared/00.po b/source/bn-IN/helpcontent2/source/text/shared/00.po
index d122b9886aa..153a50c8e2b 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/00.po
+++ b/source/bn-IN/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-09-01 18:00+0000\n"
-"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
+"PO-Revision-Date: 2016-03-03 17:28+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn_IN\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1441130458.000000\n"
+"X-POOTLE-MTIME: 1457026107.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3972,12 +3972,13 @@ msgid "ODF 1.2 (Extended)"
msgstr ""
#: 00000021.xhp
+#, fuzzy
msgctxt ""
"00000021.xhp\n"
"par_id100120091238112\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 00000021.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/shared/01.po b/source/bn-IN/helpcontent2/source/text/shared/01.po
index 57ccc799e28..1b8a0a5f9f0 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/01.po
+++ b/source/bn-IN/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-12 13:01+0000\n"
+"PO-Revision-Date: 2016-03-03 17:48+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452603683.000000\n"
+"X-POOTLE-MTIME: 1457027318.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7489,13 +7489,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr "উল্লেখিত অক্ষর উপস্থাপন করে বা ব্যাখ্যা করে।"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7507,13 +7508,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr "লাইন বিরতি বা অনুচ্ছেদ শৈলী ব্যতীত যেকোনো একক বর্ণচিহ্ন উল্লেখ করে। উদাহরণস্বরূপ, অনুসন্ধান শব্দ \"sh.rt\" \"shirt\" এবং \"short\" উভয়ই ফেরত পাঠায়।"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7525,13 +7527,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr "যদি শব্দটি অনুচ্ছেদের শুরুতে থাকে তবে শুধুমাত্র অনুসন্ধান শব্দ খুঁজে। অনুচ্ছেদের শুরুর ফাঁকা ক্ষেত্র বা বর্ণচিহ্ন-নোঙ্গরকৃত ফ্রেমের মতো বিশেষ বস্তু উপেক্ষা করা হয়। উদাহরণ: \"^Peter\"।"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7551,13 +7554,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7596,13 +7600,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr "সম্ভাব্য সর্বাপেক্ষা দীর্ঘ স্ট্রিং, যা অনুচ্ছেদের এই অনুসন্ধান রীতির সাথে মিলে তা সর্বদা খুঁজে পাওয়া যায়। যদি অনুচ্ছেদ \"AX 4 AX4\" স্ট্রিং ধারণ করে, সম্পূর্ণ অনুচ্ছেদ হাইলাইট করা হবে।"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7614,13 +7619,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr "Finds zero or one of the characters in front of the \"?\". For example, \"Texts?\" finds \"Text\" and \"Texts\" and \"x(ab|c)?y\" finds \"xy\", \"xaby\", or \"xcy\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -15823,13 +15829,14 @@ msgid "Explanation"
msgstr "ব্যাখ্যা"
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/shared/02.po b/source/bn-IN/helpcontent2/source/text/shared/02.po
index f3a9f4195f4..227dd1ea0ac 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/02.po
+++ b/source/bn-IN/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 15:35+0000\n"
+"PO-Revision-Date: 2016-03-03 18:01+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431358522.000000\n"
+"X-POOTLE-MTIME: 1457028083.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -13864,13 +13864,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\"><emph>সারণি কলাম</emph> তালিকা বাক্সে নির্বাচিত ডাটাবেস ক্ষেত্র সরায়। </ahelp> <emph>সারণি কলাম</emph> তালিকা বাক্সে তালিকাবদ্ধ সব ক্ষেত্র নথিতে সন্নিবেশ করা হয়।."
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13882,13 +13883,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\"> <emph>সারণি কলাম</emph> তালিকা বাক্সে নির্বাচিত ডাটাবেস ক্ষেত্র সরায়। </ahelp> <emph>সারণি কলাম</emph> তালিকা বাক্সে সরাতে আপনি এন্ট্রিতে ডাবল ক্লিকও করতে পারেন। <emph>সারণি কলাম</emph> তালিকা বাক্সে তালিকাবদ্ধ সব ক্ষেত্র নথিতে সন্নিবেশ করা হয়।"
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -14177,13 +14179,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr "ডাটাবেস সারণির সব কলাম তালিকাবদ্ধ করে, যা একটি নথিতে সন্নিবেশ করানোর জন্য নির্বাচন তালিকা বাক্স দ্বারা গৃহীত। <ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tabletxtcols\" visibility=\"visible\">নথিতে প্রবশের জন্য আপনার পছন্দসই ডাটাবেস কলাম নির্বাচন করুন।</ahelp>"
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15682,13 +15685,14 @@ msgid "Example"
msgstr "উদাহরণ"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15718,13 +15722,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr "\"M?ller\" returns, for example, Miller and Moller"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15808,31 +15813,34 @@ msgid "Search with regular expressions"
msgstr "রেগুলার প্রকাশের সাথে অনুসন্ধান"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/shared/autopi.po b/source/bn-IN/helpcontent2/source/text/shared/autopi.po
index 3e8fe1057e2..96691aa7199 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/autopi.po
+++ b/source/bn-IN/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-05-11 15:36+0000\n"
+"PO-Revision-Date: 2016-03-03 18:08+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431358566.000000\n"
+"X-POOTLE-MTIME: 1457028528.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3422,13 +3422,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">নির্বাচিত টেবিল এবং কোয়েরিতে ডাটাবেস ক্ষেত্রের নামের তালিকা প্রকাশ করা হয়।</ahelp> ক্ষেত্র নির্বাচন করার জন্য ক্লিক করুন অথবা আপনি একাধিক ক্ষেত্র নির্বাচন করার সময় Shift অথবা <switchinline select=\"sys\"><caseinline select=\"MAC\">কমান্ড</caseinline><defaultinline>Ctrl</defaultinline></switchinline> কী চেপে ধরে রাখুন।"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3459,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">তীর চিহ্ন নির্দেশিত বাক্সের দিকে সকল ক্ষেত্র সরানোর জন্য ক্লিক করুন।</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3496,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">তীর চিহ্ন নির্দেশিত বাক্সের দিকে নির্বাচিত ক্ষেত্র সরানোর জন্য ক্লিক করুন।</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4524,13 +4527,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">নতুন প্রতিবেদনে অন্তর্ভুক্ত সকল ক্ষেত্র প্রদর্শন করা হবে।</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4560,13 +4564,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">তীরচিহ্ন নির্দেশিত বাক্সের দিকে সকল ক্ষেত্র সরানোর জন্য ক্লিক করুন।</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4720,13 +4725,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\"> এর মধ্যে ক্ষেত্র তালিকাভুক্ত করে যেটিতে প্রতিবেদন গ্রুপবদ্ধ করা হবে। শ্রেণীবিভাগের এক স্তর সরিয়ে দিতে, ক্ষেত্র নাম নির্বাচন করুন তারপর <emph><</emph> বোতাম ক্লিক করুন। আপনি শ্রেণীবিভাগের চার স্তর পর্যন্ত নির্বাচন করতে পারেন।</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4738,13 +4744,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">তীরচিহ্ন নির্দেশিত বাক্সের দিকে নির্বাচিত ক্ষেত্রটি সরানোর জন্য ক্লিক করুন।</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/shared/explorer/database.po b/source/bn-IN/helpcontent2/source/text/shared/explorer/database.po
index 6191c1a4808..62c1c31b964 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/bn-IN/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-11 15:36+0000\n"
+"PO-Revision-Date: 2016-03-03 18:16+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431358593.000000\n"
+"X-POOTLE-MTIME: 1457028990.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1760,13 +1760,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr "... ক্ষেত্রের বিষয়বস্তু সুনির্দিষ্ট রাশির সাথে সঙ্গতিপূর্ণ নয়।"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1787,13 +1788,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr "... ক্ষেত্রের বিষয়বস্তু সুনির্দিষ্ট রাশির অপেক্ষা বৃহত্তর।"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2793,13 +2795,14 @@ msgid "No"
msgstr "না"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6230,13 +6233,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">আপনি সারণিতে যে সহজলভ্য সূচি নির্ধারণ করতে পারেন তার তালিকা তৈরি করুন।</ahelp> নির্বাচিত সারণিতে একটি সূচি নির্ধারণ করতে, বাম তীরে ক্লিক করুন। বামের দ্বিগুণ তীর সকল সহজলভ্য সূচি নির্ধারণ করে।"
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6266,13 +6270,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">সকল মুক্ত সূচি <emph>সারণির সূচির</emph> তালিকায় সরায়।</ahelp>"
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12420,12 +12425,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr "<ahelp hid=\".\">নিয়ন্ত্রণের নতুন সারি একত্রিত করে।</ahelp>"
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14444,12 +14450,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr "<ahelp hid=\".\">ক্ষেত্রের তথ্য সম্পাদনা করার লক্ষ্যে একটি ক্ষেত্র নির্বাচন করুন।</ahelp>"
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/swriter/01.po b/source/bn-IN/helpcontent2/source/text/swriter/01.po
index 6430afea0f1..34fae218fd8 100644
--- a/source/bn-IN/helpcontent2/source/text/swriter/01.po
+++ b/source/bn-IN/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 15:38+0000\n"
+"PO-Revision-Date: 2016-03-03 19:31+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431358733.000000\n"
+"X-POOTLE-MTIME: 1457033497.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -11034,13 +11034,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">অনুচ্ছেদ শৈলী নির্বাচন করুন যা আপনি নির্বাচিত সূচী স্তরে প্রয়োগ করতে চান, এবং এরপর বরাদ্দ (<emph><) </emph>বোতামে ক্লিক করুন।</ahelp>"
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -27776,12 +27777,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">একটি ক্ষেত্র নির্বাচন করুন এবং ক্ষেত্রটি অন্য তালিকায় টানুন।</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27792,12 +27794,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">ঠিকানা উপাদান তালিকা থেকে অন্য তালিকায় নির্বাচিত ক্ষেত্র যুক্ত করুন। আপনি একই ক্ষেত্র একাধিকবার যুক্ত করতে পারেন।</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27984,12 +27987,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">একটি ক্ষেত্র নির্বাচন করুন এবং ক্ষেত্রটি অন্য তালিকায় টানুন।</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28000,12 +28004,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elem
msgstr "<ahelp hid=\".\">অভিবাদন উপাদানের তালিকা থেকে নির্বাচিত ক্ষেত্রটি অন্য তালিকায় যুক্ত করুন। আপনি একটি ক্ষেত্র একাধিকবার যুক্ত করতে পারবেন।</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28440,12 +28445,13 @@ msgid "<ahelp hid=\".\">Select an address field and drag the field to the other
msgstr "<ahelp hid=\".\">একটি ঠিকানা ক্ষেত্র নির্বাচন করুন এবং ক্ষেত্রটি অন্য তালিকায় টেনে আনুন।</ahelp>"
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28456,12 +28462,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">ঠিকানা উপাদান তালিকা থেকে অন্য তালিকায় নির্বাচিত ক্ষেত্র যুক্ত করা হয়।</ahelp> আপনি একই ক্ষেত্র একাধিকবার যুক্ত করতে পারেন।"
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/swriter/02.po b/source/bn-IN/helpcontent2/source/text/swriter/02.po
index ee025737f6d..bc59c9977d3 100644
--- a/source/bn-IN/helpcontent2/source/text/swriter/02.po
+++ b/source/bn-IN/helpcontent2/source/text/swriter/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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 13:47+0000\n"
+"PO-Revision-Date: 2016-03-03 19:34+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429796852.000000\n"
+"X-POOTLE-MTIME: 1457033675.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1673,13 +1673,14 @@ msgid "Subtraction"
msgstr "বিয়োগ"
#: 14020000.xhp
+#, fuzzy
msgctxt ""
"14020000.xhp\n"
"par_id3150087\n"
"12\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 14020000.xhp
msgctxt ""
diff --git a/source/bn-IN/sw/source/core/undo.po b/source/bn-IN/sw/source/core/undo.po
index 03f1a220011..cc648d9c147 100644
--- a/source/bn-IN/sw/source/core/undo.po
+++ b/source/bn-IN/sw/source/core/undo.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:40+0200\n"
-"PO-Revision-Date: 2015-05-12 00:57+0000\n"
+"PO-Revision-Date: 2016-03-07 20:23+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
"Language: bn_IN\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431392267.000000\n"
+"X-POOTLE-MTIME: 1457382199.000000\n"
#: undo.src
msgctxt ""
@@ -794,20 +794,22 @@ msgid "Table/index changed"
msgstr "সারণি/সূচি পরিবর্তিত"
#: undo.src
+#, fuzzy
msgctxt ""
"undo.src\n"
"STR_START_QUOTE\n"
"string.text"
msgid "'"
-msgstr ""
+msgstr "'"
#: undo.src
+#, fuzzy
msgctxt ""
"undo.src\n"
"STR_END_QUOTE\n"
"string.text"
msgid "'"
-msgstr ""
+msgstr "'"
#: undo.src
msgctxt ""
diff --git a/source/bn-IN/sw/source/ui/dbui.po b/source/bn-IN/sw/source/ui/dbui.po
index 6ea46891df4..d70e13bb03d 100644
--- a/source/bn-IN/sw/source/ui/dbui.po
+++ b/source/bn-IN/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-12 00:59+0000\n"
+"PO-Revision-Date: 2016-03-07 20:26+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
"Language: bn_IN\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431392342.000000\n"
+"X-POOTLE-MTIME: 1457382363.000000\n"
#: dbui.src
msgctxt ""
@@ -488,31 +488,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/bn-IN/sw/source/ui/index.po b/source/bn-IN/sw/source/ui/index.po
index 68712474593..731d0b4cf62 100644
--- a/source/bn-IN/sw/source/ui/index.po
+++ b/source/bn-IN/sw/source/ui/index.po
@@ -3,18 +3,19 @@ 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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2012-06-13 20:52+0530\n"
-"Last-Translator: Sayak Sarkar <sayak.bugsmith@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-07 20:27+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-Language: bn_BD\n"
+"X-POOTLE-MTIME: 1457382475.000000\n"
#: cnttab.src
msgctxt ""
@@ -57,20 +58,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -105,12 +108,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/bn-IN/sw/source/ui/misc.po b/source/bn-IN/sw/source/ui/misc.po
index 9c809921d3e..4b0c013d101 100644
--- a/source/bn-IN/sw/source/ui/misc.po
+++ b/source/bn-IN/sw/source/ui/misc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-05-11 16:12+0200\n"
-"PO-Revision-Date: 2015-05-12 00:59+0000\n"
+"PO-Revision-Date: 2016-03-07 20:28+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n"
"Language: bn_IN\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-Language: bn_BD\n"
-"X-POOTLE-MTIME: 1431392369.000000\n"
+"X-POOTLE-MTIME: 1457382485.000000\n"
#: glossary.src
msgctxt ""
@@ -42,12 +42,13 @@ msgid "Delete the category "
msgstr "শ্রেণী মুছে ফেলুন"
#: glossary.src
+#, fuzzy
msgctxt ""
"glossary.src\n"
"STR_QUERY_DELETE_GROUP2\n"
"string.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: glossary.src
msgctxt ""
diff --git a/source/bn-IN/sw/uiconfig/swriter/ui.po b/source/bn-IN/sw/uiconfig/swriter/ui.po
index 581829473e1..eede472f359 100644
--- a/source/bn-IN/sw/uiconfig/swriter/ui.po
+++ b/source/bn-IN/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-25 19:08+0000\n"
+"PO-Revision-Date: 2016-03-07 20:41+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: bn_IN\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440529739.000000\n"
+"X-POOTLE-MTIME: 1457383289.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2295,13 +2295,14 @@ msgid "Convert Table to Text"
msgstr "সারণি থেকে লেখায় রূপান্তর"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2476,13 +2477,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2494,13 +2496,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4393,13 +4396,14 @@ msgid "None"
msgstr "কোনটি না"
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5353,22 +5357,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6289,13 +6295,14 @@ msgid "Numbering separator:"
msgstr "সংখ্যায়ন বিভাজক"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
#, fuzzy
@@ -8619,13 +8626,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8637,13 +8645,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9489,13 +9498,14 @@ msgid "Position:"
msgstr "অবস্থান"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
msgctxt ""
@@ -15549,40 +15559,44 @@ msgid "[none]"
msgstr "[কোনটি না]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/bn-IN/vcl/source/src.po b/source/bn-IN/vcl/source/src.po
index f68a57fe91e..a6a64ad2421 100644
--- a/source/bn-IN/vcl/source/src.po
+++ b/source/bn-IN/vcl/source/src.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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 15:01+0000\n"
+"PO-Revision-Date: 2016-03-07 20:44+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Bengali <anubad@lists.ankur.org.in>\n"
"Language: bn_IN\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-Language: bn_BD\n"
-"X-POOTLE-MTIME: 1449846104.000000\n"
+"X-POOTLE-MTIME: 1457383498.000000\n"
#: app.src
msgctxt ""
@@ -1177,12 +1177,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1342,13 +1343,14 @@ msgid "pc"
msgstr "পাইকা"
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"\"\n"
"itemlist.text"
msgid "\""
-msgstr ""
+msgstr "\""
#: units.src
msgctxt ""
@@ -1369,13 +1371,14 @@ msgid "inch"
msgstr "ইঞ্চি"
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"'\n"
"itemlist.text"
msgid "'"
-msgstr ""
+msgstr "'"
#: units.src
msgctxt ""
@@ -1459,13 +1462,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/bn-IN/wizards/source/formwizard.po b/source/bn-IN/wizards/source/formwizard.po
index 06677849b0b..6fcb84dc3d0 100644
--- a/source/bn-IN/wizards/source/formwizard.po
+++ b/source/bn-IN/wizards/source/formwizard.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: 2015-05-12 01:00+0000\n"
+"PO-Revision-Date: 2016-03-07 20:51+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431392459.000000\n"
+"X-POOTLE-MTIME: 1457383898.000000\n"
#: dbwizres.src
msgctxt ""
@@ -2530,12 +2530,13 @@ msgid "+"
msgstr ""
#: dbwizres.src
+#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_DB_TABLE_WIZARD_START + 22\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: dbwizres.src
msgctxt ""
diff --git a/source/bn/cui/uiconfig/ui.po b/source/bn/cui/uiconfig/ui.po
index 70950375c14..39913c57893 100644
--- a/source/bn/cui/uiconfig/ui.po
+++ b/source/bn/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 13:22+0000\n"
+"PO-Revision-Date: 2016-03-07 17:31+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: bn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452259342.000000\n"
+"X-POOTLE-MTIME: 1457371912.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14073,31 +14073,34 @@ msgid "N_one"
msgstr ""
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
@@ -17381,40 +17384,44 @@ msgid "(None)"
msgstr "(কোনটি না)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"1\n"
"stringlist.text"
msgid "("
-msgstr ""
+msgstr "("
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"2\n"
"stringlist.text"
msgid "["
-msgstr ""
+msgstr "["
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"3\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
#: twolinespage.ui
#, fuzzy
@@ -17437,40 +17444,44 @@ msgid "(None)"
msgstr "(কোনটি না)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
#: twolinespage.ui
#, fuzzy
diff --git a/source/bn/dbaccess/uiconfig/ui.po b/source/bn/dbaccess/uiconfig/ui.po
index 8160c4854d0..2f8ee782805 100644
--- a/source/bn/dbaccess/uiconfig/ui.po
+++ b/source/bn/dbaccess/uiconfig/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-04-22 23:40+0200\n"
-"PO-Revision-Date: 2013-02-17 20:11+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 17:36+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361131898.0\n"
+"X-POOTLE-MTIME: 1457372201.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1928,22 +1928,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1955,13 +1957,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3017,58 +3020,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/bn/extensions/uiconfig/sabpilot/ui.po b/source/bn/extensions/uiconfig/sabpilot/ui.po
index 8ecc99f1ddf..95f52b1798f 100644
--- a/source/bn/extensions/uiconfig/sabpilot/ui.po
+++ b/source/bn/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 22:00+0000\n"
+"PO-Revision-Date: 2016-03-07 17:43+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435269634.000000\n"
+"X-POOTLE-MTIME: 1457372604.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/scalc/01.po b/source/bn/helpcontent2/source/text/scalc/01.po
index 367dfa2acba..9784712aedb 100644
--- a/source/bn/helpcontent2/source/text/scalc/01.po
+++ b/source/bn/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 15:24+0000\n"
+"PO-Revision-Date: 2016-03-03 17:06+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431357892.000000\n"
+"X-POOTLE-MTIME: 1457024799.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -60123,13 +60123,14 @@ msgid "equal"
msgstr "সমান"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -60141,13 +60142,14 @@ msgid "less than"
msgstr "এর চাইতে ছোট"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/shared/00.po b/source/bn/helpcontent2/source/text/shared/00.po
index 71d85e177cd..de81b543a60 100644
--- a/source/bn/helpcontent2/source/text/shared/00.po
+++ b/source/bn/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-09-01 18:00+0000\n"
-"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
+"PO-Revision-Date: 2016-03-03 17:27+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1441130450.000000\n"
+"X-POOTLE-MTIME: 1457026031.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3972,12 +3972,13 @@ msgid "ODF 1.2 (Extended)"
msgstr ""
#: 00000021.xhp
+#, fuzzy
msgctxt ""
"00000021.xhp\n"
"par_id100120091238112\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 00000021.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/shared/01.po b/source/bn/helpcontent2/source/text/shared/01.po
index 893da4e579e..89d53b68fde 100644
--- a/source/bn/helpcontent2/source/text/shared/01.po
+++ b/source/bn/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-12 13:01+0000\n"
+"PO-Revision-Date: 2016-03-03 17:50+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452603684.000000\n"
+"X-POOTLE-MTIME: 1457027455.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7489,13 +7489,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr "উল্লেখিত অক্ষর উপস্থাপন করে বা ব্যাখ্যা করে।"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7507,13 +7508,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr "লাইন বিরতি বা অনুচ্ছেদ শৈলী ব্যতীত যেকোনো একক বর্ণচিহ্ন উল্লেখ করে। উদাহরণস্বরূপ, অনুসন্ধান শব্দ \"sh.rt\" \"shirt\" এবং \"short\" উভয়ই ফেরত পাঠায়।"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7525,13 +7527,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr "যদি শব্দটি অনুচ্ছেদের শুরুতে থাকে তবে শুধুমাত্র অনুসন্ধান শব্দ খুঁজে। অনুচ্ছেদের শুরুর ফাঁকা ক্ষেত্র বা বর্ণচিহ্ন-নোঙ্গরকৃত ফ্রেমের মতো বিশেষ বস্তু উপেক্ষা করা হয়। উদাহরণ: \"^Peter\"।"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7551,13 +7554,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7596,13 +7600,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr "সম্ভাব্য সর্বাপেক্ষা দীর্ঘ স্ট্রিং, যা অনুচ্ছেদের এই অনুসন্ধান রীতির সাথে মিলে তা সর্বদা খুঁজে পাওয়া যায়। যদি অনুচ্ছেদ \"AX 4 AX4\" স্ট্রিং ধারণ করে, সম্পূর্ণ অনুচ্ছেদ হাইলাইট করা হবে।"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7614,13 +7619,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr "Finds zero or one of the characters in front of the \"?\". For example, \"Texts?\" finds \"Text\" and \"Texts\" and \"x(ab|c)?y\" finds \"xy\", \"xaby\", or \"xcy\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -15823,13 +15829,14 @@ msgid "Explanation"
msgstr "ব্যাখ্যা"
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/shared/02.po b/source/bn/helpcontent2/source/text/shared/02.po
index d21b6fbf1a1..89a04b05504 100644
--- a/source/bn/helpcontent2/source/text/shared/02.po
+++ b/source/bn/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 15:27+0000\n"
+"PO-Revision-Date: 2016-03-03 18:00+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431358028.000000\n"
+"X-POOTLE-MTIME: 1457028051.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -13864,13 +13864,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\"><emph>সারণি কলাম</emph> তালিকা বাক্সে নির্বাচিত ডাটাবেস ক্ষেত্র সরায়। </ahelp> <emph>সারণি কলাম</emph> তালিকা বাক্সে তালিকাবদ্ধ সব ক্ষেত্র নথিতে সন্নিবেশ করা হয়।."
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13882,13 +13883,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\"> <emph>সারণি কলাম</emph> তালিকা বাক্সে নির্বাচিত ডাটাবেস ক্ষেত্র সরায়। </ahelp> <emph>সারণি কলাম</emph> তালিকা বাক্সে সরাতে আপনি এন্ট্রিতে ডাবল ক্লিকও করতে পারেন। <emph>সারণি কলাম</emph> তালিকা বাক্সে তালিকাবদ্ধ সব ক্ষেত্র নথিতে সন্নিবেশ করা হয়।"
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -14177,13 +14179,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr "ডাটাবেস সারণির সব কলাম তালিকাবদ্ধ করে, যা একটি নথিতে সন্নিবেশ করানোর জন্য নির্বাচন তালিকা বাক্স দ্বারা গৃহীত। <ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tabletxtcols\" visibility=\"visible\">নথিতে প্রবশের জন্য আপনার পছন্দসই ডাটাবেস কলাম নির্বাচন করুন।</ahelp>"
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15682,13 +15685,14 @@ msgid "Example"
msgstr "উদাহরণ"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15718,13 +15722,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr "\"M?ller\" returns, for example, Miller and Moller"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15808,31 +15813,34 @@ msgid "Search with regular expressions"
msgstr "রেগুলার প্রকাশের সাথে অনুসন্ধান"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/shared/autopi.po b/source/bn/helpcontent2/source/text/shared/autopi.po
index d087da7f9ad..4bfa26fc27b 100644
--- a/source/bn/helpcontent2/source/text/shared/autopi.po
+++ b/source/bn/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-05-11 15:27+0000\n"
+"PO-Revision-Date: 2016-03-03 18:07+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431358073.000000\n"
+"X-POOTLE-MTIME: 1457028471.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3422,13 +3422,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">নির্বাচিত টেবিল এবং কোয়েরিতে ডাটাবেস ক্ষেত্রের নামের তালিকা প্রকাশ করা হয়।</ahelp> ক্ষেত্র নির্বাচন করার জন্য ক্লিক করুন অথবা আপনি একাধিক ক্ষেত্র নির্বাচন করার সময় Shift অথবা <switchinline select=\"sys\"><caseinline select=\"MAC\">কমান্ড</caseinline><defaultinline>Ctrl</defaultinline></switchinline> কী চেপে ধরে রাখুন।"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3459,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">তীর চিহ্ন নির্দেশিত বাক্সের দিকে সকল ক্ষেত্র সরানোর জন্য ক্লিক করুন।</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3496,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">তীর চিহ্ন নির্দেশিত বাক্সের দিকে নির্বাচিত ক্ষেত্র সরানোর জন্য ক্লিক করুন।</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4524,13 +4527,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">নতুন প্রতিবেদনে অন্তর্ভুক্ত সকল ক্ষেত্র প্রদর্শন করা হবে।</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4560,13 +4564,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">তীরচিহ্ন নির্দেশিত বাক্সের দিকে সকল ক্ষেত্র সরানোর জন্য ক্লিক করুন।</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4720,13 +4725,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\"> এর মধ্যে ক্ষেত্র তালিকাভুক্ত করে যেটিতে প্রতিবেদন গ্রুপবদ্ধ করা হবে। শ্রেণীবিভাগের এক স্তর সরিয়ে দিতে, ক্ষেত্র নাম নির্বাচন করুন তারপর <emph><</emph> বোতাম ক্লিক করুন। আপনি শ্রেণীবিভাগের চার স্তর পর্যন্ত নির্বাচন করতে পারেন।</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4738,13 +4744,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">তীরচিহ্ন নির্দেশিত বাক্সের দিকে নির্বাচিত ক্ষেত্রটি সরানোর জন্য ক্লিক করুন।</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/shared/explorer/database.po b/source/bn/helpcontent2/source/text/shared/explorer/database.po
index 8b5a589b54d..91aeb8920e8 100644
--- a/source/bn/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/bn/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-11 15:28+0000\n"
+"PO-Revision-Date: 2016-03-03 18:16+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431358099.000000\n"
+"X-POOTLE-MTIME: 1457028972.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1760,13 +1760,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr "... ক্ষেত্রের বিষয়বস্তু সুনির্দিষ্ট রাশির সাথে সঙ্গতিপূর্ণ নয়।"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1787,13 +1788,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr "... ক্ষেত্রের বিষয়বস্তু সুনির্দিষ্ট রাশির অপেক্ষা বৃহত্তর।"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2793,13 +2795,14 @@ msgid "No"
msgstr "না"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6230,13 +6233,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">আপনি সারণিতে যে সহজলভ্য সূচি নির্ধারণ করতে পারেন তার তালিকা তৈরি করুন।</ahelp> নির্বাচিত সারণিতে একটি সূচি নির্ধারণ করতে, বাম তীরে ক্লিক করুন। বামের দ্বিগুণ তীর সকল সহজলভ্য সূচি নির্ধারণ করে।"
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6266,13 +6270,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">সকল মুক্ত সূচি <emph>সারণির সূচির</emph> তালিকায় সরায়।</ahelp>"
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12420,12 +12425,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr "<ahelp hid=\".\">নিয়ন্ত্রণের নতুন সারি একত্রিত করে।</ahelp>"
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14444,12 +14450,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr "<ahelp hid=\".\">ক্ষেত্রের তথ্য সম্পাদনা করার লক্ষ্যে একটি ক্ষেত্র নির্বাচন করুন।</ahelp>"
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/swriter/01.po b/source/bn/helpcontent2/source/text/swriter/01.po
index 232943b6d47..9c7b2188de3 100644
--- a/source/bn/helpcontent2/source/text/swriter/01.po
+++ b/source/bn/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 15:30+0000\n"
+"PO-Revision-Date: 2016-03-03 19:29+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431358238.000000\n"
+"X-POOTLE-MTIME: 1457033364.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -11034,13 +11034,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">অনুচ্ছেদ শৈলী নির্বাচন করুন যা আপনি নির্বাচিত সূচী স্তরে প্রয়োগ করতে চান, এবং এরপর বরাদ্দ (<emph><) </emph>বোতামে ক্লিক করুন।</ahelp>"
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -27776,12 +27777,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">একটি ক্ষেত্র নির্বাচন করুন এবং ক্ষেত্রটি অন্য তালিকায় টানুন।</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27792,12 +27794,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">ঠিকানা উপাদান তালিকা থেকে অন্য তালিকায় নির্বাচিত ক্ষেত্র যুক্ত করুন। আপনি একই ক্ষেত্র একাধিকবার যুক্ত করতে পারেন।</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27984,12 +27987,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">একটি ক্ষেত্র নির্বাচন করুন এবং ক্ষেত্রটি অন্য তালিকায় টানুন।</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28000,12 +28004,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elem
msgstr "<ahelp hid=\".\">অভিবাদন উপাদানের তালিকা থেকে নির্বাচিত ক্ষেত্রটি অন্য তালিকায় যুক্ত করুন। আপনি একটি ক্ষেত্র একাধিকবার যুক্ত করতে পারবেন।</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28440,12 +28445,13 @@ msgid "<ahelp hid=\".\">Select an address field and drag the field to the other
msgstr "<ahelp hid=\".\">একটি ঠিকানা ক্ষেত্র নির্বাচন করুন এবং ক্ষেত্রটি অন্য তালিকায় টেনে আনুন।</ahelp>"
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28456,12 +28462,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">ঠিকানা উপাদান তালিকা থেকে অন্য তালিকায় নির্বাচিত ক্ষেত্র যুক্ত করা হয়।</ahelp> আপনি একই ক্ষেত্র একাধিকবার যুক্ত করতে পারেন।"
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/swriter/02.po b/source/bn/helpcontent2/source/text/swriter/02.po
index c53e89a329c..a6035c98599 100644
--- a/source/bn/helpcontent2/source/text/swriter/02.po
+++ b/source/bn/helpcontent2/source/text/swriter/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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 13:43+0000\n"
+"PO-Revision-Date: 2016-03-03 19:33+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429796583.000000\n"
+"X-POOTLE-MTIME: 1457033633.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1673,13 +1673,14 @@ msgid "Subtraction"
msgstr "বিয়োগ"
#: 14020000.xhp
+#, fuzzy
msgctxt ""
"14020000.xhp\n"
"par_id3150087\n"
"12\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 14020000.xhp
msgctxt ""
diff --git a/source/bn/librelogo/source/pythonpath.po b/source/bn/librelogo/source/pythonpath.po
index 19650795f60..0a47dfafca6 100644
--- a/source/bn/librelogo/source/pythonpath.po
+++ b/source/bn/librelogo/source/pythonpath.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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2011-10-22 23:06+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-07 17:57+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1319324817.0\n"
+"X-POOTLE-MTIME: 1457373453.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -795,20 +795,22 @@ msgid "pi|π"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
"property.text"
msgid "."
-msgstr ""
+msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/bn/officecfg/registry/data/org/openoffice/Office.po b/source/bn/officecfg/registry/data/org/openoffice/Office.po
index 614b2d79be1..1cf1ecc2a56 100644
--- a/source/bn/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/bn/officecfg/registry/data/org/openoffice/Office.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-08-06 22:34+0000\n"
+"PO-Revision-Date: 2016-03-07 18:06+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438900464.000000\n"
+"X-POOTLE-MTIME: 1457374003.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1430,13 +1430,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/bn/reportdesign/uiconfig/dbreport/ui.po b/source/bn/reportdesign/uiconfig/dbreport/ui.po
index 3fdaf8438c5..7e37b004f0c 100644
--- a/source/bn/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/bn/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-18 14:46+0000\n"
+"PO-Revision-Date: 2016-03-07 18:28+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416321990.000000\n"
+"X-POOTLE-MTIME: 1457375321.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/bn/sc/uiconfig/scalc/ui.po b/source/bn/sc/uiconfig/scalc/ui.po
index c2ed176a268..90ca67b4a66 100644
--- a/source/bn/sc/uiconfig/scalc/ui.po
+++ b/source/bn/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-08-25 17:53+0000\n"
+"PO-Revision-Date: 2016-03-07 18:53+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: bn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440525206.000000\n"
+"X-POOTLE-MTIME: 1457376782.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6390,22 +6390,24 @@ msgid "Distribution:"
msgstr ""
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter1-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter2-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
msgctxt ""
diff --git a/source/bn/sd/uiconfig/simpress/ui.po b/source/bn/sd/uiconfig/simpress/ui.po
index 6967b2d1cb2..423f4429eeb 100644
--- a/source/bn/sd/uiconfig/simpress/ui.po
+++ b/source/bn/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 22:29+0000\n"
+"PO-Revision-Date: 2016-03-07 19:15+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: bn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435271387.000000\n"
+"X-POOTLE-MTIME: 1457378148.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -998,22 +998,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/bn/sw/source/ui/dbui.po b/source/bn/sw/source/ui/dbui.po
index a791f018ded..695212555ce 100644
--- a/source/bn/sw/source/ui/dbui.po
+++ b/source/bn/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-12 00:30+0000\n"
+"PO-Revision-Date: 2016-03-07 19:45+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431390615.000000\n"
+"X-POOTLE-MTIME: 1457379946.000000\n"
#: dbui.src
msgctxt ""
@@ -488,31 +488,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/bn/sw/source/ui/index.po b/source/bn/sw/source/ui/index.po
index f6191f1b864..87e64c911fd 100644
--- a/source/bn/sw/source/ui/index.po
+++ b/source/bn/sw/source/ui/index.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2011-10-22 23:06+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-07 19:47+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-Language: bn_BD\n"
-"X-POOTLE-MTIME: 1319324817.0\n"
+"X-POOTLE-MTIME: 1457380021.000000\n"
#: cnttab.src
#, fuzzy
@@ -59,20 +59,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -107,12 +109,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/bn/sw/uiconfig/swriter/ui.po b/source/bn/sw/uiconfig/swriter/ui.po
index e0f90438468..aa704147da4 100644
--- a/source/bn/sw/uiconfig/swriter/ui.po
+++ b/source/bn/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-25 18:00+0000\n"
+"PO-Revision-Date: 2016-03-07 19:55+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: bn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440525639.000000\n"
+"X-POOTLE-MTIME: 1457380554.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2311,13 +2311,14 @@ msgid "Convert Table to Text"
msgstr "সারণি থেকে লেখায় রূপান্তর"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2503,13 +2504,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2521,13 +2523,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4434,13 +4437,14 @@ msgid "None"
msgstr ""
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5422,22 +5426,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6347,13 +6353,14 @@ msgid "Position:"
msgstr "অবস্থান"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"separator_edit\n"
"text\n"
"string.text"
msgid ": "
-msgstr ""
+msgstr ": "
#: insertcaption.ui
msgctxt ""
@@ -6365,13 +6372,14 @@ msgid "Numbering separator:"
msgstr ""
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
msgctxt ""
@@ -8708,13 +8716,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8726,13 +8735,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9580,13 +9590,14 @@ msgid "Position:"
msgstr "অবস্থান"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
#, fuzzy
@@ -15716,40 +15727,44 @@ msgid "[none]"
msgstr "[কোনটি না]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/bn/vcl/source/src.po b/source/bn/vcl/source/src.po
index 321c907d18b..ac0bd621fb1 100644
--- a/source/bn/vcl/source/src.po
+++ b/source/bn/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 14:55+0000\n"
+"PO-Revision-Date: 2016-03-07 19:58+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n"
"Language: bn\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-Language: bn_BD\n"
-"X-POOTLE-MTIME: 1449845733.000000\n"
+"X-POOTLE-MTIME: 1457380720.000000\n"
#: app.src
msgctxt ""
@@ -1188,12 +1188,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1470,13 +1471,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/bo/cui/uiconfig/ui.po b/source/bo/cui/uiconfig/ui.po
index d0ce29ab047..826881c4963 100644
--- a/source/bo/cui/uiconfig/ui.po
+++ b/source/bo/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 13:22+0000\n"
+"PO-Revision-Date: 2016-03-07 17:56+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: bo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452259324.000000\n"
+"X-POOTLE-MTIME: 1457373387.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14059,31 +14059,34 @@ msgid "N_one"
msgstr ""
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
@@ -17360,40 +17363,44 @@ msgid "(None)"
msgstr ""
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"1\n"
"stringlist.text"
msgid "("
-msgstr ""
+msgstr "("
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"2\n"
"stringlist.text"
msgid "["
-msgstr ""
+msgstr "["
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"3\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
#: twolinespage.ui
msgctxt ""
@@ -17414,40 +17421,44 @@ msgid "(None)"
msgstr ""
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
#: twolinespage.ui
msgctxt ""
diff --git a/source/bo/dbaccess/uiconfig/ui.po b/source/bo/dbaccess/uiconfig/ui.po
index 6e3563a67ff..b4ee4d6d0e9 100644
--- a/source/bo/dbaccess/uiconfig/ui.po
+++ b/source/bo/dbaccess/uiconfig/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-04-22 23:40+0200\n"
-"PO-Revision-Date: 2013-02-17 20:16+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 18:01+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361132189.0\n"
+"X-POOTLE-MTIME: 1457373714.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1928,22 +1928,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1955,13 +1957,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3017,58 +3020,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/bo/extensions/uiconfig/sabpilot/ui.po b/source/bo/extensions/uiconfig/sabpilot/ui.po
index 2bbc3405196..70459757568 100644
--- a/source/bo/extensions/uiconfig/sabpilot/ui.po
+++ b/source/bo/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 22:04+0000\n"
+"PO-Revision-Date: 2016-03-07 18:08+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435269890.000000\n"
+"X-POOTLE-MTIME: 1457374125.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/scalc/01.po b/source/bo/helpcontent2/source/text/scalc/01.po
index f3c4f133f91..09125b0c62e 100644
--- a/source/bo/helpcontent2/source/text/scalc/01.po
+++ b/source/bo/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 15:41+0000\n"
+"PO-Revision-Date: 2016-03-03 17:14+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431358873.000000\n"
+"X-POOTLE-MTIME: 1457025275.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -60109,13 +60109,14 @@ msgid "equal"
msgstr "མཚུངས་པ།"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -60127,13 +60128,14 @@ msgid "less than"
msgstr "ལས་ཆུང་བ།"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/shared/00.po b/source/bo/helpcontent2/source/text/shared/00.po
index 4781d9711b7..30ae5114778 100644
--- a/source/bo/helpcontent2/source/text/shared/00.po
+++ b/source/bo/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 15:41+0000\n"
+"PO-Revision-Date: 2016-03-03 17:38+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431358906.000000\n"
+"X-POOTLE-MTIME: 1457026728.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3972,12 +3972,13 @@ msgid "ODF 1.2 (Extended)"
msgstr ""
#: 00000021.xhp
+#, fuzzy
msgctxt ""
"00000021.xhp\n"
"par_id100120091238112\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 00000021.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/shared/01.po b/source/bo/helpcontent2/source/text/shared/01.po
index 5b8a1b6fdb4..87da90e075a 100644
--- a/source/bo/helpcontent2/source/text/shared/01.po
+++ b/source/bo/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-12 13:01+0000\n"
+"PO-Revision-Date: 2016-03-03 18:05+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452603702.000000\n"
+"X-POOTLE-MTIME: 1457028322.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7488,13 +7488,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr "གལ་ཏེ་གཏན་འཁེལ་གཞན་དག་མེད་ན་གང་རུང་གི་ཡིག་རྟགས་རྐྱང་པ་ཞིག་མཚོན་གྱི་ཡོད།"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7506,13 +7507,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr "ཕྲེང་བརྗེའི་རྟགས་དང་དུམ་དབྱེ་རྟགས་ཕུད་པའི་ཡིག་རྟགས་རྐྱང་པ་གང་རུང་གི་ཚབ་བྱེད། དཔེར་ན་ 'sh.rt' འཚོལ་བར་དུས་མཉམ་དུ་ 'shirt' དང་ 'short'ཕྱིར་ལོག་བྱེད།"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7524,13 +7526,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr "དུམ་འགོར་གནས་པའི་འཚོལ་བའི་རྣམ་གྲངས་ཁོ་ན་འཚོལ་བ། དུམ་འགོར་དམིགས་བསལ་བྱ་ཡུལ་(དཔེར་ན་ སྟོང་ཆའི་བར་ཆོད་དང་ཡིག་རྟགས་དང་མཉམ་དུ་འཆིང་བརྒྱབ་པའི་སྒྲོམ་གཞི་)དེ་སྣང་མེད་དུ་གཏོང། དཔེར་ན་ '^Peter'"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7550,13 +7553,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7595,13 +7599,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr "ཐོག་མཐའ་བར་གསུམ་དུ་མཚོན་ན་འཚོལ་བའི་མ་ཚུལ་འདི་ཟླ་སྒྲིག་བྱས་པའི་ཆེས་རིང་བའི་སྲིད་པའི་ཡིག་རྟགས་ཕྲེང་བ་འཚོལ་བ། གལ་ཏེ་དུམ་མཚམས་ལ་ཡིག་རྟགས་ཕྲེང་བ་\"AX 4 AX4\" ཚུད་ཡོད་ན་དུམ་མཚམས་ཧྲིལ་པོ་འབུར་དུ་མངོན་ཐུབ།"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7613,13 +7618,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr "\"?\" སྔོན་གྱི་ཀླད་ཀོར་རམ་ཡིག་རྟགས་ཤིག་འཚོལ་བ། དཔེར་ན་ \"Texts?\" ལས་\"Text\" དང་ \"Texts\"འཚོལ་བ་དང་\"(ab|c)?y\"།\"xy\"、\"xaby\" འམ་ \"xcy\"འཚོལ་བ།"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -15823,13 +15829,14 @@ msgid "Explanation"
msgstr "འགྲེལ་བཤད།"
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/shared/02.po b/source/bo/helpcontent2/source/text/shared/02.po
index aa3f8a4d36a..fc4e48a6882 100644
--- a/source/bo/helpcontent2/source/text/shared/02.po
+++ b/source/bo/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 15:43+0000\n"
+"PO-Revision-Date: 2016-03-03 18:18+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431359010.000000\n"
+"X-POOTLE-MTIME: 1457029087.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -13866,13 +13866,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">སྒྲིག་ཟིན་པའི་གཞི་གྲངས་མཛོད་ཀྱི་ཡིག་དུམ་ཐམས་བཅད་<emph>རེའུ་མིག་སྟར་པ་</emph>རེའུ་འགོད་སྒྲོམ་ནང་སྤོས་པ། </ahelp><emph>རེའུ་མིག་སྟར་པ་</emph>རེའུ་འགོད་སྒྲོམ་ནང་སྒྲིག་པའི་ཡིག་དུམ་ཡོད་ཚད་ཡིག་ཚགཚག་ནང་བསྒར་འཛུད་བྱེད་པའོ།"
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13884,13 +13885,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">བདམས་ཟིན་པའི་གཞི་གྲངས་མཛོད་ཡིག་དུམ་<emph>རེའུ་མིག་སྟར་པ་</emph>རེའུ་འགོད་སྒྲོམ་ནང་སྤོས་པ་དང་</ahelp>ཡང་གཤར་བྱང་ལ་ཆ་རྡུང་བྱས་པ་བརྒྱུད་དེ་ཉིད་ <emph>རེའུ་མིག་སྟར་པ་</emph>རེའུ་འགོད་སྒྲོམ་ནང་སྤོས་པའོ།<emph>རེའུ་མིག་སྟར་པ་</emph>རེའུ་འགོད་སྒྲོམ་ནང་སྒྲིག་པའི་ཡིག་དུམ་ཡོད་ཚད་ཡིག་ཚགས་ནང་བསྒར་འཛུད་བྱེད།"
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -14179,13 +14181,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr ""
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15684,13 +15687,14 @@ msgid "Example"
msgstr "དཔེ་གཞི།"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15720,13 +15724,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr "\"M?ller\" Miller དང་ Mullerཕྱིར་ལོག་པ།"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15810,31 +15815,34 @@ msgid "Search with regular expressions"
msgstr "དྲང་ཕྱོགས་མཚོན་ཐབས་སྤྱད་ནས་བཤེར་འཚོལ་བྱེད་པ།"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/shared/autopi.po b/source/bo/helpcontent2/source/text/shared/autopi.po
index 0173e4e5683..a527b66f816 100644
--- a/source/bo/helpcontent2/source/text/shared/autopi.po
+++ b/source/bo/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-05-11 15:44+0000\n"
+"PO-Revision-Date: 2016-03-03 18:27+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431359052.000000\n"
+"X-POOTLE-MTIME: 1457029641.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3423,13 +3423,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\" visibility=\"visible\">འདེམས་ངེས་རེའུ་མིག་གམ་བཙལ་འདྲི་ནང་གི་གཞི་གྲངས་མཛོད་ཡིག་དུམ་གྱི་མིང་བསྒྲིགས། </ahelp>རྐྱང་རྡེབ་གྱི་ཡིག་དུམ་འདེམས་པ་འམ་ ཡང་ན་རྐྱང་རྡེབ་བྱས་སྐབས་ Shift འམ་ <switchinline select=\"sys\"><caseinline select=\"MAC\">བཀའ་ཚེག་</caseinline><defaultinline> Ctrl</defaultinline> </switchinline>གནོན་མཐེབ་ཏེ་ཡིག་དུམ་མང་པོ་འདེམས་པ།"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3459,13 +3460,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\" visibility=\"visible\">རྐྱང་རྡེབ་བྱས་ཏེ་ཡིག་དུམ་ཡོད་ཚད་གཡས་འགྲམ་གྱི་སྒྲོམ་ནང་གསབ་སྣོན་་བྱེད། </ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3495,12 +3497,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\" visibility=\"visible\">རྐྱང་རྡེབ་བྱས་ཏེ་ཀྱི་གཡས་ངོས་ཀྱི་་སྒྲོམ་ནང་ནས་ཡིག་དུམ་ཡོད་ཚད་སུབ་པ། </ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4525,13 +4528,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">ཪྙན་ཐོ་གསར་པའི་ནང་འདུས་པའི་ཡིག་དུམ་ཡོད་ཚད་མངོན་པ། </ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4561,13 +4565,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">རྐྱང་རྡེབ་བྱས་ཏེ་ཡིག་དུམ་ཡོད་ཚད་ཀྱི་སྒྲོམ་གཡས་ངོས་ཀྱི་སྒྲོམ་ནང་བརྒྱུད་་སྐྱེལ་བྱེད། </ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4721,13 +4726,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">ཪྙན་ཐོའི་ཚོ་དབྱེ་བྱ་སྐབས་གཞི་འཛིན་བྱ་དགོས་པའི་ཡིག་དུམ་བསྒྲིགས་པ། ཚོ་དབྱེ་རིམ་པ་ཞིག་སུབ་དགོས་ན་ ལྟོས་བཅས་ཀྱི་ཡིག་དུམ་མིང་འདེམས་རོགས་དེརྗེས་ <emph> <- </emph>གནོན་མཐེབ་ལ་རྐྱང་རྡེབ་བྱ། མང་ཤོས་ལ་ཚོ་དབྱེའི་རིམ་པ་བཞི་འདེམས་ཆོག </ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4739,13 +4745,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">རྐྱང་རྡེབ་བྱས་ཏེ་ཡིག་དུམ་དེ་གཡོན་་ངོས་ཀྱི་སྒྲོམ་ནང་ནས་གཡས་་ངོས་ཀྱི་སྒྲོམ་ནང་སྤོ་བར་བྱེད་བའམ་ཡང་ན་ཡིག་དུམ་དུ་དེར་ཆ་རྡེབ་བྱེད།</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/shared/explorer/database.po b/source/bo/helpcontent2/source/text/shared/explorer/database.po
index f17257c17b2..88e1b3411b7 100644
--- a/source/bo/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/bo/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-11 15:44+0000\n"
+"PO-Revision-Date: 2016-03-03 18:38+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431359080.000000\n"
+"X-POOTLE-MTIME: 1457030287.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1764,13 +1764,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr "...ཡིག་དུམ་འདིའི་ནང་དོན་དང་གཏན་འཁེལ་གྱི་མཚོན་ཚུལ་གཅིག་མཐུན་མིན་པ།"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1791,13 +1792,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr "...ཡིག་དུམ་གྱི་ནང་དོན་གཏན་འཁེལ་གྱི་མཚོན་ཚུལ་ལས་རིང་བ།"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2797,13 +2799,14 @@ msgid "No"
msgstr "མིན།"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6234,13 +6237,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\" visibility=\"visible\">རེའུ་མིག་ལ་གཏན་འཁེལ་བྱས་པའི་སྤྱོད་རུང་གི་བཤེར་འདྲེན་སྒྲིག་པ། </ahelp>འདེམས་ངེས་ཀྱི་རེའུ་མིག་བཤེར་འདྲེན་ཞིག་གཏན་འཁེལ་བྱེད་ན་ ཁྱེད་ཀྱི་གཡོན་ལ་གཏད་པའི་མདའ་རྩེའི་རིས་རྟགས་ལ་རྐྱང་རྡེབ་བྱ། གཡོན་གཏད་ཀྱི་ཆ་ལྡན་མདའ་རྩེ་ནི་འདེམས་ངེས་ཀྱི་རེའུ་མིག་ལ་སྤྱོད་རུང་གི་བཤེར་འདྲེན་ཡོད་ཚད་སྤྱོད་གཏན་འཁེལ་བྱེད་པར་སྤྱོད།"
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6270,13 +6274,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\" visibility=\"visible\">རང་མོས་བཤེར་འདྲེན་ཡོད་ཚད།<emph>རེའུ་མིག་བཤེར་འདྲེན་</emph>རེའུ་འགོད་ནང་སྤོ་བར་བྱེད། </ahelp>"
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12424,12 +12429,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr "<ahelp hid=\".\">ཚོད་ཆས་ཕྲེང་གསར་པ་ཟུར་སྣོན་བྱེད། </ahelp>"
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14448,12 +14454,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr "<ahelp hid=\".\">ཡིག་དུམ་བདམས་ནས་ཡིག་དུམ་ཆ་འཕྲིན་རྩོམ་སྒྲིག་བྱེད། </ahelp>"
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/swriter/01.po b/source/bo/helpcontent2/source/text/swriter/01.po
index a2a797f2313..f2695a07b69 100644
--- a/source/bo/helpcontent2/source/text/swriter/01.po
+++ b/source/bo/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 15:46+0000\n"
+"PO-Revision-Date: 2016-03-03 20:23+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431359207.000000\n"
+"X-POOTLE-MTIME: 1457036634.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -11028,13 +11028,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">བདམས་ཟིན་པའི་བཤེར་འདྲེན་རིམ་པའི་ཉེར་སྤྱོད་ཀྱི་དུམ་མཚམས་བཟོ་ལྟ་མཚོན་ནས་ དེ་རྗེས་\"གཏན་འཁེལ་\"(<emph><</emph>) གནོན་མཐེབ་ལ་རྐྱང་རྡེབ་བྱས་དགོས།</ahelp>"
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -27762,12 +27763,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">ཡིག་དུམ་བདམས་པ་མ་ཟད་ཡིག་དུམ་རིའུ་འགོད་གཞན་ནང་འདྲུད་དགོས་</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27778,12 +27780,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">གནས་ཡུལ་གཞིའི་རྒྱུའི་རིའུ་འགོད་ནང་གི་འདེམས་ངེས་ཡིག་དུམ་རིའུ་འགོད་གཞན་ནང་གསབ་སྣོན་བྱ་ ཡིག་དུམ་གཅིག་པ་གསབ་སྣོན་ཐང་མང་བྱས་ཆོག་</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27970,12 +27973,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">ཡིག་དུམ་བདམས་པ་མ་ཟད་ཡིག་དུམ་རིའུ་འགོད་གཞན་ནང་འདྲུད་དགོས་</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27986,12 +27990,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elem
msgstr "<ahelp hid=\".\">མིང་གི་གཞི་རྒྱུའི་རིའུ་འགོད་ནང་གི་འདེམས་ངེས་ཡིག་དུམ་རིའུ་འགོད་གཞན་ནང་གསབ་སྣོན་བྱ་ཡིག་དུམ་གཅིག་པ་ཐེངས་མང་གསབ་གནོན་བྱ་ཆོག་</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28426,12 +28431,13 @@ msgid "<ahelp hid=\".\">Select an address field and drag the field to the other
msgstr "<ahelp hid=\".\">གནས་ཡུལ་ཡིག་དུམ་བདམས་རྫེས་ཡིག་དུམ་རིའུ་འགོད་གཞན་གྱི་ཐོས་འདུད་པ་</ahelp>"
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28442,12 +28448,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">གནས་ཡུལ་གཞི་རྒྱུ་བའིརིའུ་མིག་ནང་གི་འདེམས་ངེས་ཡིག་དུམ་རིའུ་འགོད་གཞན་གྱི་ཐོན་ལ་གསལ་སྟོན།</ahelp> ཡིག་དུམ་གཅིག་པ་གསབ་སྣོན་མང་པོ་བྱས་ཆོག"
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/swriter/02.po b/source/bo/helpcontent2/source/text/swriter/02.po
index 50dc72f495f..357fb9cd764 100644
--- a/source/bo/helpcontent2/source/text/swriter/02.po
+++ b/source/bo/helpcontent2/source/text/swriter/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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 13:52+0000\n"
+"PO-Revision-Date: 2016-03-03 20:26+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429797131.000000\n"
+"X-POOTLE-MTIME: 1457036774.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1673,13 +1673,14 @@ msgid "Subtraction"
msgstr "འཐེན་རྟགས་"
#: 14020000.xhp
+#, fuzzy
msgctxt ""
"14020000.xhp\n"
"par_id3150087\n"
"12\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 14020000.xhp
msgctxt ""
diff --git a/source/bo/librelogo/source/pythonpath.po b/source/bo/librelogo/source/pythonpath.po
index 0e1b3172974..c9d0cb99ea8 100644
--- a/source/bo/librelogo/source/pythonpath.po
+++ b/source/bo/librelogo/source/pythonpath.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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2013-02-17 20:16+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-07 18:21+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361132189.0\n"
+"X-POOTLE-MTIME: 1457374868.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -796,20 +796,22 @@ msgid "pi|π"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
"property.text"
msgid "."
-msgstr ""
+msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/bo/officecfg/registry/data/org/openoffice/Office.po b/source/bo/officecfg/registry/data/org/openoffice/Office.po
index c524b992335..37df5a686ea 100644
--- a/source/bo/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/bo/officecfg/registry/data/org/openoffice/Office.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-08-06 22:34+0000\n"
+"PO-Revision-Date: 2016-03-07 18:30+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438900464.000000\n"
+"X-POOTLE-MTIME: 1457375416.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1431,13 +1431,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/bo/reportdesign/uiconfig/dbreport/ui.po b/source/bo/reportdesign/uiconfig/dbreport/ui.po
index 0212360a024..f2abe856269 100644
--- a/source/bo/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/bo/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-18 15:22+0000\n"
+"PO-Revision-Date: 2016-03-07 18:54+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416324134.000000\n"
+"X-POOTLE-MTIME: 1457376870.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/bo/sc/uiconfig/scalc/ui.po b/source/bo/sc/uiconfig/scalc/ui.po
index 933cb13c72c..b277a92aa1a 100644
--- a/source/bo/sc/uiconfig/scalc/ui.po
+++ b/source/bo/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-08-25 17:32+0000\n"
+"PO-Revision-Date: 2016-03-07 19:27+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: bo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440523957.000000\n"
+"X-POOTLE-MTIME: 1457378824.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6390,22 +6390,24 @@ msgid "Distribution:"
msgstr ""
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter1-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter2-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
msgctxt ""
diff --git a/source/bo/sd/source/ui/app.po b/source/bo/sd/source/ui/app.po
index c81864018a4..ea12e99aea7 100644
--- a/source/bo/sd/source/ui/app.po
+++ b/source/bo/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-08-25 17:35+0000\n"
+"PO-Revision-Date: 2016-03-07 19:45+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440524154.000000\n"
+"X-POOTLE-MTIME: 1457379953.000000\n"
#: menuids3_tmpl.src
msgctxt ""
@@ -3737,12 +3737,13 @@ msgid "<number>"
msgstr "<སྒྲིག་ཨང་>"
#: strings.src
+#, fuzzy
msgctxt ""
"strings.src\n"
"STR_FIELD_PLACEHOLDER_COUNT\n"
"string.text"
msgid "<count>"
-msgstr ""
+msgstr "<count>"
#: strings.src
msgctxt ""
diff --git a/source/bo/sd/uiconfig/simpress/ui.po b/source/bo/sd/uiconfig/simpress/ui.po
index 924b7daf4ab..515b0a7e16d 100644
--- a/source/bo/sd/uiconfig/simpress/ui.po
+++ b/source/bo/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 22:44+0000\n"
+"PO-Revision-Date: 2016-03-07 19:47+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: bo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435272266.000000\n"
+"X-POOTLE-MTIME: 1457380077.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -998,22 +998,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/bo/sw/source/ui/dbui.po b/source/bo/sw/source/ui/dbui.po
index 20bb5ac4148..b2093008a8c 100644
--- a/source/bo/sw/source/ui/dbui.po
+++ b/source/bo/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-12 01:19+0000\n"
+"PO-Revision-Date: 2016-03-07 20:20+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431393573.000000\n"
+"X-POOTLE-MTIME: 1457382058.000000\n"
#: dbui.src
msgctxt ""
@@ -488,31 +488,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/bo/sw/source/ui/index.po b/source/bo/sw/source/ui/index.po
index ee9f3b124b4..0b05fdd6735 100644
--- a/source/bo/sw/source/ui/index.po
+++ b/source/bo/sw/source/ui/index.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2012-01-05 12:20+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-07 20:23+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457382180.000000\n"
#: cnttab.src
#, fuzzy
@@ -57,20 +58,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -105,12 +108,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/bo/sw/uiconfig/swriter/ui.po b/source/bo/sw/uiconfig/swriter/ui.po
index 1cdafd4223e..633e88adc8c 100644
--- a/source/bo/sw/uiconfig/swriter/ui.po
+++ b/source/bo/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-25 17:43+0000\n"
+"PO-Revision-Date: 2016-03-07 20:36+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: bo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440524586.000000\n"
+"X-POOTLE-MTIME: 1457382982.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2311,13 +2311,14 @@ msgid "Convert Table to Text"
msgstr "ཡིག་དེབ་དེ་རེའུ་མིག་ལ་བསྒྱུར་བ།"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2503,13 +2504,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2521,13 +2523,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4434,13 +4437,14 @@ msgid "None"
msgstr ""
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5422,22 +5426,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6346,13 +6352,14 @@ msgid "Position:"
msgstr "གནས་ས།"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"separator_edit\n"
"text\n"
"string.text"
msgid ": "
-msgstr ""
+msgstr ": "
#: insertcaption.ui
msgctxt ""
@@ -6364,13 +6371,14 @@ msgid "Numbering separator:"
msgstr ""
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
msgctxt ""
@@ -8707,13 +8715,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8725,13 +8734,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9579,13 +9589,14 @@ msgid "Position:"
msgstr "གནས་ས།"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
#, fuzzy
@@ -15704,40 +15715,44 @@ msgid "[none]"
msgstr "[མེད།]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/bo/vcl/source/src.po b/source/bo/vcl/source/src.po
index 9bdf750f43a..96917f73fa2 100644
--- a/source/bo/vcl/source/src.po
+++ b/source/bo/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 14:57+0000\n"
+"PO-Revision-Date: 2016-03-07 20:39+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449845849.000000\n"
+"X-POOTLE-MTIME: 1457383179.000000\n"
#: app.src
msgctxt ""
@@ -1218,12 +1218,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1501,13 +1502,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/br/filter/source/config/fragments/filters.po b/source/br/filter/source/config/fragments/filters.po
index 008ffc7e598..c433734b781 100644
--- a/source/br/filter/source/config/fragments/filters.po
+++ b/source/br/filter/source/config/fragments/filters.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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2016-01-09 19:23+0000\n"
-"Last-Translator: Alan <alan.monfort@free.fr>\n"
+"PO-Revision-Date: 2016-03-07 18:24+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452367397.000000\n"
+"X-POOTLE-MTIME: 1457375095.000000\n"
#: AbiWord.xcu
msgctxt ""
@@ -1898,7 +1898,6 @@ msgid "OpenOffice.org 1.0 HTML Template"
msgstr "Patrom HTML mod OpenOffice.org 1.0"
#: writer_web_jpg_Export.xcu
-#, fuzzy
msgctxt ""
"writer_web_jpg_Export.xcu\n"
"writer_web_jpg_Export\n"
@@ -1917,7 +1916,6 @@ msgid "PDF - Portable Document Format"
msgstr "PDF - Portable Document Format"
#: writer_web_png_Export.xcu
-#, fuzzy
msgctxt ""
"writer_web_png_Export.xcu\n"
"writer_web_png_Export\n"
diff --git a/source/br/formula/source/core/resource.po b/source/br/formula/source/core/resource.po
index e802a91ce73..cbb28c1d6de 100644
--- a/source/br/formula/source/core/resource.po
+++ b/source/br/formula/source/core/resource.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-01-13 00:12+0100\n"
+"POT-Creation-Date: 2016-03-15 11:20+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -56,7 +56,7 @@ msgctxt ""
"SC_OPCODE_TABLE_REF_ITEM_ALL\n"
"string.text"
msgid "#All"
-msgstr "#Pep Tra"
+msgstr "#Pep tra"
#: core_resource.src
msgctxt ""
diff --git a/source/br/sfx2/uiconfig/ui.po b/source/br/sfx2/uiconfig/ui.po
index 19e0719499a..139fecc110a 100644
--- a/source/br/sfx2/uiconfig/ui.po
+++ b/source/br/sfx2/uiconfig/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-09 19:53+0000\n"
-"Last-Translator: Alan <alan.monfort@free.fr>\n"
+"PO-Revision-Date: 2016-03-07 20:02+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: br\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452369191.000000\n"
+"X-POOTLE-MTIME: 1457380929.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -1538,14 +1538,13 @@ msgid "_Open File"
msgstr "_Digeriñ ur restr"
#: startcenter.ui
-#, fuzzy
msgctxt ""
"startcenter.ui\n"
"open_remote\n"
"label\n"
"string.text"
msgid "Remote File_s"
-msgstr "_Restroù a-bell"
+msgstr "Re_stroù a-bell"
#: startcenter.ui
msgctxt ""
diff --git a/source/br/svtools/source/dialogs.po b/source/br/svtools/source/dialogs.po
index 2bd574f6196..1a121a7fe4e 100644
--- a/source/br/svtools/source/dialogs.po
+++ b/source/br/svtools/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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-10-16 17:10+0000\n"
+"PO-Revision-Date: 2016-03-14 19:30+0000\n"
"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1445015459.000000\n"
+"X-POOTLE-MTIME: 1457983854.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"STR_SVT_DEFAULT_SERVICE_LABEL\n"
"string.text"
msgid "$user$'s $service$"
-msgstr "$service$ $user$"
+msgstr "$gwazerezhioù$ $arveriaded$"
#: formats.src
msgctxt ""
diff --git a/source/br/vcl/source/src.po b/source/br/vcl/source/src.po
index bc7e63b382d..b7aaab8b3fa 100644
--- a/source/br/vcl/source/src.po
+++ b/source/br/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 15:03+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2016-03-14 19:35+0000\n"
+"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449846209.000000\n"
+"X-POOTLE-MTIME: 1457984136.000000\n"
#: app.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"SV_APP_CPUTHREADS\n"
"string.text"
msgid "CPU Threads: "
-msgstr ""
+msgstr "Neudennoù erounit ar c'horrgewerier :"
#: app.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"SV_APP_OSVERSION\n"
"string.text"
msgid "OS Version: "
-msgstr ""
+msgstr "Handelv ar reizhiad korvoiñ : "
#: app.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"SV_APP_UIRENDER\n"
"string.text"
msgid "UI Render: "
-msgstr ""
+msgstr "Deouez ketal an arveriad : "
#: app.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"SV_APP_GL\n"
"string.text"
msgid "GL"
-msgstr ""
+msgstr "GL"
#: app.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"SV_APP_DEFAULT\n"
"string.text"
msgid "default"
-msgstr ""
+msgstr "dre ziouer"
#. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string
#: btntext.src
diff --git a/source/brx/cui/uiconfig/ui.po b/source/brx/cui/uiconfig/ui.po
index 0fac4a30ba4..e32920e22dd 100644
--- a/source/brx/cui/uiconfig/ui.po
+++ b/source/brx/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 13:21+0000\n"
+"PO-Revision-Date: 2016-03-07 17:57+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: brx\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452259313.000000\n"
+"X-POOTLE-MTIME: 1457373434.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14055,31 +14055,34 @@ msgid "N_one"
msgstr ""
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
@@ -17354,40 +17357,44 @@ msgid "(None)"
msgstr ""
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"1\n"
"stringlist.text"
msgid "("
-msgstr ""
+msgstr "("
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"2\n"
"stringlist.text"
msgid "["
-msgstr ""
+msgstr "["
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"3\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
#: twolinespage.ui
msgctxt ""
@@ -17408,40 +17415,44 @@ msgid "(None)"
msgstr ""
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
#: twolinespage.ui
msgctxt ""
diff --git a/source/brx/dbaccess/uiconfig/ui.po b/source/brx/dbaccess/uiconfig/ui.po
index 954c7054d5b..4a951749e65 100644
--- a/source/brx/dbaccess/uiconfig/ui.po
+++ b/source/brx/dbaccess/uiconfig/ui.po
@@ -4,16 +4,16 @@ 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-04-22 23:40+0200\n"
-"PO-Revision-Date: 2013-01-06 14:07+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 18:01+0000\n"
+"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1357481227.0\n"
+"X-POOTLE-MTIME: 1457373719.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1927,22 +1927,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1954,13 +1956,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3016,58 +3019,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/brx/extensions/uiconfig/sabpilot/ui.po b/source/brx/extensions/uiconfig/sabpilot/ui.po
index 375dffdf9bf..fef32d733be 100644
--- a/source/brx/extensions/uiconfig/sabpilot/ui.po
+++ b/source/brx/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 23:03+0000\n"
+"PO-Revision-Date: 2016-03-07 18:09+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435273431.000000\n"
+"X-POOTLE-MTIME: 1457374167.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -280,13 +280,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -298,13 +299,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -379,22 +381,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -647,13 +651,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/brx/librelogo/source/pythonpath.po b/source/brx/librelogo/source/pythonpath.po
index 16757acea99..f3ebc2efa68 100644
--- a/source/brx/librelogo/source/pythonpath.po
+++ b/source/brx/librelogo/source/pythonpath.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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2013-01-06 14:07+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-07 18:24+0000\n"
+"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1357481227.0\n"
+"X-POOTLE-MTIME: 1457375088.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -793,20 +793,22 @@ msgid "pi|π"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
"property.text"
msgid "."
-msgstr ""
+msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/brx/officecfg/registry/data/org/openoffice/Office.po b/source/brx/officecfg/registry/data/org/openoffice/Office.po
index 65125280eab..23625c9963a 100644
--- a/source/brx/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/brx/officecfg/registry/data/org/openoffice/Office.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-08-06 22:36+0000\n"
+"PO-Revision-Date: 2016-03-07 18:34+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438900593.000000\n"
+"X-POOTLE-MTIME: 1457375685.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1429,13 +1429,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/brx/reportdesign/uiconfig/dbreport/ui.po b/source/brx/reportdesign/uiconfig/dbreport/ui.po
index c4fc81581d5..6f7e2152397 100644
--- a/source/brx/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/brx/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-18 15:56+0000\n"
+"PO-Revision-Date: 2016-03-07 18:59+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416326191.000000\n"
+"X-POOTLE-MTIME: 1457377171.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -196,13 +196,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -214,13 +215,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -277,13 +279,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/brx/sc/uiconfig/scalc/ui.po b/source/brx/sc/uiconfig/scalc/ui.po
index 766cfa246fd..f8942b0f431 100644
--- a/source/brx/sc/uiconfig/scalc/ui.po
+++ b/source/brx/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-08-25 18:15+0000\n"
+"PO-Revision-Date: 2016-03-07 19:30+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: brx\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440526548.000000\n"
+"X-POOTLE-MTIME: 1457379036.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6389,22 +6389,24 @@ msgid "Distribution:"
msgstr ""
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter1-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter2-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
msgctxt ""
diff --git a/source/brx/sd/source/ui/app.po b/source/brx/sd/source/ui/app.po
index b2a80428423..ca7c0d260b7 100644
--- a/source/brx/sd/source/ui/app.po
+++ b/source/brx/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-08-25 18:17+0000\n"
+"PO-Revision-Date: 2016-03-07 19:45+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440526623.000000\n"
+"X-POOTLE-MTIME: 1457379936.000000\n"
#: menuids3_tmpl.src
msgctxt ""
@@ -3830,12 +3830,13 @@ msgid "<number>"
msgstr "<अनजिमा >"
#: strings.src
+#, fuzzy
msgctxt ""
"strings.src\n"
"STR_FIELD_PLACEHOLDER_COUNT\n"
"string.text"
msgid "<count>"
-msgstr ""
+msgstr "<count>"
#: strings.src
msgctxt ""
diff --git a/source/brx/sd/uiconfig/simpress/ui.po b/source/brx/sd/uiconfig/simpress/ui.po
index 960fabc9328..199e5632c30 100644
--- a/source/brx/sd/uiconfig/simpress/ui.po
+++ b/source/brx/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 23:25+0000\n"
+"PO-Revision-Date: 2016-03-07 19:47+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: brx\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435274754.000000\n"
+"X-POOTLE-MTIME: 1457380044.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -997,22 +997,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/brx/sw/source/ui/dbui.po b/source/brx/sw/source/ui/dbui.po
index 802ca6543fe..393458cfd62 100644
--- a/source/brx/sw/source/ui/dbui.po
+++ b/source/brx/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-12 02:08+0000\n"
+"PO-Revision-Date: 2016-03-07 20:18+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431396538.000000\n"
+"X-POOTLE-MTIME: 1457381896.000000\n"
#: dbui.src
msgctxt ""
@@ -487,31 +487,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/brx/sw/source/ui/index.po b/source/brx/sw/source/ui/index.po
index 8cf86344660..268ff735003 100644
--- a/source/brx/sw/source/ui/index.po
+++ b/source/brx/sw/source/ui/index.po
@@ -3,16 +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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2011-12-18 22:03+0200\n"
-"Last-Translator: alayaran <alayaran@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-07 20:19+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457381998.000000\n"
#: cnttab.src
#, fuzzy
@@ -56,20 +57,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -104,12 +107,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/brx/sw/uiconfig/swriter/ui.po b/source/brx/sw/uiconfig/swriter/ui.po
index 584c7dc5824..b57159213f1 100644
--- a/source/brx/sw/uiconfig/swriter/ui.po
+++ b/source/brx/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-25 18:19+0000\n"
+"PO-Revision-Date: 2016-03-07 20:33+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: brx\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440526756.000000\n"
+"X-POOTLE-MTIME: 1457382789.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2310,13 +2310,14 @@ msgid "Convert Table to Text"
msgstr "फारिलाइखौ फराय बिजाबाव सोलाय हो"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2502,13 +2503,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2520,13 +2522,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4433,13 +4436,14 @@ msgid "None"
msgstr ""
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5421,22 +5425,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6346,13 +6352,14 @@ msgid "Position:"
msgstr "थासारि"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"separator_edit\n"
"text\n"
"string.text"
msgid ": "
-msgstr ""
+msgstr ": "
#: insertcaption.ui
msgctxt ""
@@ -6364,13 +6371,14 @@ msgid "Numbering separator:"
msgstr ""
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
msgctxt ""
@@ -8706,13 +8714,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8724,13 +8733,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9578,13 +9588,14 @@ msgid "Position:"
msgstr "थासारि"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
#, fuzzy
@@ -15707,40 +15718,44 @@ msgid "[none]"
msgstr "रावबो नङा"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/brx/vcl/source/src.po b/source/brx/vcl/source/src.po
index 094c116e3fe..6eef048077b 100644
--- a/source/brx/vcl/source/src.po
+++ b/source/brx/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 14:54+0000\n"
+"PO-Revision-Date: 2016-03-07 20:36+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449845651.000000\n"
+"X-POOTLE-MTIME: 1457382991.000000\n"
#: app.src
msgctxt ""
@@ -1259,12 +1259,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1542,13 +1543,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/bs/dbaccess/uiconfig/ui.po b/source/bs/dbaccess/uiconfig/ui.po
index 54cb36ec517..7598556eee9 100644
--- a/source/bs/dbaccess/uiconfig/ui.po
+++ b/source/bs/dbaccess/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-05-12 02:17+0000\n"
+"PO-Revision-Date: 2016-03-07 19:30+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431397061.000000\n"
+"X-POOTLE-MTIME: 1457379017.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1935,22 +1935,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1962,13 +1964,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3026,58 +3029,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/bs/extensions/uiconfig/sabpilot/ui.po b/source/bs/extensions/uiconfig/sabpilot/ui.po
index 601b914dc0e..49020476022 100644
--- a/source/bs/extensions/uiconfig/sabpilot/ui.po
+++ b/source/bs/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 23:13+0000\n"
+"PO-Revision-Date: 2016-03-07 19:37+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435273996.000000\n"
+"X-POOTLE-MTIME: 1457379438.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/scalc/01.po b/source/bs/helpcontent2/source/text/scalc/01.po
index 14cf9278307..891208ea337 100644
--- a/source/bs/helpcontent2/source/text/scalc/01.po
+++ b/source/bs/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 15:48+0000\n"
+"PO-Revision-Date: 2016-03-03 17:01+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431359337.000000\n"
+"X-POOTLE-MTIME: 1457024508.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -59910,13 +59910,14 @@ msgid "equal"
msgstr "jednak"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -59928,13 +59929,14 @@ msgid "less than"
msgstr "manje od"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/scalc/05.po b/source/bs/helpcontent2/source/text/scalc/05.po
index 7512f232284..7bce1091f08 100644
--- a/source/bs/helpcontent2/source/text/scalc/05.po
+++ b/source/bs/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2015-04-23 13:55+0000\n"
+"PO-Revision-Date: 2016-03-03 17:03+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429797319.000000\n"
+"X-POOTLE-MTIME: 1457024585.000000\n"
#: 02140000.xhp
msgctxt ""
@@ -102,12 +102,13 @@ msgid "Explanation"
msgstr "Objašnjenje"
#: 02140000.xhp
+#, fuzzy
msgctxt ""
"02140000.xhp\n"
"par_id1668467\n"
"help.text"
msgid "###"
-msgstr ""
+msgstr "###"
#: 02140000.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/shared/00.po b/source/bs/helpcontent2/source/text/shared/00.po
index 64f1fbefcf6..c68efbc6fbc 100644
--- a/source/bs/helpcontent2/source/text/shared/00.po
+++ b/source/bs/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-09-01 18:01+0000\n"
-"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
+"PO-Revision-Date: 2016-03-03 17:19+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bs\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1441130465.000000\n"
+"X-POOTLE-MTIME: 1457025573.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3973,12 +3973,13 @@ msgid "ODF 1.2 (Extended)"
msgstr ""
#: 00000021.xhp
+#, fuzzy
msgctxt ""
"00000021.xhp\n"
"par_id100120091238112\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 00000021.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/shared/01.po b/source/bs/helpcontent2/source/text/shared/01.po
index 4fb6242b7ee..d5d02f48631 100644
--- a/source/bs/helpcontent2/source/text/shared/01.po
+++ b/source/bs/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-12 13:01+0000\n"
+"PO-Revision-Date: 2016-03-03 17:35+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452603696.000000\n"
+"X-POOTLE-MTIME: 1457026531.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7495,13 +7495,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7513,13 +7514,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7531,13 +7533,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7557,13 +7560,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7602,13 +7606,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7620,13 +7625,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -7708,13 +7714,14 @@ msgid "Match a word boundary. For example, \"\\bbook\" finds \"bookmark\" but no
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3149576\n"
"37\n"
"help.text"
msgid "^$"
-msgstr ""
+msgstr "^$"
#: 02100001.xhp
msgctxt ""
@@ -7726,13 +7733,14 @@ msgid "Finds an empty paragraph."
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3148550\n"
"41\n"
"help.text"
msgid "^."
-msgstr ""
+msgstr "^."
#: 02100001.xhp
msgctxt ""
@@ -7975,13 +7983,14 @@ msgid "Defines the minimum number of times that the character in front of the op
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3148616\n"
"213\n"
"help.text"
msgid "( )"
-msgstr ""
+msgstr "( )"
#: 02100001.xhp
msgctxt ""
@@ -15815,13 +15824,14 @@ msgid "Explanation"
msgstr "Objašnjenje"
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
@@ -15905,13 +15915,14 @@ msgid "3456.78 as 3456.8"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3150355\n"
"12\n"
"help.text"
msgid "####.#"
-msgstr ""
+msgstr "####.#"
#: 05020301.xhp
msgctxt ""
@@ -15959,13 +15970,14 @@ msgid "5.75 as 5 3/4 and 6.3 as 6 3/10"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3145315\n"
"18\n"
"help.text"
msgid "# ???/???"
-msgstr ""
+msgstr "# ???/???"
#: 05020301.xhp
msgctxt ""
@@ -16049,13 +16061,14 @@ msgid "15000 as 15,000"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3151223\n"
"25\n"
"help.text"
msgid "#,###"
-msgstr ""
+msgstr "#,###"
#: 05020301.xhp
msgctxt ""
@@ -16067,13 +16080,14 @@ msgid "16000 as 16"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3153961\n"
"27\n"
"help.text"
msgid "#,"
-msgstr ""
+msgstr "#,"
#: 05020301.xhp
msgctxt ""
@@ -19850,13 +19864,14 @@ msgid "<ahelp hid=\"cui/ui/paratabspage/radiobuttonBTN_FILLCHAR_NO\">Inserts no
msgstr ""
#: 05030300.xhp
+#, fuzzy
msgctxt ""
"05030300.xhp\n"
"hd_id3152933\n"
"26\n"
"help.text"
msgid "......."
-msgstr ""
+msgstr "......."
#: 05030300.xhp
msgctxt ""
@@ -19868,13 +19883,14 @@ msgid "<ahelp hid=\"cui/ui/paratabspage/radiobuttonBTN_FILLCHAR_POINTS\">Fills t
msgstr ""
#: 05030300.xhp
+#, fuzzy
msgctxt ""
"05030300.xhp\n"
"hd_id3156280\n"
"28\n"
"help.text"
msgid "------"
-msgstr ""
+msgstr "------"
#: 05030300.xhp
msgctxt ""
@@ -19886,13 +19902,14 @@ msgid "<ahelp hid=\"cui/ui/paratabspage/radiobuttonBTN_FILLCHAR_DASHLINE\">Fills
msgstr ""
#: 05030300.xhp
+#, fuzzy
msgctxt ""
"05030300.xhp\n"
"hd_id3157960\n"
"30\n"
"help.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: 05030300.xhp
msgctxt ""
@@ -34639,13 +34656,14 @@ msgid "0.5pt single underline"
msgstr ""
#: 06040100.xhp
+#, fuzzy
msgctxt ""
"06040100.xhp\n"
"par_id3154472\n"
"39\n"
"help.text"
msgid "___"
-msgstr ""
+msgstr "___"
#: 06040100.xhp
msgctxt ""
@@ -34675,13 +34693,14 @@ msgid "1.1pt double underline"
msgstr ""
#: 06040100.xhp
+#, fuzzy
msgctxt ""
"06040100.xhp\n"
"par_id3148647\n"
"43\n"
"help.text"
msgid "***"
-msgstr ""
+msgstr "***"
#: 06040100.xhp
msgctxt ""
@@ -34711,13 +34730,14 @@ msgid "6.0pt double underline"
msgstr ""
#: 06040100.xhp
+#, fuzzy
msgctxt ""
"06040100.xhp\n"
"par_id3145591\n"
"47\n"
"help.text"
msgid "###"
-msgstr ""
+msgstr "###"
#: 06040100.xhp
msgctxt ""
@@ -41175,13 +41195,14 @@ msgid "File Property"
msgstr ""
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3151056\n"
"3\n"
"help.text"
msgid "<TITLE>"
-msgstr ""
+msgstr "<TITLE>"
#: about_meta_tags.xhp
msgctxt ""
@@ -41193,13 +41214,14 @@ msgid "Subject"
msgstr "Tema"
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3147228\n"
"5\n"
"help.text"
msgid "<META NAME=\"CLASSIFICATION\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"CLASSIFICATION\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
@@ -41211,13 +41233,14 @@ msgid "Keywords"
msgstr "Ključne riječi"
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3156422\n"
"7\n"
"help.text"
msgid "<META NAME=\"KEYWORDS\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"KEYWORDS\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
@@ -41229,13 +41252,14 @@ msgid "Description"
msgstr "Opis"
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3125863\n"
"9\n"
"help.text"
msgid "<META NAME=\"DESCRIPTION\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"DESCRIPTION\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
@@ -41247,13 +41271,14 @@ msgid "Info fields 1...4"
msgstr ""
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3157892\n"
"11\n"
"help.text"
msgid "<META NAME=\"Info field name\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"Info field name\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/shared/02.po b/source/bs/helpcontent2/source/text/shared/02.po
index 777d6c3e5f1..9a85aebf5c3 100644
--- a/source/bs/helpcontent2/source/text/shared/02.po
+++ b/source/bs/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 13:56+0000\n"
+"PO-Revision-Date: 2016-03-03 17:42+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429797364.000000\n"
+"X-POOTLE-MTIME: 1457026970.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -6040,13 +6040,14 @@ msgid "Not possible"
msgstr ""
#: 01170102.xhp
+#, fuzzy
msgctxt ""
"01170102.xhp\n"
"par_id3153109\n"
"26\n"
"help.text"
msgid "\"\""
-msgstr ""
+msgstr "\"\""
#: 01170102.xhp
msgctxt ""
@@ -13847,13 +13848,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tablecols\">Lists a
msgstr ""
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3146958\n"
"5\n"
"help.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: 12070100.xhp
msgctxt ""
@@ -13865,13 +13867,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr ""
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13883,13 +13886,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr ""
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -13901,13 +13905,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneleft\">Removes t
msgstr ""
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3150771\n"
"8\n"
"help.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: 12070100.xhp
msgctxt ""
@@ -14178,13 +14183,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr ""
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15683,13 +15689,14 @@ msgid "Example"
msgstr "primjer:"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15719,13 +15726,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr "\"M?ller\" vraća Miller and Moller"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15809,40 +15817,44 @@ msgid "Search with regular expressions"
msgstr "Pretraga sa regularnom ekspresijom omogućuje vise opcija nego sa pretragom sa wildcard ekspresijom. Ako pretražujete sa regularnom ekspresijom,sljedeći karakteri odgovaraju onima koji se koriste u wildcard-u:"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150428\n"
"73\n"
"help.text"
msgid ".*"
-msgstr ""
+msgstr ".*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/shared/autopi.po b/source/bs/helpcontent2/source/text/shared/autopi.po
index e47966860c8..a510d485d8f 100644
--- a/source/bs/helpcontent2/source/text/shared/autopi.po
+++ b/source/bs/helpcontent2/source/text/shared/autopi.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: 2014-09-21 09:19+0000\n"
-"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
+"POT-Creation-Date: 2015-04-22 23:39+0200\n"
+"PO-Revision-Date: 2016-03-03 17:48+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1411291158.000000\n"
+"X-POOTLE-MTIME: 1457027308.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3422,13 +3422,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr "<ahelp hid=\"HID_DLGREPORT_1_FIELDSAVAILABLE\">Prikazuje imena polja u bazi podataka u izabranoj tabeli ili upitniku.</ahelp> Kliknite da bi izabrali polje ili čuvajte Shift ili <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> tipku dok klikate da izaberete više polja."
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3440,13 +3441,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVESELECTED\">Click to move the selected fie
msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVESELECTED\">Kliknite da bi pomjerili izabrana polja u prozor na koji strelica pokazuje.</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3154142\n"
"12\n"
"help.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3460,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Kliknite da bi pomjerili sva polja u prozor na koji strelica pokazuje.</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3476,13 +3479,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVESELECTED\">Click to move the selected f
msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDREMOVESELECTED\">Kliknite da bi pomjerili izabrana polja u prozor na koji strelica pokazuje.</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3159399\n"
"16\n"
"help.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3498,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDREMOVEALL\">Kliknite da bi pomjerili sva polja u prozor na koji strelica pokazuje.</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4524,13 +4529,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Prikazuje sva polja koja su uključena u novi izvještaj.</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4542,13 +4548,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVESELECTED\">Click to move the selected
msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVESELECTED\">Kliknite da bi pomjerili izabrana polja u prozor na koji strelica pokazuje.</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3159269\n"
"12\n"
"help.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: 01100100.xhp
msgctxt ""
@@ -4560,13 +4567,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Kliknite da bi pomjerili sva polja u prozor na koji strelica pokazuje.</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4578,13 +4586,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDREMOVESELECTED\">Click to move the select
msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDREMOVESELECTED\">Kliknite da bi pomjerili izabrana polja u prozor na koji strelica pokazuje.</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3149233\n"
"16\n"
"help.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: 01100100.xhp
msgctxt ""
@@ -4720,13 +4729,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Ispisuje polja po kojima će izvještaj biti grupisan. Da bi uklonili jedan nivo grupisanja, izaberite ime polja, onda kliknite <emph><-</emph> tipku. Možete izabrati do četiri nivoa grupisanja.</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4738,13 +4748,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Kliknite da pomjerite polje iz lijevog u desni prozor, ili duplo kliknite polje.</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
@@ -6721,13 +6732,14 @@ msgid "Accept"
msgstr "Prihvati"
#: 01120100.xhp
+#, fuzzy
msgctxt ""
"01120100.xhp\n"
"par_id3147008\n"
"12\n"
"help.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: 01120100.xhp
msgctxt ""
@@ -6775,13 +6787,14 @@ msgid "Remove"
msgstr "Ukloni"
#: 01120100.xhp
+#, fuzzy
msgctxt ""
"01120100.xhp\n"
"par_id3153561\n"
"13\n"
"help.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: 01120100.xhp
msgctxt ""
@@ -7738,13 +7751,14 @@ msgid "<ahelp hid=\"HID_DLGCONVERT_TBTARGET\">Specifies the folder and path in w
msgstr ""
#: 01150000.xhp
+#, fuzzy
msgctxt ""
"01150000.xhp\n"
"par_id3154151\n"
"19\n"
"help.text"
msgid "<emph>...</emph>"
-msgstr ""
+msgstr "<emph>...</emph>"
#: 01150000.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/shared/explorer/database.po b/source/bs/helpcontent2/source/text/shared/explorer/database.po
index 8ec56761b0d..f44d90f7b23 100644
--- a/source/bs/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/bs/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-11 15:50+0000\n"
+"PO-Revision-Date: 2016-03-03 17:54+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431359454.000000\n"
+"X-POOTLE-MTIME: 1457027663.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1760,13 +1760,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr ""
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1787,13 +1788,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr ""
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2792,13 +2794,14 @@ msgid "No"
msgstr "Ne"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6231,13 +6234,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6249,13 +6253,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/add\">Moves the selected index
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149416\n"
"7\n"
"help.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: 11030100.xhp
msgctxt ""
@@ -6267,13 +6272,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -6285,13 +6291,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/remove\">Moves the selected tab
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3155629\n"
"9\n"
"help.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: 11030100.xhp
msgctxt ""
@@ -12456,12 +12463,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr ""
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14493,12 +14501,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr ""
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/shared/optionen.po b/source/bs/helpcontent2/source/text/shared/optionen.po
index 0f9fdd9d583..7a6916daab6 100644
--- a/source/bs/helpcontent2/source/text/shared/optionen.po
+++ b/source/bs/helpcontent2/source/text/shared/optionen.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-16 19:02+0100\n"
-"PO-Revision-Date: 2015-05-11 15:51+0000\n"
+"PO-Revision-Date: 2016-03-03 18:06+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431359468.000000\n"
+"X-POOTLE-MTIME: 1457028361.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -2670,13 +2670,14 @@ msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The CMY
msgstr ""
#: 01010501.xhp
+#, fuzzy
msgctxt ""
"01010501.xhp\n"
"hd_id3153192\n"
"11\n"
"help.text"
msgid "<--"
-msgstr ""
+msgstr "<--"
#: 01010501.xhp
msgctxt ""
@@ -2688,13 +2689,14 @@ msgid "<ahelp hid=\"SVTOOLS:PUSHBUTTON:DLG_COLOR:BTN_1\">Click the <emph><--</em
msgstr ""
#: 01010501.xhp
+#, fuzzy
msgctxt ""
"01010501.xhp\n"
"hd_id3158409\n"
"13\n"
"help.text"
msgid "-->"
-msgstr ""
+msgstr "-->"
#: 01010501.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/smath/01.po b/source/bs/helpcontent2/source/text/smath/01.po
index a780d8177e2..e065c11fcf5 100644
--- a/source/bs/helpcontent2/source/text/smath/01.po
+++ b/source/bs/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 13:56+0000\n"
+"PO-Revision-Date: 2016-03-03 18:23+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429797404.000000\n"
+"X-POOTLE-MTIME: 1457029394.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -6276,22 +6276,24 @@ msgid "\\{ or \\lbrace, \\} or \\rbrace"
msgstr ""
#: 03091100.xhp
+#, fuzzy
msgctxt ""
"03091100.xhp\n"
"par_id3150756\n"
"26\n"
"help.text"
msgid "\\(, \\)"
-msgstr ""
+msgstr "\\(, \\)"
#: 03091100.xhp
+#, fuzzy
msgctxt ""
"03091100.xhp\n"
"par_id3145207\n"
"27\n"
"help.text"
msgid "\\[, \\]"
-msgstr ""
+msgstr "\\[, \\]"
#: 03091100.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/swriter/01.po b/source/bs/helpcontent2/source/text/swriter/01.po
index f5ddcd89259..9d56ec0c97d 100644
--- a/source/bs/helpcontent2/source/text/swriter/01.po
+++ b/source/bs/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 15:51+0000\n"
+"PO-Revision-Date: 2016-03-03 18:38+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431359519.000000\n"
+"X-POOTLE-MTIME: 1457030313.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -11015,13 +11015,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr ""
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -12211,13 +12212,14 @@ msgid "To create an index entry from a paragraph style, click the style in the<e
msgstr ""
#: 04120219.xhp
+#, fuzzy
msgctxt ""
"04120219.xhp\n"
"hd_id3150762\n"
"6\n"
"help.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: 04120219.xhp
msgctxt ""
@@ -12229,13 +12231,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/assignstylesdialog/left\" visibility=\"vi
msgstr ""
#: 04120219.xhp
+#, fuzzy
msgctxt ""
"04120219.xhp\n"
"hd_id3151178\n"
"8\n"
"help.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: 04120219.xhp
msgctxt ""
@@ -14488,13 +14491,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertscript/urlentry\">Adds a link to a
msgstr ""
#: 04200000.xhp
+#, fuzzy
msgctxt ""
"04200000.xhp\n"
"par_id3152963\n"
"15\n"
"help.text"
msgid "<SCRIPT LANGUAGE=\"JavaScript\" SRC=\"url\">"
-msgstr ""
+msgstr "<SCRIPT LANGUAGE=\"JavaScript\" SRC=\"url\">"
#: 04200000.xhp
msgctxt ""
@@ -14506,13 +14510,14 @@ msgid "/* ignore all text here */"
msgstr ""
#: 04200000.xhp
+#, fuzzy
msgctxt ""
"04200000.xhp\n"
"par_id3154574\n"
"17\n"
"help.text"
msgid "</SCRIPT>"
-msgstr ""
+msgstr "</SCRIPT>"
#: 04200000.xhp
msgctxt ""
@@ -27729,12 +27734,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr ""
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27745,12 +27751,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr ""
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27937,12 +27944,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr ""
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27953,12 +27961,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elem
msgstr ""
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28393,12 +28402,13 @@ msgid "<ahelp hid=\".\">Select an address field and drag the field to the other
msgstr ""
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28409,12 +28419,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr ""
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/swriter/02.po b/source/bs/helpcontent2/source/text/swriter/02.po
index 96e708b6fce..8617b88bf11 100644
--- a/source/bs/helpcontent2/source/text/swriter/02.po
+++ b/source/bs/helpcontent2/source/text/swriter/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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 13:57+0000\n"
+"PO-Revision-Date: 2016-03-03 18:40+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429797422.000000\n"
+"X-POOTLE-MTIME: 1457030407.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1668,13 +1668,14 @@ msgid "Subtraction"
msgstr ""
#: 14020000.xhp
+#, fuzzy
msgctxt ""
"14020000.xhp\n"
"par_id3150087\n"
"12\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 14020000.xhp
msgctxt ""
diff --git a/source/bs/reportdesign/uiconfig/dbreport/ui.po b/source/bs/reportdesign/uiconfig/dbreport/ui.po
index e11a99cc283..af3f383301b 100644
--- a/source/bs/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/bs/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2015-05-12 02:22+0000\n"
+"PO-Revision-Date: 2016-03-07 20:18+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431397348.000000\n"
+"X-POOTLE-MTIME: 1457381938.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -198,13 +198,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -216,13 +217,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -279,13 +281,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/bs/sw/uiconfig/swriter/ui.po b/source/bs/sw/uiconfig/swriter/ui.po
index cdbb18c0938..b211af0c493 100644
--- a/source/bs/sw/uiconfig/swriter/ui.po
+++ b/source/bs/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-25 20:45+0000\n"
+"PO-Revision-Date: 2016-03-07 21:59+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440535532.000000\n"
+"X-POOTLE-MTIME: 1457387981.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2490,13 +2490,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2508,13 +2509,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -8608,13 +8610,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8626,13 +8629,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
diff --git a/source/bs/vcl/source/src.po b/source/bs/vcl/source/src.po
index 52764871c41..82d461db1b6 100644
--- a/source/bs/vcl/source/src.po
+++ b/source/bs/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 15:11+0000\n"
+"PO-Revision-Date: 2016-03-07 22:03+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449846686.000000\n"
+"X-POOTLE-MTIME: 1457388201.000000\n"
#: app.src
msgctxt ""
@@ -1174,12 +1174,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1456,13 +1457,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/01.po b/source/ca-valencia/helpcontent2/source/text/shared/01.po
index ef5c21663fa..06d011b7f5c 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/01.po
+++ b/source/ca-valencia/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-12 13:01+0000\n"
+"PO-Revision-Date: 2016-03-03 17:43+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-Language: ca-XV\n"
-"X-POOTLE-MTIME: 1452603683.000000\n"
+"X-POOTLE-MTIME: 1457027017.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7490,13 +7490,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr "Representa qualsevol caràcter simple, llevat que s'indiqui el contrari."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7508,13 +7509,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr "Representa un únic caràcter, excepte un salt de línia o de paràgraf. Si cerqueu \"c.la\", per exemple, es troba \"cala\" i \"cola\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7526,13 +7528,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr "Troba el terme de cerca només si apareix al començament d'un paràgraf. S'ignoren els caràcters especials (com ara els camps buits i els marcs ancorats com a caràcters) situats al començament d'un paràgraf. Exemple: \"^Pere\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7552,13 +7555,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr "$ per si mateix coincideix amb el fi de paràgraf. Així és possible cercar i substituir salts de paràgraf."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7597,13 +7601,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr "El sistema sempre troba la cadena més llarga que coincideix amb el patró de cerca en un paràgraf. Si el paràgraf conté la cadena AX 4 AX4, es realça tot el passatge."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7615,13 +7620,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr "Troba el caràcter zero o un dels caràcters que es troben davant del signe \"?\". Per exemple, \"Texts?\" troba \"Text\" i \"Texts\", i \"x(ab|c)?y\" troba \"xy\", \"xaby\" o \"xcy\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -15827,13 +15833,14 @@ msgid "Explanation"
msgstr "Explicació"
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/explorer/database.po b/source/ca-valencia/helpcontent2/source/text/shared/explorer/database.po
index 8a072290b6e..a14cd343b85 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/ca-valencia/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-11 16:06+0000\n"
+"PO-Revision-Date: 2016-03-03 18:09+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-Language: ca-XV\n"
-"X-POOTLE-MTIME: 1431360415.000000\n"
+"X-POOTLE-MTIME: 1457028590.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1761,13 +1761,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr "... el contingut del camp no es correspon amb l'expressió indicada."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1788,13 +1789,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr "... el contingut del camp és major que l'expressió indicada."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2794,13 +2796,14 @@ msgid "No"
msgstr "No"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6231,13 +6234,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Llista els índexs disponibles que podeu assignar a una taula.</ahelp> Feu clic a la icona de fletxa esquerra per assignar un índex a una taula seleccionada. La fletxa esquerra doble assigna tots els índexs disponibles."
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6267,13 +6271,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Mou tots els índexs lliures a la llista <emph>Índexs de la taula</emph>.</ahelp>"
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12421,12 +12426,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr "<ahelp hid=\".\">Afig una fila de controls nova.</ahelp>"
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14445,12 +14451,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr "<ahelp hid=\".\">Seleccioneu un camp per editar-ne la informació corresponent.</ahelp>"
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter/01.po b/source/ca-valencia/helpcontent2/source/text/swriter/01.po
index 1ac8f2ce323..37efdaac98f 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/01.po
+++ b/source/ca-valencia/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 16:09+0000\n"
+"PO-Revision-Date: 2016-03-03 19:11+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-Language: ca-XV\n"
-"X-POOTLE-MTIME: 1431360572.000000\n"
+"X-POOTLE-MTIME: 1457032272.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -11043,13 +11043,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Seleccioneu l'estil de paràgraf al qual voleu aplicar el nivell d'índex seleccionat, i feu clic al botó Assigna (<emph><)</emph>.</ahelp>"
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -27780,12 +27781,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">Seleccioneu un camp i arrossegueu-lo a l'altra llista.</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27796,12 +27798,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">Afig el camp seleccionat de la llista Elements de l'adreça a l'altra llista. Podeu afegir el mateix camp més d'una vegada.</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27988,12 +27991,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">Seleccioneu un camp i arrossegueu-lo a l'altra llista.</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28004,12 +28008,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elem
msgstr "<ahelp hid=\".\">Afig el camp seleccionat de la llista Elements de salutació a l'altra llista. Podeu afegir un camp més d'una vegada.</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28444,12 +28449,13 @@ msgid "<ahelp hid=\".\">Select an address field and drag the field to the other
msgstr "<ahelp hid=\".\">Seleccioneu un camp d'adreça i arrossegueu-lo a l'altra llista.</ahelp>"
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28460,12 +28466,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">Afig el camp seleccionat de la llista Elements de l'adreça a l'altra llista.</ahelp> Podeu afegir el mateix camp més d'una vegada."
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter/02.po b/source/ca-valencia/helpcontent2/source/text/swriter/02.po
index b162adf04b6..419d0eeff44 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/02.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter/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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 14:09+0000\n"
+"PO-Revision-Date: 2016-03-03 19:14+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca-valencia\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-Language: ca-XV\n"
-"X-POOTLE-MTIME: 1429798160.000000\n"
+"X-POOTLE-MTIME: 1457032486.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1674,13 +1674,14 @@ msgid "Subtraction"
msgstr "Resta"
#: 14020000.xhp
+#, fuzzy
msgctxt ""
"14020000.xhp\n"
"par_id3150087\n"
"12\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 14020000.xhp
msgctxt ""
diff --git a/source/cs/sd/source/ui/app.po b/source/cs/sd/source/ui/app.po
index 13ebe1f5583..4f6ace19610 100644
--- a/source/cs/sd/source/ui/app.po
+++ b/source/cs/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2016-01-02 16:15+0000\n"
-"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 23:00+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"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-POOTLE-MTIME: 1451751306.000000\n"
+"X-POOTLE-MTIME: 1457391622.000000\n"
#: menuids3_tmpl.src
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"SID_CHANGEBEZIER\n"
"menuitem.text"
msgid "To ~Curve"
-msgstr "Na křivku"
+msgstr "Na ~křivku"
#: menuids3_tmpl.src
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"SID_CHANGEPOLYGON\n"
"menuitem.text"
msgid "To ~Polygon"
-msgstr "Na mnohoúhelník"
+msgstr "Na ~mnohoúhelník"
#: menuids3_tmpl.src
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"SID_CONVERT_TO_CONTOUR\n"
"menuitem.text"
msgid "To C~ontour"
-msgstr "Na obrys"
+msgstr "Na ~obrys"
#: menuids3_tmpl.src
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"SID_CONVERT_TO_3D\n"
"menuitem.text"
msgid "To 3~D"
-msgstr "Na 3D objekt"
+msgstr "Na 3D o~bjekt"
#: menuids3_tmpl.src
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"SID_CONVERT_TO_BITMAP\n"
"menuitem.text"
msgid "To ~Bitmap"
-msgstr "Na rastr"
+msgstr "Na ~rastr"
#: menuids3_tmpl.src
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"SID_CONVERT_TO_METAFILE\n"
"menuitem.text"
msgid "To ~Metafile"
-msgstr "Na metasoubor"
+msgstr "Na meta~soubor"
#: menuids3_tmpl.src
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"SID_CONVERT_TO_3D_LATHE_FAST\n"
"menuitem.text"
msgid "To 3D ~Rotation Object"
-msgstr "Na 3D rotační objekt"
+msgstr "Na 3D ro~tační objekt"
#: menuids3_tmpl.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"SID_VERTICAL\n"
"menuitem.text"
msgid "~Vertically"
-msgstr "Svisle"
+msgstr "~Svisle"
#: menuids3_tmpl.src
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"SID_HORIZONTAL\n"
"menuitem.text"
msgid "~Horizontally"
-msgstr "Vodorovně"
+msgstr "~Vodorovně"
#: menuids3_tmpl.src
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"SID_3D_WIN\n"
"menuitem.text"
msgid "~3D Effects"
-msgstr "3D efekty"
+msgstr "3D ~efekty"
#: menuids3_tmpl.src
msgctxt ""
@@ -113,7 +113,7 @@ msgctxt ""
"SID_PRESENTATION_LAYOUT\n"
"menuitem.text"
msgid "~Slide Design..."
-msgstr "~Návrh snímku..."
+msgstr "Návr~h snímku..."
#: menuids3_tmpl.src
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"SID_PRESENTATION_LAYOUT\n"
"menuitem.text"
msgid "~Page Design..."
-msgstr "~Návrh stránky..."
+msgstr "Návr~h stránky..."
#: menuids3_tmpl.src
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"SID_SLIDE_TRANSITIONS_PANEL\n"
"menuitem.text"
msgid "Slide ~Transition"
-msgstr "Přechod snímku"
+msgstr "Pře~chod snímku"
#: menuids3_tmpl.src
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"SID_HIDE_SLIDE\n"
"menuitem.text"
msgid "~Hide Slide"
-msgstr "Skrýt snímek"
+msgstr "~Skrýt snímek"
#: menuids_tmpl.src
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"SID_DISTRIBUTE_DLG\n"
"menuitem.text"
msgid "~Distribution..."
-msgstr "Rozmístit..."
+msgstr "~Rozmístit..."
#: menuids_tmpl.src
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"SID_INSERT_GRAPHIC\n"
"menuitem.text"
msgid "Insert I~mage..."
-msgstr "Vložit obrázek..."
+msgstr "Vložit ~obrázek..."
#: menuids_tmpl.src
msgctxt ""
@@ -176,7 +176,7 @@ msgctxt ""
"SID_CAPTUREPOINT\n"
"menuitem.text"
msgid "~Insert Snap Point/Line..."
-msgstr "Vložit záchytný bod/vodítko..."
+msgstr "Vložit ~záchytný bod/vodítko..."
#: menuids_tmpl.src
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"SID_SET_SNAPITEM\n"
"menuitem.text"
msgid "~Edit..."
-msgstr "Upravit..."
+msgstr "~Upravit..."
#: menuids_tmpl.src
msgctxt ""
@@ -212,7 +212,7 @@ msgctxt ""
"SID_PAGESETUP\n"
"menuitem.text"
msgid "~Page Setup..."
-msgstr "Nastavení stránky..."
+msgstr "~Nastavení stránky..."
#: menuids_tmpl.src
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"SID_INSERTPAGE\n"
"menuitem.text"
msgid "~New Slide"
-msgstr "Nový snímek"
+msgstr "~Nový snímek"
#: menuids_tmpl.src
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"SID_DUPLICATE_PAGE\n"
"menuitem.text"
msgid "~Duplicate Slide"
-msgstr "Duplikovat snímek"
+msgstr "~Duplikovat snímek"
#: menuids_tmpl.src
msgctxt ""
@@ -248,7 +248,7 @@ msgctxt ""
"SID_INSERT_MASTER_PAGE\n"
"menuitem.text"
msgid "~New Master"
-msgstr "Nová předloha"
+msgstr "~Nová předloha"
#: menuids_tmpl.src
msgctxt ""
@@ -257,7 +257,7 @@ msgctxt ""
"SID_INSERTPAGE\n"
"menuitem.text"
msgid "~New Page"
-msgstr "Nová stránka"
+msgstr "~Nová stránka"
#: menuids_tmpl.src
msgctxt ""
@@ -284,7 +284,7 @@ msgctxt ""
"SID_DISPLAY_MASTER_BACKGROUND\n"
"menuitem.text"
msgid "Display Background of Master"
-msgstr "Zobrazit pozadí předlohy"
+msgstr "Zobrazit po~zadí předlohy"
#: menuids_tmpl.src
msgctxt ""
@@ -293,7 +293,7 @@ msgctxt ""
"SID_DISPLAY_MASTER_OBJECTS\n"
"menuitem.text"
msgid "Display Objects from Master"
-msgstr "Zobrazit objekty z předlohy"
+msgstr "Zobrazit o~bjekty z předlohy"
#: menuids_tmpl.src
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"DUMMY+3\n"
"menuitem.text"
msgid "Pag~e"
-msgstr "Stránka"
+msgstr "~Stránka"
#: menuids_tmpl.src
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"DUMMY+8\n"
"menuitem.text"
msgid "Slid~e"
-msgstr "Snímek"
+msgstr "~Snímek"
#: menuids_tmpl.src
msgctxt ""
@@ -320,7 +320,7 @@ msgctxt ""
"SID_RENAMELAYER\n"
"menuitem.text"
msgid "~Rename Layer..."
-msgstr "Přejmenovat vrstvu..."
+msgstr "~Přejmenovat vrstvu..."
#: menuids_tmpl.src
msgctxt ""
@@ -329,7 +329,7 @@ msgctxt ""
"SID_DELETE_PAGE\n"
"menuitem.text"
msgid "D~elete Slide"
-msgstr "Odstranit snímek"
+msgstr "~Odstranit snímek"
#: menuids_tmpl.src
msgctxt ""
@@ -338,7 +338,7 @@ msgctxt ""
"SID_DELETE_MASTER_PAGE\n"
"menuitem.text"
msgid "D~elete Master"
-msgstr "Odstranit předlohu"
+msgstr "~Odstranit předlohu"
#: menuids_tmpl.src
msgctxt ""
@@ -347,7 +347,7 @@ msgctxt ""
"SID_DELETE_PAGE\n"
"menuitem.text"
msgid "D~elete Page"
-msgstr "Odstranit stránku"
+msgstr "~Odstranit stránku"
#: menuids_tmpl.src
msgctxt ""
@@ -365,7 +365,7 @@ msgctxt ""
"SID_RENAME_MASTER_PAGE\n"
"menuitem.text"
msgid "~Rename Master"
-msgstr "Přejmenovat předlohu"
+msgstr "~Přejmenovat předlohu"
#: menuids_tmpl.src
msgctxt ""
@@ -383,7 +383,7 @@ msgctxt ""
"SID_ATTRIBUTES_LINE\n"
"menuitem.text"
msgid "L~ine..."
-msgstr "Čára..."
+msgstr "Čá~ra..."
#: menuids_tmpl.src
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"SID_ATTRIBUTES_AREA\n"
"menuitem.text"
msgid "~Area..."
-msgstr "Oblast..."
+msgstr "~Oblast..."
#: menuids_tmpl.src
msgctxt ""
@@ -401,7 +401,7 @@ msgctxt ""
"SID_TEXTATTR_DLG\n"
"menuitem.text"
msgid "~Text..."
-msgstr "Text..."
+msgstr "~Text..."
#: menuids_tmpl.src
msgctxt ""
@@ -419,7 +419,7 @@ msgctxt ""
"SID_CONNECTION_DLG\n"
"menuitem.text"
msgid "~Connector..."
-msgstr "Spojnice..."
+msgstr "Spojni~ce..."
#: menuids_tmpl.src
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"SID_CONNECTION_NEW_ROUTING\n"
"menuitem.text"
msgid "Reset ~Routing"
-msgstr "Obnovit směrování"
+msgstr "Obnovit ~směrování"
#: menuids_tmpl.src
msgctxt ""
@@ -437,7 +437,7 @@ msgctxt ""
"SID_MEASURE_DLG\n"
"menuitem.text"
msgid "Dimen~sions..."
-msgstr "Rozměry..."
+msgstr "~Rozměry..."
#: menuids_tmpl.src
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"SID_ATTR_TRANSFORM\n"
"menuitem.text"
msgid "Position and Si~ze..."
-msgstr "Umístění a velikost..."
+msgstr "U~místění a velikost..."
#: menuids_tmpl.src
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"SID_BEZIER_EDIT\n"
"menuitem.text"
msgid "Edit ~Points"
-msgstr "Upravit body"
+msgstr "Upravit ~body"
#: menuids_tmpl.src
msgctxt ""
@@ -464,7 +464,7 @@ msgctxt ""
"SID_FRAME_TO_TOP\n"
"menuitem.text"
msgid "~Bring to Front"
-msgstr "Přenést do popředí"
+msgstr "~Přenést do popředí"
#: menuids_tmpl.src
msgctxt ""
@@ -473,7 +473,7 @@ msgctxt ""
"SID_MOREFRONT\n"
"menuitem.text"
msgid "Bring ~Forward"
-msgstr "Přenést blíž"
+msgstr "Přenést ~blíž"
#: menuids_tmpl.src
msgctxt ""
@@ -482,7 +482,7 @@ msgctxt ""
"SID_MOREBACK\n"
"menuitem.text"
msgid "Send Back~ward"
-msgstr "Odsunout dál"
+msgstr "Odsunout ~dál"
#: menuids_tmpl.src
msgctxt ""
@@ -491,7 +491,7 @@ msgctxt ""
"SID_FRAME_TO_BOTTOM\n"
"menuitem.text"
msgid "~Send to Back"
-msgstr "Odsunout do pozadí"
+msgstr "~Odsunout do pozadí"
#: menuids_tmpl.src
msgctxt ""
@@ -500,7 +500,7 @@ msgctxt ""
"SID_BEFORE_OBJ\n"
"menuitem.text"
msgid "In Front of ~Object"
-msgstr "Před objekt"
+msgstr "Př~ed objekt"
#: menuids_tmpl.src
msgctxt ""
@@ -509,7 +509,7 @@ msgctxt ""
"SID_BEHIND_OBJ\n"
"menuitem.text"
msgid "Be~hind Object"
-msgstr "Za objekt"
+msgstr "~Za objekt"
#: menuids_tmpl.src
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"SID_REVERSE_ORDER\n"
"menuitem.text"
msgid "~Reverse"
-msgstr "Prohodit"
+msgstr "Pro~hodit"
#: menuids_tmpl.src
msgctxt ""
@@ -527,7 +527,7 @@ msgctxt ""
"SID_POSITION\n"
"menuitem.text"
msgid "Arra~nge"
-msgstr "Uspořádat"
+msgstr "~Uspořádat"
#: menuids_tmpl.src
msgctxt ""
@@ -536,7 +536,7 @@ msgctxt ""
"SID_CHAR_DLG\n"
"menuitem.text"
msgid "C~haracter..."
-msgstr "Znak..."
+msgstr "~Znak..."
#: menuids_tmpl.src
msgctxt ""
@@ -545,7 +545,7 @@ msgctxt ""
"SID_PARA_DLG\n"
"menuitem.text"
msgid "P~aragraph..."
-msgstr "Odstavec..."
+msgstr "~Odstavec..."
#: menuids_tmpl.src
msgctxt ""
@@ -554,7 +554,7 @@ msgctxt ""
"SID_CHARMAP\n"
"menuitem.text"
msgid "S~pecial Character..."
-msgstr "Speciální znak..."
+msgstr "~Speciální znak..."
#: menuids_tmpl.src
msgctxt ""
@@ -563,7 +563,7 @@ msgctxt ""
"SID_OBJECT_ALIGN_LEFT\n"
"menuitem.text"
msgid "~Left"
-msgstr "Vlevo"
+msgstr "V~levo"
#: menuids_tmpl.src
msgctxt ""
@@ -572,7 +572,7 @@ msgctxt ""
"SID_OBJECT_ALIGN_CENTER\n"
"menuitem.text"
msgid "~Centered"
-msgstr "Na střed"
+msgstr "~Na střed"
#: menuids_tmpl.src
msgctxt ""
@@ -581,7 +581,7 @@ msgctxt ""
"SID_OBJECT_ALIGN_RIGHT\n"
"menuitem.text"
msgid "~Right"
-msgstr "Vpravo"
+msgstr "V~pravo"
#: menuids_tmpl.src
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"SID_OBJECT_ALIGN_UP\n"
"menuitem.text"
msgid "~Top"
-msgstr "Nahoru"
+msgstr "Na~horu"
#: menuids_tmpl.src
msgctxt ""
@@ -599,7 +599,7 @@ msgctxt ""
"SID_OBJECT_ALIGN_MIDDLE\n"
"menuitem.text"
msgid "C~enter"
-msgstr "Střed"
+msgstr "~Střed"
#: menuids_tmpl.src
msgctxt ""
@@ -608,7 +608,7 @@ msgctxt ""
"SID_OBJECT_ALIGN_DOWN\n"
"menuitem.text"
msgid "~Bottom"
-msgstr "Dolů"
+msgstr "~Dolů"
#: menuids_tmpl.src
msgctxt ""
@@ -617,7 +617,7 @@ msgctxt ""
"SID_OBJECT_ALIGN\n"
"menuitem.text"
msgid "Al~ign"
-msgstr "Zarovnat"
+msgstr "~Zarovnat"
#: menuids_tmpl.src
msgctxt ""
@@ -626,7 +626,7 @@ msgctxt ""
"SID_OBJECT_CLOSE\n"
"menuitem.text"
msgid "Close ~Object"
-msgstr "Uzavřít objekt"
+msgstr "Uzavřít obj~ekt"
#: menuids_tmpl.src
msgctxt ""
@@ -635,7 +635,7 @@ msgctxt ""
"SID_BEZIER_EDIT\n"
"menuitem.text"
msgid "Edit ~Points"
-msgstr "Upravit body"
+msgstr "Upravit ~body"
#: menuids_tmpl.src
msgctxt ""
@@ -644,7 +644,7 @@ msgctxt ""
"SID_BEZIER_MOVE\n"
"menuitem.text"
msgid "~Move Points"
-msgstr "Přesunout body"
+msgstr "~Přesunout body"
#: menuids_tmpl.src
msgctxt ""
@@ -653,7 +653,7 @@ msgctxt ""
"SID_BEZIER_INSERT\n"
"menuitem.text"
msgid "Insert ~Points"
-msgstr "Vložit body"
+msgstr "~Vložit body"
#: menuids_tmpl.src
msgctxt ""
@@ -671,7 +671,7 @@ msgctxt ""
"SID_BEZIER_CLOSE\n"
"menuitem.text"
msgid "Close ~Object"
-msgstr "Uzavřít objekt"
+msgstr "Uzavřít obj~ekt"
#: menuids_tmpl.src
msgctxt ""
@@ -680,7 +680,7 @@ msgctxt ""
"SID_BEZIER_CUTLINE\n"
"menuitem.text"
msgid "~Split Curve"
-msgstr "Rozdělit křivku"
+msgstr "~Rozdělit křivku"
#: menuids_tmpl.src
msgctxt ""
@@ -689,7 +689,7 @@ msgctxt ""
"SID_BEZIER_CONVERT\n"
"menuitem.text"
msgid "Con~vert to Curve"
-msgstr "Převést na křivku"
+msgstr "Převést na ~křivku"
#: menuids_tmpl.src
msgctxt ""
@@ -698,7 +698,7 @@ msgctxt ""
"SID_BEZIER_EDGE\n"
"menuitem.text"
msgid "~Corner"
-msgstr "Roh"
+msgstr "Ro~h"
#: menuids_tmpl.src
msgctxt ""
@@ -707,7 +707,7 @@ msgctxt ""
"SID_BEZIER_SMOOTH\n"
"menuitem.text"
msgid "Smoot~h"
-msgstr "Vyhladit"
+msgstr "Vyhla~dit"
#: menuids_tmpl.src
msgctxt ""
@@ -716,7 +716,7 @@ msgctxt ""
"SID_BEZIER_SYMMTR\n"
"menuitem.text"
msgid "S~ymmetric"
-msgstr "Symetrický"
+msgstr "~Symetrický"
#: menuids_tmpl.src
msgctxt ""
@@ -725,7 +725,7 @@ msgctxt ""
"SID_BEZIER_ELIMINATE_POINTS\n"
"menuitem.text"
msgid "~Reduce Points"
-msgstr "Redukovat body"
+msgstr "Red~ukovat body"
#: menuids_tmpl.src
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"SID_GROUP\n"
"menuitem.text"
msgid "~Group"
-msgstr "Seskupit"
+msgstr "~Seskupit"
#: menuids_tmpl.src
msgctxt ""
@@ -743,7 +743,7 @@ msgctxt ""
"SID_UNGROUP\n"
"menuitem.text"
msgid "~Ungroup"
-msgstr "Zrušit skupinu"
+msgstr "Zrušit ~skupinu"
#: menuids_tmpl.src
msgctxt ""
@@ -752,7 +752,7 @@ msgctxt ""
"SID_COMBINE\n"
"menuitem.text"
msgid "Comb~ine"
-msgstr "Složit"
+msgstr "Složi~t"
#: menuids_tmpl.src
msgctxt ""
@@ -761,7 +761,7 @@ msgctxt ""
"SID_DISMANTLE\n"
"menuitem.text"
msgid "~Split"
-msgstr "Rozdělit"
+msgstr "Rozděli~t"
#: menuids_tmpl.src
msgctxt ""
@@ -770,7 +770,7 @@ msgctxt ""
"SID_ENTER_GROUP\n"
"menuitem.text"
msgid "~Enter Group"
-msgstr "Upravit skupinu"
+msgstr "Upravit skupi~nu"
#: menuids_tmpl.src
msgctxt ""
@@ -779,7 +779,7 @@ msgctxt ""
"SID_LEAVE_GROUP\n"
"menuitem.text"
msgid "E~xit Group"
-msgstr "Opustit skupinu"
+msgstr "Opustit skupi~nu"
#: menuids_tmpl.src
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"SID_ANIMATION_EFFECTS\n"
"menuitem.text"
msgid "Int~eraction..."
-msgstr "Interakce..."
+msgstr "~Interakce..."
#: menuids_tmpl.src
msgctxt ""
@@ -815,7 +815,7 @@ msgctxt ""
"SID_PRESENTATIONOBJECT\n"
"menuitem.text"
msgid "Presentation ~Object..."
-msgstr "Prezentační objekt..."
+msgstr "Prezentační ~objekt..."
#: menuids_tmpl.src
msgctxt ""
@@ -833,7 +833,7 @@ msgctxt ""
"SID_SET_DEFAULT\n"
"menuitem.text"
msgid "~Default Formatting"
-msgstr "Výchozí formátování"
+msgstr "Výchozí ~formátování"
#: menuids_tmpl.src
msgctxt ""
@@ -842,7 +842,7 @@ msgctxt ""
"SID_FONTWORK\n"
"menuitem.text"
msgid "F~ontwork"
-msgstr "Písmomalba"
+msgstr "Písmo~malba"
#: menuids_tmpl.src
msgctxt ""
@@ -851,7 +851,7 @@ msgctxt ""
"SID_ORIGINAL_SIZE\n"
"menuitem.text"
msgid "Restore ~Original Size"
-msgstr "Obnovit původní velikost"
+msgstr "Obnovit ~původní velikost"
#: menuids_tmpl.src
msgctxt ""
@@ -860,7 +860,7 @@ msgctxt ""
"SID_OBJECT_CROP\n"
"menuitem.text"
msgid "Crop I~mage"
-msgstr "Oříznout obrázek"
+msgstr "~Oříznout obrázek"
#: menuids_tmpl.src
msgctxt ""
@@ -869,7 +869,7 @@ msgctxt ""
"SID_GLUE_INSERT_POINT\n"
"menuitem.text"
msgid "Insert ~Point"
-msgstr "Vložit bod"
+msgstr "Vložit ~bod"
#: menuids_tmpl.src
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"SID_GLUE_ESCDIR_LEFT\n"
"menuitem.text"
msgid "~Left"
-msgstr "Vlevo"
+msgstr "V~levo"
#: menuids_tmpl.src
msgctxt ""
@@ -887,7 +887,7 @@ msgctxt ""
"SID_GLUE_ESCDIR_TOP\n"
"menuitem.text"
msgid "~Top"
-msgstr "Nahoru"
+msgstr "Na~horu"
#: menuids_tmpl.src
msgctxt ""
@@ -896,7 +896,7 @@ msgctxt ""
"SID_GLUE_ESCDIR_RIGHT\n"
"menuitem.text"
msgid "~Right"
-msgstr "Vpravo"
+msgstr "V~pravo"
#: menuids_tmpl.src
msgctxt ""
@@ -905,7 +905,7 @@ msgctxt ""
"SID_GLUE_ESCDIR_BOTTOM\n"
"menuitem.text"
msgid "~Bottom"
-msgstr "Dolů"
+msgstr "~Dolů"
#: menuids_tmpl.src
msgctxt ""
@@ -914,7 +914,7 @@ msgctxt ""
"SID_GLUE_PERCENT\n"
"menuitem.text"
msgid "~Adapt Position to Object"
-msgstr "Přizpůsobit umístění objektu"
+msgstr "~Přizpůsobit umístění objektu"
#: menuids_tmpl.src
msgctxt ""
@@ -923,7 +923,7 @@ msgctxt ""
"SID_GLUE_HORZALIGN_LEFT\n"
"menuitem.text"
msgid "Fixed ~Horizontal Left"
-msgstr "Pevné vodorovně vlevo"
+msgstr "Pevné ~vodorovně vlevo"
#: menuids_tmpl.src
msgctxt ""
@@ -932,7 +932,7 @@ msgctxt ""
"SID_GLUE_HORZALIGN_CENTER\n"
"menuitem.text"
msgid "Fixed Horizontal ~Center"
-msgstr "Pevné vodorovně ve středu"
+msgstr "Pevné vodorovně ve ~středu"
#: menuids_tmpl.src
msgctxt ""
@@ -941,7 +941,7 @@ msgctxt ""
"SID_GLUE_HORZALIGN_RIGHT\n"
"menuitem.text"
msgid "Fixed Hori~zontal Right"
-msgstr "Pevné vodorovně vpravo"
+msgstr "Pevné vo~dorovně vpravo"
#: menuids_tmpl.src
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"SID_GLUE_VERTALIGN_TOP\n"
"menuitem.text"
msgid "Fixed ~Vertical Top"
-msgstr "Pevné svisle nahoře"
+msgstr "Pevné ~svisle nahoře"
#: menuids_tmpl.src
msgctxt ""
@@ -959,7 +959,7 @@ msgctxt ""
"SID_GLUE_VERTALIGN_CENTER\n"
"menuitem.text"
msgid "Fixed V~ertical Center"
-msgstr "Pevné svisle ve středu"
+msgstr "Pevné svisle ve stř~edu"
#: menuids_tmpl.src
msgctxt ""
@@ -968,7 +968,7 @@ msgctxt ""
"SID_GLUE_VERTALIGN_BOTTOM\n"
"menuitem.text"
msgid "Fixed Ver~tical Bottom"
-msgstr "Pevné svisle dole"
+msgstr "Pevné svisl~e dole"
#: menuids_tmpl.src
msgctxt ""
@@ -986,7 +986,7 @@ msgctxt ""
"SID_GRID_VISIBLE\n"
"menuitem.text"
msgid "~Display Grid"
-msgstr "Zobrazit ~mřížku"
+msgstr "~Zobrazit mřížku"
#: menuids_tmpl.src
msgctxt ""
@@ -995,7 +995,7 @@ msgctxt ""
"SID_GRID_USE\n"
"menuitem.text"
msgid "Snap to Grid"
-msgstr "Přichytit k mřížce"
+msgstr "~Přichytit k mřížce"
#: menuids_tmpl.src
msgctxt ""
@@ -1004,7 +1004,7 @@ msgctxt ""
"SID_GRID_FRONT\n"
"menuitem.text"
msgid "Grid to ~Front"
-msgstr "Mřížka do popředí"
+msgstr "Mřížka ~do popředí"
#: menuids_tmpl.src
msgctxt ""
@@ -1013,7 +1013,7 @@ msgctxt ""
"DUMMY+5\n"
"menuitem.text"
msgid "~Grid"
-msgstr "Mřížka"
+msgstr "~Mřížka"
#: menuids_tmpl.src
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"SID_HELPLINES_VISIBLE\n"
"menuitem.text"
msgid "~Display Snap Lines"
-msgstr "Zobrazit ~vodítka"
+msgstr "~Zobrazit vodítka"
#: menuids_tmpl.src
msgctxt ""
@@ -1031,7 +1031,7 @@ msgctxt ""
"SID_HELPLINES_USE\n"
"menuitem.text"
msgid "~Snap to Snap Lines"
-msgstr "Přichytit k vodítkům"
+msgstr "~Přichytit k vodítkům"
#: menuids_tmpl.src
msgctxt ""
@@ -1040,7 +1040,7 @@ msgctxt ""
"SID_HELPLINES_FRONT\n"
"menuitem.text"
msgid "Snap Lines to ~Front"
-msgstr "Vodítka do popředí"
+msgstr "Vodítka ~do popředí"
#: menuids_tmpl.src
msgctxt ""
@@ -1049,7 +1049,7 @@ msgctxt ""
"DUMMY+6\n"
"menuitem.text"
msgid "~Snap Lines"
-msgstr "Vodítka"
+msgstr "Vo~dítka"
#: menuids_tmpl.src
msgctxt ""
@@ -1058,7 +1058,7 @@ msgctxt ""
"SID_CONVERT\n"
"menuitem.text"
msgid "Con~vert"
-msgstr "Převést"
+msgstr "Př~evést"
#: menuids_tmpl.src
msgctxt ""
@@ -1067,7 +1067,7 @@ msgctxt ""
"SID_MIRROR\n"
"menuitem.text"
msgid "~Flip"
-msgstr "Překlopit"
+msgstr "~Překlopit"
#: menuids_tmpl.src
msgctxt ""
@@ -1076,7 +1076,7 @@ msgctxt ""
"SID_CONNECT\n"
"menuitem.text"
msgid "C~onnect"
-msgstr "Spojit"
+msgstr "Spo~jit"
#: menuids_tmpl.src
msgctxt ""
@@ -1085,7 +1085,7 @@ msgctxt ""
"SID_BREAK\n"
"menuitem.text"
msgid "~Break"
-msgstr "Rozpojit"
+msgstr "Rozpoj~it"
#: menuids_tmpl.src
msgctxt ""
@@ -1274,7 +1274,7 @@ msgctxt ""
"SID_INSERTLAYER\n"
"menuitem.text"
msgid "~Insert Layer..."
-msgstr "Vložit vrstvu..."
+msgstr "Vl~ožit vrstvu..."
#: popup.src
msgctxt ""
@@ -1283,7 +1283,7 @@ msgctxt ""
"SID_MODIFYLAYER\n"
"menuitem.text"
msgid "Modify La~yer..."
-msgstr "Upravit vrstvu..."
+msgstr "~Upravit vrstvu..."
#: popup.src
msgctxt ""
@@ -1292,7 +1292,7 @@ msgctxt ""
"SID_DELETE_LAYER\n"
"menuitem.text"
msgid "Delete ~Layer..."
-msgstr "Smazat vrstvu..."
+msgstr "S~mazat vrstvu..."
#: popup.src
msgctxt ""
@@ -1400,7 +1400,7 @@ msgctxt ""
"SID_FORMAT_TABLE_DLG\n"
"menuitem.text"
msgid "~Table..."
-msgstr "Tabulka..."
+msgstr "~Tabulka..."
#: popup2_tmpl.src
msgctxt ""
@@ -1409,7 +1409,7 @@ msgctxt ""
"SID_TABLE_MERGE_CELLS\n"
"menuitem.text"
msgid "~Merge"
-msgstr "Sloučit"
+msgstr "S~loučit"
#: popup2_tmpl.src
msgctxt ""
@@ -1418,7 +1418,7 @@ msgctxt ""
"SID_TABLE_SPLIT_CELLS\n"
"menuitem.text"
msgid "~Split..."
-msgstr "Rozdělit..."
+msgstr "~Rozdělit..."
#: popup2_tmpl.src
msgctxt ""
@@ -1427,7 +1427,7 @@ msgctxt ""
"SID_TABLE_VERT_NONE\n"
"menuitem.text"
msgid "~Top"
-msgstr "Nahoru"
+msgstr "~Nahoru"
#: popup2_tmpl.src
msgctxt ""
@@ -1436,7 +1436,7 @@ msgctxt ""
"SID_TABLE_VERT_CENTER\n"
"menuitem.text"
msgid "C~enter"
-msgstr "Střed"
+msgstr "~Střed"
#: popup2_tmpl.src
msgctxt ""
@@ -1445,7 +1445,7 @@ msgctxt ""
"SID_TABLE_VERT_BOTTOM\n"
"menuitem.text"
msgid "~Bottom"
-msgstr "Dolů"
+msgstr "~Dolů"
#: popup2_tmpl.src
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"DUMMY+10\n"
"menuitem.text"
msgid "~Cell"
-msgstr "Buňka"
+msgstr "~Buňka"
#: popup2_tmpl.src
msgctxt ""
@@ -1463,7 +1463,7 @@ msgctxt ""
"SID_TABLE_DISTRIBUTE_ROWS\n"
"menuitem.text"
msgid "Space ~Equally"
-msgstr "Rovnoměrně rozmístit"
+msgstr "~Rovnoměrně rozmístit"
#: popup2_tmpl.src
msgctxt ""
@@ -1472,7 +1472,7 @@ msgctxt ""
"SID_TABLE_SELECT_ROW\n"
"menuitem.text"
msgid "~Select"
-msgstr "Vybrat"
+msgstr "~Vybrat"
#: popup2_tmpl.src
msgctxt ""
@@ -1481,7 +1481,7 @@ msgctxt ""
"SID_TABLE_INSERT_ROW_DLG\n"
"menuitem.text"
msgid "~Insert..."
-msgstr "Vložit..."
+msgstr "V~ložit..."
#: popup2_tmpl.src
msgctxt ""
@@ -1499,7 +1499,7 @@ msgctxt ""
"DUMMY+11\n"
"menuitem.text"
msgid "~Row"
-msgstr "Řádek"
+msgstr "Řá~dek"
#: popup2_tmpl.src
msgctxt ""
@@ -1508,7 +1508,7 @@ msgctxt ""
"SID_TABLE_DISTRIBUTE_COLUMNS\n"
"menuitem.text"
msgid "Space ~Equally"
-msgstr "Rovnoměrně rozmístit"
+msgstr "~Rovnoměrně rozmístit"
#: popup2_tmpl.src
msgctxt ""
@@ -1517,7 +1517,7 @@ msgctxt ""
"SID_TABLE_SELECT_COL\n"
"menuitem.text"
msgid "~Select"
-msgstr "Vybrat"
+msgstr "~Vybrat"
#: popup2_tmpl.src
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"SID_TABLE_INSERT_COL_DLG\n"
"menuitem.text"
msgid "~Insert..."
-msgstr "Vložit..."
+msgstr "V~ložit..."
#: popup2_tmpl.src
msgctxt ""
@@ -1544,7 +1544,7 @@ msgctxt ""
"DUMMY+12\n"
"menuitem.text"
msgid "Colu~mn"
-msgstr "Sloupec"
+msgstr "~Sloupec"
#: res_bmp.src
msgctxt ""
@@ -2496,7 +2496,7 @@ msgctxt ""
"STR_EDIT_OBJ\n"
"string.text"
msgid "~Edit"
-msgstr "Upravit"
+msgstr "~Upravit"
#: strings.src
msgctxt ""
@@ -2676,7 +2676,7 @@ msgctxt ""
"STR_PLAY\n"
"string.text"
msgid "~Play"
-msgstr "Přehrát"
+msgstr "Pře~hrát"
#: strings.src
msgctxt ""
@@ -2684,7 +2684,7 @@ msgctxt ""
"STR_STOP\n"
"string.text"
msgid "Sto~p"
-msgstr "Zastavit"
+msgstr "~Zastavit"
#: strings.src
msgctxt ""
@@ -2864,7 +2864,7 @@ msgctxt ""
"STR_EFFECTDLG_ACTION\n"
"string.text"
msgid "Act~ion"
-msgstr "Činnost"
+msgstr "Či~nnost"
#: strings.src
msgctxt ""
@@ -3792,7 +3792,7 @@ msgctxt ""
"STR_TASKPANEL_MASTER_PAGE_MENU_LOCK\n"
"string.text"
msgid "~Dock Task Pane"
-msgstr "Ukotvit panel úloh"
+msgstr "U~kotvit panel úloh"
#: strings.src
msgctxt ""
@@ -3800,7 +3800,7 @@ msgctxt ""
"STR_TASKPANEL_MASTER_PAGE_MENU_UNLOCK\n"
"string.text"
msgid "~Undock Task Pane"
-msgstr "Uvolnit panel úloh"
+msgstr "U~volnit panel úloh"
#: strings.src
msgctxt ""
diff --git a/source/cs/sd/source/ui/view.po b/source/cs/sd/source/ui/view.po
index 9c4d5b1656b..a54546748c6 100644
--- a/source/cs/sd/source/ui/view.po
+++ b/source/cs/sd/source/ui/view.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-08-25 12:34+0200\n"
-"PO-Revision-Date: 2015-10-16 14:39+0000\n"
-"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 23:00+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"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-POOTLE-MTIME: 1445006342.000000\n"
+"X-POOTLE-MTIME: 1457391647.000000\n"
#: DocumentRenderer.src
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"_STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT\n"
"string.text"
msgid "~Contents"
-msgstr "Obsah"
+msgstr "~Obsah"
#: DocumentRenderer.src
msgctxt ""
@@ -203,7 +203,7 @@ msgctxt ""
"_STR_IMPRESS_PRINT_UI_IS_PRINT_NAME\n"
"string.text"
msgid "~Slide name"
-msgstr "Název snímku"
+msgstr "~Název snímku"
#: DocumentRenderer.src
msgctxt ""
@@ -212,7 +212,7 @@ msgctxt ""
"_STR_DRAW_PRINT_UI_IS_PRINT_NAME\n"
"string.text"
msgid "P~age name"
-msgstr "Název stránky"
+msgstr "~Název stránky"
#: DocumentRenderer.src
msgctxt ""
@@ -221,7 +221,7 @@ msgctxt ""
"_STR_IMPRESS_PRINT_UI_IS_PRINT_DATE\n"
"string.text"
msgid "~Date and time"
-msgstr "Datum a čas"
+msgstr "~Datum a čas"
#: DocumentRenderer.src
msgctxt ""
@@ -284,7 +284,7 @@ msgctxt ""
"_STR_IMPRESS_PRINT_UI_PAGE_OPTIONS\n"
"string.text"
msgid "~Size"
-msgstr "Velikost"
+msgstr "~Velikost"
#: DocumentRenderer.src
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"_STR_IMPRESS_PRINT_UI_PAPER_TRAY\n"
"string.text"
msgid "~Use only paper tray from printer preferences"
-msgstr "Použít pouze zásobník papíru z předvoleb tiskárny"
+msgstr "Použít pouze ~zásobník papíru z předvoleb tiskárny"
#: DocumentRenderer.src
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"~All slides\n"
"itemlist.text"
msgid "~All slides"
-msgstr "Všechny snímky"
+msgstr "Vše~chny snímky"
#: DocumentRenderer.src
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"~Slides\n"
"itemlist.text"
msgid "~Slides"
-msgstr "Snímky"
+msgstr "~Snímky"
#: DocumentRenderer.src
msgctxt ""
@@ -464,7 +464,7 @@ msgctxt ""
"Se~lection\n"
"itemlist.text"
msgid "Se~lection"
-msgstr "Výběr"
+msgstr "Vý~běr"
#: DocumentRenderer.src
msgctxt ""
@@ -473,7 +473,7 @@ msgctxt ""
"~All pages\n"
"itemlist.text"
msgid "~All pages"
-msgstr "Všechny stránky"
+msgstr "Vše~chny stránky"
#: DocumentRenderer.src
msgctxt ""
@@ -482,7 +482,7 @@ msgctxt ""
"Pa~ges\n"
"itemlist.text"
msgid "Pa~ges"
-msgstr "Stránky"
+msgstr "~Stránky"
#: DocumentRenderer.src
msgctxt ""
@@ -491,4 +491,4 @@ msgctxt ""
"Se~lection\n"
"itemlist.text"
msgid "Se~lection"
-msgstr "Výběr"
+msgstr "Vý~běr"
diff --git a/source/cs/sd/uiconfig/sdraw/ui.po b/source/cs/sd/uiconfig/sdraw/ui.po
index 415cd37cd98..271a05e66b9 100644
--- a/source/cs/sd/uiconfig/sdraw/ui.po
+++ b/source/cs/sd/uiconfig/sdraw/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-11-20 22:36+0000\n"
-"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 23:01+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"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-POOTLE-MTIME: 1448058990.000000\n"
+"X-POOTLE-MTIME: 1457391678.000000\n"
#: breakdialog.ui
msgctxt ""
@@ -644,7 +644,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Name"
-msgstr "Název"
+msgstr "Náz_ev"
#: insertlayer.ui
msgctxt ""
@@ -653,7 +653,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Title"
-msgstr "Nadpis"
+msgstr "Na_dpis"
#: insertlayer.ui
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Description"
-msgstr "Popis"
+msgstr "_Popis"
#: insertlayer.ui
msgctxt ""
@@ -671,7 +671,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Visible"
-msgstr "Viditelná"
+msgstr "_Viditelná"
#: insertlayer.ui
msgctxt ""
@@ -680,7 +680,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Printable"
-msgstr "Tisknutelná"
+msgstr "_Tisknutelná"
#: insertlayer.ui
msgctxt ""
@@ -689,7 +689,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Locked"
-msgstr "Uzamčená"
+msgstr "_Uzamčená"
#: insertslidesdialog.ui
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "R_estart at this paragraph"
-msgstr "Restartovat na začátku tohoto odstavce"
+msgstr "R_estartovat na začátku tohoto odstavce"
#: paranumberingtab.ui
msgctxt ""
diff --git a/source/cs/sd/uiconfig/simpress/ui.po b/source/cs/sd/uiconfig/simpress/ui.po
index 2c9318f2ca5..b184b406dd5 100644
--- a/source/cs/sd/uiconfig/simpress/ui.po
+++ b/source/cs/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-01-31 17:55+0000\n"
-"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 23:03+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"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-POOTLE-MTIME: 1454262915.000000\n"
+"X-POOTLE-MTIME: 1457391797.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -3074,7 +3074,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ne_xt >>"
-msgstr "Další >>"
+msgstr "_Další >>"
#: publishingdialog.ui
msgctxt ""
@@ -3416,7 +3416,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Standard"
-msgstr "Standardní"
+msgstr "_Standardní"
#: templatedialog.ui
msgctxt ""
diff --git a/source/cs/sfx2/source/appl.po b/source/cs/sfx2/source/appl.po
index 71a48ba4579..baa2a8ad6e5 100644
--- a/source/cs/sfx2/source/appl.po
+++ b/source/cs/sfx2/source/appl.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:32+0100\n"
-"PO-Revision-Date: 2015-12-10 19:54+0000\n"
-"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 23:04+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"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-POOTLE-MTIME: 1449777246.000000\n"
+"X-POOTLE-MTIME: 1457391841.000000\n"
#: app.src
msgctxt ""
@@ -784,7 +784,7 @@ msgctxt ""
"STR_HELP_MENU_TEXT_COPY\n"
"string.text"
msgid "~Copy"
-msgstr "Kopírovat"
+msgstr "~Kopírovat"
#: newhelp.src
msgctxt ""
@@ -835,7 +835,7 @@ msgctxt ""
"RID_HELP_ONSTARTUP_TEXT\n"
"string.text"
msgid "~Display %PRODUCTNAME %MODULENAME Help at Startup"
-msgstr "Zobrazit nápovědu %PRODUCTNAME %MODULENAME při spuštění"
+msgstr "~Zobrazit nápovědu %PRODUCTNAME %MODULENAME při spuštění"
#: sfx.src
msgctxt ""
diff --git a/source/cs/sfx2/source/dialog.po b/source/cs/sfx2/source/dialog.po
index 4fc8727883b..501be3c56d2 100644
--- a/source/cs/sfx2/source/dialog.po
+++ b/source/cs/sfx2/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: 2015-05-11 16:12+0200\n"
-"PO-Revision-Date: 2015-05-12 04:15+0000\n"
+"PO-Revision-Date: 2016-03-07 23:04+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
@@ -14,7 +14,7 @@ msgstr ""
"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-POOTLE-MTIME: 1431404148.000000\n"
+"X-POOTLE-MTIME: 1457391887.000000\n"
#: dialog.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_RESET\n"
"string.text"
msgid "~Reset"
-msgstr "Obnovit"
+msgstr "O~bnovit"
#: dialog.src
msgctxt ""
@@ -603,7 +603,7 @@ msgctxt ""
"STR_SFX_EXPLORERFILE_BUTTONINSERT\n"
"string.text"
msgid "~Insert"
-msgstr "Vložit"
+msgstr "V~ložit"
#: filedlghelper.src
msgctxt ""
diff --git a/source/cs/sfx2/source/doc.po b/source/cs/sfx2/source/doc.po
index b24d7006cce..9f66fa89b56 100644
--- a/source/cs/sfx2/source/doc.po
+++ b/source/cs/sfx2/source/doc.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-05-11 16:12+0200\n"
-"PO-Revision-Date: 2015-12-04 20:48+0000\n"
-"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 23:05+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"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-POOTLE-MTIME: 1449262100.000000\n"
+"X-POOTLE-MTIME: 1457391913.000000\n"
#: doc.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_UPDATEDOC\n"
"string.text"
msgid "~Update"
-msgstr "Aktualizovat"
+msgstr "~Aktualizovat"
#: doc.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"STR_CLOSEDOC\n"
"string.text"
msgid "~Close"
-msgstr "Zavřít"
+msgstr "~Zavřít"
#: doc.src
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"STR_CLOSEDOC_ANDRETURN\n"
"string.text"
msgid "~Close & Return to "
-msgstr "Konec a návrat do "
+msgstr "~Konec a návrat do "
#: doc.src
msgctxt ""
@@ -312,7 +312,7 @@ msgctxt ""
"STR_QRYTEMPL_UPDATE_BTN\n"
"string.text"
msgid "~Update Styles"
-msgstr "Aktualizovat styly"
+msgstr "~Aktualizovat styly"
#: doc.src
msgctxt ""
@@ -320,7 +320,7 @@ msgctxt ""
"STR_QRYTEMPL_KEEP_BTN\n"
"string.text"
msgid "~Keep Old Styles"
-msgstr "Ponechat původní styly"
+msgstr "~Ponechat původní styly"
#: doc.src
msgctxt ""
diff --git a/source/cs/sfx2/source/menu.po b/source/cs/sfx2/source/menu.po
index 80d20f45916..6076ede133b 100644
--- a/source/cs/sfx2/source/menu.po
+++ b/source/cs/sfx2/source/menu.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:22+0100\n"
-"PO-Revision-Date: 2015-01-11 22:09+0000\n"
-"Last-Translator: Stanislav <stanislav.horacek@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-07 23:05+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\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 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1421014164.000000\n"
+"X-POOTLE-MTIME: 1457391916.000000\n"
#: menu.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_MENU_ADDONS\n"
"string.text"
msgid "~Add-Ons"
-msgstr "Rozšíření"
+msgstr "~Rozšíření"
#: menu.src
msgctxt ""
@@ -39,7 +39,7 @@ msgctxt ""
"SID_CUT\n"
"menuitem.text"
msgid "Cu~t"
-msgstr "V~yjmout"
+msgstr "~Vyjmout"
#: menu.src
msgctxt ""
@@ -73,7 +73,7 @@ msgctxt ""
"STR_MENU_ADDONHELP\n"
"string.text"
msgid "Add-~On Help"
-msgstr "Nápověda rozšíření"
+msgstr "~Nápověda rozšíření"
#: menu.src
msgctxt ""
@@ -97,4 +97,4 @@ msgctxt ""
"STR_MENU_THESAURUS\n"
"string.text"
msgid "~Thesaurus..."
-msgstr "Slovník synonym..."
+msgstr "~Slovník synonym..."
diff --git a/source/cs/sfx2/uiconfig/ui.po b/source/cs/sfx2/uiconfig/ui.po
index ebca9c29809..cc0d9b8b427 100644
--- a/source/cs/sfx2/uiconfig/ui.po
+++ b/source/cs/sfx2/uiconfig/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-02-25 20:15+0000\n"
-"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 23:06+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"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-POOTLE-MTIME: 1456431323.000000\n"
+"X-POOTLE-MTIME: 1457391993.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -257,7 +257,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Embed fonts in the document"
-msgstr "Vložit písma do dokumentu"
+msgstr "_Vložit písma do dokumentu"
#: documentfontspage.ui
msgctxt ""
@@ -275,7 +275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Created:"
-msgstr "Vytvořen:"
+msgstr "V_ytvořen:"
#: documentinfopage.ui
msgctxt ""
@@ -284,7 +284,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Modified:"
-msgstr "Změněn:"
+msgstr "Z_měněn:"
#: documentinfopage.ui
msgctxt ""
@@ -293,7 +293,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Digitally signed:"
-msgstr "Elektronicky podepsán:"
+msgstr "_Elektronicky podepsán:"
#: documentinfopage.ui
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Last pri_nted:"
-msgstr "Vytištěn:"
+msgstr "Vyt_ištěn:"
#: documentinfopage.ui
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Total _editing time:"
-msgstr "Celkový čas úprav:"
+msgstr "_Celkový čas úprav:"
#: documentinfopage.ui
msgctxt ""
@@ -320,7 +320,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Re_vision number:"
-msgstr "Číslo revize:"
+msgstr "Číslo _revize:"
#: documentinfopage.ui
msgctxt ""
@@ -338,7 +338,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Apply user data"
-msgstr "Použít uživatelské údaje"
+msgstr "Použít uživatelské ú_daje"
#: documentinfopage.ui
msgctxt ""
@@ -347,7 +347,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Save preview image with this document"
-msgstr "Uložit s tímto dokumentem obrázek náhledu"
+msgstr "Uložit _s tímto dokumentem obrázek náhledu"
#: documentinfopage.ui
msgctxt ""
@@ -356,7 +356,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset Properties"
-msgstr "Obnovit vlastnosti"
+msgstr "Obnovit vl_astnosti"
#: documentinfopage.ui
msgctxt ""
@@ -365,7 +365,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Di_gital Signature..."
-msgstr "Elektronický podpis..."
+msgstr "Elektronický _podpis..."
#: documentinfopage.ui
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Size:"
-msgstr "Velikost:"
+msgstr "_Velikost:"
#: documentinfopage.ui
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Location:"
-msgstr "Umístění:"
+msgstr "_Umístění:"
#: documentinfopage.ui
msgctxt ""
@@ -401,7 +401,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Type:"
-msgstr "Typ:"
+msgstr "_Typ:"
#: documentinfopage.ui
msgctxt ""
@@ -410,7 +410,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Change _Password"
-msgstr "Změnit heslo"
+msgstr "Změnit _heslo"
#: documentinfopage.ui
msgctxt ""
@@ -1445,7 +1445,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Open file read-only"
-msgstr "Otevřít jen pro čtení"
+msgstr "_Otevřít jen pro čtení"
#: securityinfopage.ui
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Record _changes"
-msgstr "Zaznamenávat změny"
+msgstr "Z_aznamenávat změny"
#: securityinfopage.ui
msgctxt ""
@@ -1472,7 +1472,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Unprotect..."
-msgstr "Odemknout..."
+msgstr "O_demknout..."
#: securityinfopage.ui
msgctxt ""
diff --git a/source/cs/starmath/source.po b/source/cs/starmath/source.po
index c9b335ee05b..bdfa49632d7 100644
--- a/source/cs/starmath/source.po
+++ b/source/cs/starmath/source.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:40+0200\n"
-"PO-Revision-Date: 2015-12-09 18:21+0000\n"
-"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 23:10+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"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-POOTLE-MTIME: 1449685269.000000\n"
+"X-POOTLE-MTIME: 1457392257.000000\n"
#: commands.src
msgctxt ""
@@ -2598,7 +2598,7 @@ msgctxt ""
"~Title\n"
"itemlist.text"
msgid "~Title"
-msgstr "Název"
+msgstr "~Název"
#: smres.src
msgctxt ""
@@ -2607,7 +2607,7 @@ msgctxt ""
"~Formula text\n"
"itemlist.text"
msgid "~Formula text"
-msgstr "Text vzorce"
+msgstr "Text ~vzorce"
#: smres.src
msgctxt ""
@@ -2616,7 +2616,7 @@ msgctxt ""
"B~orders\n"
"itemlist.text"
msgid "B~orders"
-msgstr "Okraje"
+msgstr "O~kraje"
#: smres.src
msgctxt ""
@@ -2634,7 +2634,7 @@ msgctxt ""
"O~riginal size\n"
"itemlist.text"
msgid "O~riginal size"
-msgstr "Původní velikost"
+msgstr "~Původní velikost"
#: smres.src
msgctxt ""
@@ -2643,7 +2643,7 @@ msgctxt ""
"Fit to ~page\n"
"itemlist.text"
msgid "Fit to ~page"
-msgstr "Přizpůsobit velikosti stránky"
+msgstr "Přizpůsobit velikosti ~stránky"
#: smres.src
msgctxt ""
@@ -2652,7 +2652,7 @@ msgctxt ""
"~Scaling\n"
"itemlist.text"
msgid "~Scaling"
-msgstr "Měřítko"
+msgstr "~Měřítko"
#: symbol.src
msgctxt ""
diff --git a/source/cs/svtools/source/contnr.po b/source/cs/svtools/source/contnr.po
index 70f85fb2457..6cb0f681b96 100644
--- a/source/cs/svtools/source/contnr.po
+++ b/source/cs/svtools/source/contnr.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-05-14 08:51+0000\n"
-"Last-Translator: Stanislav <stanislav.horacek@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 23:13+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\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 && n<=4) ? 1 : 2;\n"
-"X-Generator: Pootle 2.5.1\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431593509.000000\n"
+"X-POOTLE-MTIME: 1457392383.000000\n"
#: fileview.src
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"MID_FILEVIEW_RENAME\n"
"menuitem.text"
msgid "~Rename"
-msgstr "Přejmenovat..."
+msgstr "~Přejmenovat"
#: svcontnr.src
msgctxt ""
diff --git a/source/cs/svtools/source/dialogs.po b/source/cs/svtools/source/dialogs.po
index ba0fad469c9..33084216a57 100644
--- a/source/cs/svtools/source/dialogs.po
+++ b/source/cs/svtools/source/dialogs.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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-10-16 14:57+0000\n"
-"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 23:14+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"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-POOTLE-MTIME: 1445007431.000000\n"
+"X-POOTLE-MTIME: 1457392466.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"STR_FILEDLG_TYPE\n"
"string.text"
msgid "File ~type"
-msgstr "Typ souboru"
+msgstr "~Typ souboru"
#: filedlg2.src
msgctxt ""
@@ -1193,7 +1193,7 @@ msgctxt ""
"STR_WIZDLG_FINISH\n"
"string.text"
msgid "~Finish"
-msgstr "Dokončit"
+msgstr "Do~končit"
#: wizardmachine.src
msgctxt ""
@@ -1201,7 +1201,7 @@ msgctxt ""
"STR_WIZDLG_NEXT\n"
"string.text"
msgid "~Next >>"
-msgstr "Další >>"
+msgstr "~Další >>"
#: wizardmachine.src
msgctxt ""
@@ -1209,7 +1209,7 @@ msgctxt ""
"STR_WIZDLG_PREVIOUS\n"
"string.text"
msgid "<< Bac~k"
-msgstr "<< Zpět"
+msgstr "<< Z~pět"
#: wizardmachine.src
msgctxt ""
diff --git a/source/cs/svtools/uiconfig/ui.po b/source/cs/svtools/uiconfig/ui.po
index c59e957c8aa..94a26179821 100644
--- a/source/cs/svtools/uiconfig/ui.po
+++ b/source/cs/svtools/uiconfig/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-11-16 20:41+0000\n"
-"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 23:18+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"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-POOTLE-MTIME: 1447706507.000000\n"
+"X-POOTLE-MTIME: 1457392691.000000\n"
#: GraphicExportOptionsDialog.ui
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Address Data Source..."
-msgstr "Zdroj adres..."
+msgstr "Zdroj _adres..."
#: addresstemplatedialog.ui
msgctxt ""
diff --git a/source/cs/svx/inc.po b/source/cs/svx/inc.po
index d1023f78e8e..e9e91d8eb60 100644
--- a/source/cs/svx/inc.po
+++ b/source/cs/svx/inc.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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-12-10 20:33+0000\n"
-"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 23:18+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"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-POOTLE-MTIME: 1449779591.000000\n"
+"X-POOTLE-MTIME: 1457392708.000000\n"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"ITEM_FORM_CONTROL_PROPERTIES\n"
"#define.text"
msgid "Con~trol..."
-msgstr "Ovládací prvek..."
+msgstr "~Ovládací prvek..."
#: globlmn_tmpl.hrc
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"ITEM_FORM_PROPERTIES\n"
"#define.text"
msgid "For~m..."
-msgstr "Formulář..."
+msgstr "~Formulář..."
#: globlmn_tmpl.hrc
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"ITEM_REPLACE_CONTROL\n"
"#define.text"
msgid "~Replace with"
-msgstr "Nahradit za"
+msgstr "Na~hradit za"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"ITEM_FORMAT_FONTWORK\n"
"#define.text"
msgid "F~ontwork"
-msgstr "Písmomalba"
+msgstr "~Písmomalba"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"ITEM_EDIT_CUT\n"
"#define.text"
msgid "Cu~t"
-msgstr "Vyjmout"
+msgstr "~Vyjmout"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"ITEM_EDIT_COPY\n"
"#define.text"
msgid "~Copy"
-msgstr "Kopírovat"
+msgstr "~Kopírovat"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"ITEM_FORMAT_FRAME_TO_TOP\n"
"#define.text"
msgid "~Bring to Front"
-msgstr "Přenést do popředí"
+msgstr "~Přenést do popředí"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"ITEM_FORMAT_FRAME_TO_BOTTOM\n"
"#define.text"
msgid "~Send to Back"
-msgstr "Odsunout do pozadí"
+msgstr "~Odsunout do pozadí"
#: globlmn_tmpl.hrc
msgctxt ""
diff --git a/source/cs/svx/source/svdraw.po b/source/cs/svx/source/svdraw.po
index d83a654e904..12c4539eb59 100644
--- a/source/cs/svx/source/svdraw.po
+++ b/source/cs/svx/source/svdraw.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: 2015-12-09 17:10+0000\n"
-"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"PO-Revision-Date: 2016-03-07 23:30+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"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-POOTLE-MTIME: 1449681027.000000\n"
+"X-POOTLE-MTIME: 1457393425.000000\n"
#: svdstr.src
msgctxt ""
@@ -3849,7 +3849,6 @@ msgid "Word wrap text in shape"
msgstr "Zalomit text do tvaru"
#: svdstr.src
-#, fuzzy
msgctxt ""
"svdstr.src\n"
"SIP_SA_CHAINNEXTNAME\n"
diff --git a/source/da/svx/inc.po b/source/da/svx/inc.po
index 765d46eb3db..cc2b3f93bd1 100644
--- a/source/da/svx/inc.po
+++ b/source/da/svx/inc.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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2016-01-06 21:30+0000\n"
-"Last-Translator: Jeppe Bundsgaard <jeppe@bundsgaard.net>\n"
+"PO-Revision-Date: 2016-03-07 23:25+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452115847.000000\n"
+"X-POOTLE-MTIME: 1457393149.000000\n"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -626,7 +626,6 @@ msgctxt ""
msgid "Open ~Smart Tag Menu"
msgstr "Åbn ~Smartmærke-menu"
-#: globlmn_tmpl.hrc
msgctxt ""
"globlmn_tmpl.hrc\n"
"ITEM_EDIT_IMAP\n"
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 226e62ccd89..abed496fc40 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-01-08 13:42+0100\n"
-"PO-Revision-Date: 2016-02-28 10:37+0000\n"
+"PO-Revision-Date: 2016-03-11 22:09+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456655863.000000\n"
+"X-POOTLE-MTIME: 1457734167.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip Vertically"
-msgstr "Vertikal spiegeln"
+msgstr "~Vertikal spiegeln"
#: CalcCommands.xcu
msgctxt ""
@@ -329,7 +329,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip Horizontally"
-msgstr "Horizontal spiegeln"
+msgstr "~Horizontal spiegeln"
#: CalcCommands.xcu
msgctxt ""
@@ -491,7 +491,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Protect Records..."
-msgstr "Aufzeichnung ~schützen..."
+msgstr "Vor Änderungen ~schützen..."
#: CalcCommands.xcu
msgctxt ""
@@ -500,7 +500,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Link to E~xternal Data..."
-msgstr "~Verknüpfung zu externen Daten..."
+msgstr "Verknüpfung zu e~xternen Daten..."
#: CalcCommands.xcu
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Description..."
-msgstr "Beschreibung..."
+msgstr "Besc~hreibung..."
#: CalcCommands.xcu
msgctxt ""
@@ -554,7 +554,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sheet ~Events..."
-msgstr "Tabellene~reignisse..."
+msgstr "Tabellenerei~gnisse..."
#: CalcCommands.xcu
msgctxt ""
@@ -572,7 +572,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Next Page"
-msgstr "Nächste Seite"
+msgstr "~Nächste Seite"
#: CalcCommands.xcu
msgctxt ""
@@ -581,7 +581,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Previous Page"
-msgstr "Vorherige Seite"
+msgstr "~Vorherige Seite"
#: CalcCommands.xcu
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "First Page"
-msgstr "Erste Seite"
+msgstr "~Erste Seite"
#: CalcCommands.xcu
msgctxt ""
@@ -599,7 +599,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Last Page"
-msgstr "Letzte Seite"
+msgstr "~Letzte Seite"
#: CalcCommands.xcu
msgctxt ""
@@ -608,7 +608,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom In"
-msgstr "~Größer"
+msgstr "Ver~größern"
#: CalcCommands.xcu
msgctxt ""
@@ -617,7 +617,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom Out"
-msgstr "~Kleiner"
+msgstr "Ver~kleinern"
#: CalcCommands.xcu
msgctxt ""
@@ -779,7 +779,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Te~xt to Columns..."
-msgstr "Te~xt in Spalten..."
+msgstr "Text in Spalte~n..."
#: CalcCommands.xcu
msgctxt ""
@@ -815,7 +815,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Pi~vot Table..."
-msgstr "~Pivot-Tabelle..."
+msgstr "P~ivot-Tabelle..."
#: CalcCommands.xcu
msgctxt ""
@@ -968,7 +968,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "C~onditional Formatting"
-msgstr "Be~dingte Formatierung"
+msgstr "Bedingte For~matierung"
#: CalcCommands.xcu
msgctxt ""
@@ -986,7 +986,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Condition..."
-msgstr "Bedingung..."
+msgstr "~Bedingung..."
#: CalcCommands.xcu
msgctxt ""
@@ -1004,7 +1004,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Color Scale..."
-msgstr "Farbbalken..."
+msgstr "~Farbbalken..."
#: CalcCommands.xcu
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Data Bar..."
-msgstr "Datenbalken..."
+msgstr "~Datenbalken..."
#: CalcCommands.xcu
msgctxt ""
@@ -1040,7 +1040,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Icon Set..."
-msgstr "Symbolsatz..."
+msgstr "~Symbolsatz..."
#: CalcCommands.xcu
msgctxt ""
@@ -1067,7 +1067,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Manage..."
-msgstr "Verwalten..."
+msgstr "~Verwalten..."
#: CalcCommands.xcu
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Wrap Text"
-msgstr "Text umbrechen"
+msgstr "Text u~mbrechen"
#: CalcCommands.xcu
msgctxt ""
@@ -1229,7 +1229,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Relative/Absolute References"
-msgstr "Relative/absolute Bezüge"
+msgstr "Relati~ve/absolute Bezüge"
#: CalcCommands.xcu
msgctxt ""
@@ -1256,7 +1256,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete C~ells..."
-msgstr "Zellen l~öschen..."
+msgstr "Zellen lösche~n..."
#: CalcCommands.xcu
msgctxt ""
@@ -1274,7 +1274,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Delete Sheet..."
-msgstr "Tabelle ~löschen..."
+msgstr "Tabelle lösc~hen..."
#: CalcCommands.xcu
msgctxt ""
@@ -1472,7 +1472,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Covariance..."
-msgstr "Ko~varianz..."
+msgstr "K~ovarianz..."
#: CalcCommands.xcu
msgctxt ""
@@ -1544,7 +1544,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Headers and Footers..."
-msgstr "K~opf-/Fußzeile..."
+msgstr "Ko~pf-/Fußzeile..."
#: CalcCommands.xcu
msgctxt ""
@@ -1580,7 +1580,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Columns"
-msgstr "Spalten lös~chen"
+msgstr "Spalten lö~schen"
#: CalcCommands.xcu
msgctxt ""
@@ -1643,7 +1643,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show Comment"
-msgstr "Kommentar anzeigen"
+msgstr "Kommentar ~anzeigen"
#: CalcCommands.xcu
msgctxt ""
@@ -1652,7 +1652,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hide Comment"
-msgstr "Kommentar ausblenden"
+msgstr "Kommentar a~usblenden"
#: CalcCommands.xcu
msgctxt ""
@@ -1670,7 +1670,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Comment"
-msgstr "Kommentar löschen"
+msgstr "Kommentar ~löschen"
#: CalcCommands.xcu
msgctxt ""
@@ -1733,7 +1733,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Page Break"
-msgstr "S~eitenumbruch"
+msgstr "Seiten~umbruch"
#: CalcCommands.xcu
msgctxt ""
@@ -1751,7 +1751,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "R~efresh Range"
-msgstr "Bereich ~aktualisieren"
+msgstr "Berei~ch aktualisieren"
#: CalcCommands.xcu
msgctxt ""
@@ -1796,7 +1796,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Manage Changes..."
-msgstr "Änderungen ~verwalten..."
+msgstr "Änderungen ver~walten..."
#: CalcCommands.xcu
msgctxt ""
@@ -1805,7 +1805,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Underline: Double"
-msgstr "Unterstreichung: doppelt"
+msgstr "Do~ppelt unterstrichen"
#: CalcCommands.xcu
msgctxt ""
@@ -1832,7 +1832,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cle~ar Cells..."
-msgstr "Zellinhalte ~löschen..."
+msgstr "Inhalte ~löschen..."
#: CalcCommands.xcu
msgctxt ""
@@ -1967,7 +1967,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~Cells..."
-msgstr "~Zellen einfügen..."
+msgstr "Zellen e~infügen..."
#: CalcCommands.xcu
msgctxt ""
@@ -2111,7 +2111,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Shee~t From File..."
-msgstr "Ta~belle aus Datei einfügen..."
+msgstr "Tabelle aus Datei einf~ügen..."
#: CalcCommands.xcu
msgctxt ""
@@ -2228,7 +2228,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Ce~lls..."
-msgstr "Z~ellen..."
+msgstr "Ze~llen..."
#: CalcCommands.xcu
msgctxt ""
@@ -2264,7 +2264,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Optimal Height..."
-msgstr "~Optimale Höhe..."
+msgstr "Optimale ~Höhe..."
#: CalcCommands.xcu
msgctxt ""
@@ -2336,7 +2336,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Optimal Width..."
-msgstr "~Optimale Breite..."
+msgstr "Optimale ~Breite..."
#: CalcCommands.xcu
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Show Sheet..."
-msgstr "Tabelle ~einblenden..."
+msgstr "Tabelle einblen~den..."
#: CalcCommands.xcu
msgctxt ""
@@ -2399,7 +2399,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Merge Cells"
-msgstr "Zellen verbinden"
+msgstr "Zellen ~verbinden"
#: CalcCommands.xcu
msgctxt ""
@@ -2408,7 +2408,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Split Cells"
-msgstr "Zelle teilen"
+msgstr "Zelle teile~n"
#: CalcCommands.xcu
msgctxt ""
@@ -2453,7 +2453,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Text..."
-msgstr "~Text..."
+msgstr "Te~xt..."
#: CalcCommands.xcu
msgctxt ""
@@ -2489,7 +2489,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Protect ~Sheet..."
-msgstr "~Tabelle schützen..."
+msgstr "Tabelle ~schützen..."
#: CalcCommands.xcu
msgctxt ""
@@ -2498,7 +2498,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Protect ~Spreadsheet..."
-msgstr "Tabellendokument schützen..."
+msgstr "Ta~bellendokument schützen..."
#: CalcCommands.xcu
msgctxt ""
@@ -2516,7 +2516,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sc~enarios..."
-msgstr "Sze~narien..."
+msgstr "S~zenarien..."
#: CalcCommands.xcu
msgctxt ""
@@ -2570,7 +2570,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~AutoInput"
-msgstr "Auto~Eingabe"
+msgstr "~AutoEingabe"
#: CalcCommands.xcu
msgctxt ""
@@ -2588,7 +2588,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Define Range..."
-msgstr "Bereich fest~legen..."
+msgstr "Bereich f~estlegen..."
#: CalcCommands.xcu
msgctxt ""
@@ -2606,7 +2606,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Select ~Range..."
-msgstr "Bereich aus~wählen..."
+msgstr "Bereich auswä~hlen..."
#: CalcCommands.xcu
msgctxt ""
@@ -2651,7 +2651,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Sort..."
-msgstr "Sort~ieren..."
+msgstr "S~ortieren..."
#: CalcCommands.xcu
msgctxt ""
@@ -2678,7 +2678,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Auto~Filter"
-msgstr "~AutoFilter"
+msgstr "AutoF~ilter"
#: CalcCommands.xcu
msgctxt ""
@@ -2696,7 +2696,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "F~orm..."
-msgstr "F~ormular..."
+msgstr "~Formular..."
#: CalcCommands.xcu
msgctxt ""
@@ -2741,7 +2741,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Hide AutoFilter"
-msgstr "AutoFilter a~usblenden"
+msgstr "AutoFilter ~ausblenden"
#: CalcCommands.xcu
msgctxt ""
@@ -2750,7 +2750,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sort Descending"
-msgstr "Absteigend sortieren"
+msgstr "~Absteigend sortieren"
#: CalcCommands.xcu
msgctxt ""
@@ -2759,7 +2759,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sort Ascending"
-msgstr "Aufsteigend sortieren"
+msgstr "A~ufsteigend sortieren"
#: CalcCommands.xcu
msgctxt ""
@@ -2786,7 +2786,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sheet ~Tab Color..."
-msgstr "Tabellenregisterfarbe..."
+msgstr "Ta~bellenregisterfarbe..."
#: CalcCommands.xcu
msgctxt ""
@@ -2804,7 +2804,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Move or Copy Sheet..."
-msgstr "Tabelle ~verschieben/kopieren..."
+msgstr "Tabelle verschieben/k~opieren..."
#: CalcCommands.xcu
msgctxt ""
@@ -2930,7 +2930,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Number Format"
-msgstr "Zahl~format"
+msgstr "Za~hlformat"
#: CalcCommands.xcu
msgctxt ""
@@ -2948,7 +2948,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Currency"
-msgstr "Währung"
+msgstr "~Währung"
#: CalcCommands.xcu
msgctxt ""
@@ -2966,7 +2966,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Percent"
-msgstr "Prozent"
+msgstr "~Prozent"
#: CalcCommands.xcu
msgctxt ""
@@ -2984,7 +2984,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "General"
-msgstr "Allgemein"
+msgstr "~Standard"
#: CalcCommands.xcu
msgctxt ""
@@ -3002,7 +3002,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Date"
-msgstr "Datum"
+msgstr "~Datum"
#: CalcCommands.xcu
msgctxt ""
@@ -3020,7 +3020,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Number"
-msgstr "Zahl"
+msgstr "~Zahl"
#: CalcCommands.xcu
msgctxt ""
@@ -3119,7 +3119,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "R~ight-To-Left"
-msgstr "Rechts-nach-~links"
+msgstr "~Rechts-nach-links"
#: CalcCommands.xcu
msgctxt ""
@@ -3173,7 +3173,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E-mail as ~OpenDocument Spreadsheet..."
-msgstr "E-Mail als ~OpenDocument Tabellendokument..."
+msgstr "E-Mail als ~OpenDocument Tabelle..."
#: CalcCommands.xcu
msgctxt ""
@@ -3182,7 +3182,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "S~hare Spreadsheet..."
-msgstr "Tabellendokument freigeben..."
+msgstr "Tabellendokument ~freigeben..."
#: CalcCommands.xcu
msgctxt ""
@@ -3245,7 +3245,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Formula to Value"
-msgstr "Formel in Wert"
+msgstr "~Formel in Wert"
#: CalcCommands.xcu
msgctxt ""
@@ -3263,7 +3263,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Page ~Break"
-msgstr "Seitenumbruch ~einfügen"
+msgstr "Umbru~ch einfügen"
#: CalcCommands.xcu
msgctxt ""
@@ -3281,7 +3281,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Page ~Break"
-msgstr "Seitenu~mbruch löschen"
+msgstr "U~mbruch löschen"
#: CalcCommands.xcu
msgctxt ""
@@ -3290,7 +3290,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "F~ill Cells"
-msgstr "Zellen ~ausfüllen"
+msgstr "Zellen aus~füllen"
#: CalcCommands.xcu
msgctxt ""
@@ -3317,7 +3317,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Comment"
-msgstr "Kommentar bearbeiten"
+msgstr "Kommentar ~bearbeiten"
#: CalcCommands.xcu
msgctxt ""
@@ -3398,7 +3398,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Colu~mn"
-msgstr "Spa~lte"
+msgstr "S~palte"
#: CalcCommands.xcu
msgctxt ""
@@ -3416,7 +3416,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cell ~Comment"
-msgstr "~Zellkommentar"
+msgstr "~Kommentar"
#: CalcCommands.xcu
msgctxt ""
@@ -3425,7 +3425,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "M~erge Cells"
-msgstr "Zellen verbi~nden"
+msgstr "Zellen verbin~den"
#: CalcCommands.xcu
msgctxt ""
@@ -3965,7 +3965,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Selection..."
-msgstr "Auswahl formatieren..."
+msgstr "A~uswahl formatieren..."
#: ChartCommands.xcu
msgctxt ""
@@ -4028,7 +4028,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Data Ranges..."
-msgstr "Daten~bereiche..."
+msgstr "~Datenbereiche..."
#: ChartCommands.xcu
msgctxt ""
@@ -4055,7 +4055,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bring ~Forward"
-msgstr "W~eiter nach vorn"
+msgstr "Nach ~vorn"
#: ChartCommands.xcu
msgctxt ""
@@ -4064,7 +4064,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Send Back~ward"
-msgstr "Weiter ~nach hinten"
+msgstr "Nach ~hinten"
#: ChartCommands.xcu
msgctxt ""
@@ -4181,7 +4181,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "S~econdary Y Axis..."
-msgstr "~Sekundäre Y-Achse..."
+msgstr "S~ekundäre Y-Achse..."
#: ChartCommands.xcu
msgctxt ""
@@ -5180,7 +5180,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Index Design..."
-msgstr "I~ndexentwurf..."
+msgstr "~Indexentwurf..."
#: DbuCommands.xcu
msgctxt ""
@@ -5693,7 +5693,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Relationships..."
-msgstr "Beziehungen..."
+msgstr "~Beziehungen..."
#: DbuCommands.xcu
msgctxt ""
@@ -5702,7 +5702,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "User Administration..."
-msgstr "Benutzerverwaltung..."
+msgstr "Benutzer~verwaltung..."
#: DbuCommands.xcu
msgctxt ""
@@ -5711,7 +5711,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Filter..."
-msgstr "Tabellenfilter..."
+msgstr "Tabellen~filter..."
#: DbuCommands.xcu
msgctxt ""
@@ -5729,7 +5729,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "SQL..."
-msgstr "SQL..."
+msgstr "~SQL..."
#: DbuCommands.xcu
msgctxt ""
@@ -5738,7 +5738,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Migrate Macros ..."
-msgstr "Makros migrieren..."
+msgstr "Makros m~igrieren..."
#: DbuCommands.xcu
msgctxt ""
@@ -5909,7 +5909,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Navigate"
-msgstr "Navigieren"
+msgstr "Navigie~ren"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -5918,7 +5918,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move"
-msgstr "Verschieben"
+msgstr "Vers~chieben"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -5927,7 +5927,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rename Page/Slide"
-msgstr "Folie umbenennen"
+msgstr "Folie um~benennen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6008,7 +6008,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sho~w Slide"
-msgstr "Folie einb~lenden"
+msgstr "Folie einblen~den"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6341,7 +6341,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Custom Animation"
-msgstr "Benutzerdefinierte Animation"
+msgstr "Benut~zerdefinierte Animation"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6359,7 +6359,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide Transition"
-msgstr "Folienübergang"
+msgstr "Folienüberg~ang"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6404,7 +6404,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Duplicate Page/~Slide"
-msgstr "Folie d~uplizieren"
+msgstr "Folie do~ppeln"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6413,7 +6413,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~xpand Slide"
-msgstr "Folie aus G~liederung"
+msgstr "Folie aus ~Gliederung"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6422,7 +6422,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Su~mmary Slide"
-msgstr "Übe~rsichtsfolie"
+msgstr "Übersic~htsfolie"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6440,7 +6440,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Slide Master"
-msgstr "Foli~enmaster"
+msgstr "~Folienmaster"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6566,7 +6566,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Custom Slide Show..."
-msgstr "I~ndividuelle Präsentation..."
+msgstr "~Individuelle Präsentation..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6719,7 +6719,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Page/Slide Properties..."
-msgstr "~Folieneigenschaften..."
+msgstr "Folien~eigenschaften..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6791,7 +6791,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sli~de Sorter"
-msgstr "~Foliensortierung"
+msgstr "Foliensortier~ung"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6971,7 +6971,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Slide ~Layout"
-msgstr "Folienlayout"
+msgstr "Folienla~yout"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7178,7 +7178,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Split"
-msgstr "Ko~mbination aufheben"
+msgstr "K~ombination aufheben"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7232,7 +7232,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "C~onnect"
-msgstr "Ver~binden"
+msgstr "Verbi~nden"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7241,7 +7241,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Break"
-msgstr "Au~fbrechen"
+msgstr "Aufbre~chen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7682,7 +7682,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "1 Bit Threshold"
-msgstr "1Bit-Schwellenwert"
+msgstr "1 Bit-~Schwellenwert"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7691,7 +7691,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "1 Bit Dithered"
-msgstr "1Bit-Gedithert"
+msgstr "~1 Bit-Gedithert"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7700,7 +7700,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "4 Bit grayscales"
-msgstr "4Bit-Graustufenpalette"
+msgstr "4 Bit-~Graustufen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7709,7 +7709,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "4 Bit color palette"
-msgstr "4Bit-Farbpalette"
+msgstr "~4 Bit-Farbpalette"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7718,7 +7718,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "8 Bit Grayscales"
-msgstr "8Bit-Graustufenpalette"
+msgstr "8 Bit-G~raustufen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7727,7 +7727,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "8 Bit color palette"
-msgstr "8Bit-Farbpalette"
+msgstr "~8 Bit-Farbpalette"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7736,7 +7736,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "24 Bit True Color"
-msgstr "24Bit-Echtfarben"
+msgstr "24 Bit-~Echtfarben"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7790,7 +7790,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Set Background Image..."
-msgstr "Hintergrundbild festlegen..."
+msgstr "Hintergrundbild fes~tlegen..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7799,7 +7799,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Save Background Image..."
-msgstr "Hintergrundbild speichern..."
+msgstr "Hintergrundbild ~speichern..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7808,7 +7808,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Display Master Background"
-msgstr "Hintergrundgrafik des Masters anzeigen"
+msgstr "Hintergrundgrafi~k des Masters anzeigen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7817,7 +7817,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Display Master Objects"
-msgstr "Objekte des Masters anzeigen"
+msgstr "Ob~jekte des Masters anzeigen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7925,7 +7925,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "New Master"
-msgstr "Neuer Master"
+msgstr "~Neuer Master"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7934,7 +7934,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Delete Master"
-msgstr "Master löschen"
+msgstr "Master ~löschen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8006,7 +8006,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Flip"
-msgstr "Sp~iegeln"
+msgstr "Spi~egeln"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8150,7 +8150,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Header and Footer..."
-msgstr "K~opf-/Fußzeile..."
+msgstr "Ko~pf-/Fußzeile..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8249,7 +8249,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Columns Evenly"
-msgstr "Spalten gleichmäßig verteilen"
+msgstr "Spalten gleichmäßig ~verteilen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8258,7 +8258,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Rows Equally "
-msgstr "Zeilen gleichmäßig verteilen "
+msgstr "Zeilen ~gleichmäßig verteilen "
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8276,7 +8276,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Rows..."
-msgstr "Zei~len..."
+msgstr "~Zeilen..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8384,7 +8384,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Rows"
-msgstr "Zei~len"
+msgstr "~Zeilen"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8393,7 +8393,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ta~ble Properties..."
-msgstr "Tabellen~eigenschaften..."
+msgstr "Tabellene~igenschaften..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8411,7 +8411,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "So~rt..."
-msgstr "Sorti~eren..."
+msgstr "S~ortieren..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8420,7 +8420,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Table..."
-msgstr "Tab~elle..."
+msgstr "~Tabelle..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8510,7 +8510,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Minimize ~Presentation..."
-msgstr "Präsentation komprimi~eren..."
+msgstr "Präsentation ~komprimieren..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8600,7 +8600,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Page/Slide to Start"
-msgstr "Verschiebt die Folie an den Anfang."
+msgstr "Folie an ~Anfang verschieben"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8618,7 +8618,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Page/Slide Up"
-msgstr "Verschiebt die Folie nach oben."
+msgstr "Folie nach ~oben verschieben"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8636,7 +8636,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Page/Slide Down"
-msgstr "Verschiebt die Folie nach unten."
+msgstr "Folie nach ~unten verschieben"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8654,7 +8654,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Page/Slide to End"
-msgstr "Verschiebt die Folie ans Ende."
+msgstr "Folie ans ~Ende verschieben"
#: DrawWindowState.xcu
msgctxt ""
@@ -12452,7 +12452,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fo~rm Control"
-msgstr "Formular-S~teuerelemente"
+msgstr "Form~ular-Steuerelemente"
#: GenericCommands.xcu
msgctxt ""
@@ -12560,7 +12560,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Decrease Paragraph Spacing"
-msgstr "Absatzabstand verringern"
+msgstr "Absatzabstand ~verringern"
#: GenericCommands.xcu
msgctxt ""
@@ -12614,7 +12614,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rectangle, Rounded"
-msgstr "Abgerundetes Rechteck"
+msgstr "A~bgerundetes Rechteck"
#: GenericCommands.xcu
msgctxt ""
@@ -12623,7 +12623,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Square"
-msgstr "Quadrat"
+msgstr "~Quadrat"
#: GenericCommands.xcu
msgctxt ""
@@ -12632,7 +12632,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Square, Rounded"
-msgstr "Abgerundetes Quadrat"
+msgstr "Ab~gerundetes Quadrat"
#: GenericCommands.xcu
msgctxt ""
@@ -12641,7 +12641,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Circle"
-msgstr "Kreis"
+msgstr "~Kreis"
#: GenericCommands.xcu
msgctxt ""
@@ -12659,7 +12659,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Circle Pie"
-msgstr "Ellipsensektor"
+msgstr "E~llipsensektor"
#: GenericCommands.xcu
msgctxt ""
@@ -12668,7 +12668,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Isosceles Triangle"
-msgstr "Gleichschenkliges Dreieck"
+msgstr "Gleichschenkliges ~Dreieck"
#: GenericCommands.xcu
msgctxt ""
@@ -12677,7 +12677,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Right Triangle"
-msgstr "Rechtwinkliges Dreieck"
+msgstr "Re~chtwinkliges Dreieck"
#: GenericCommands.xcu
msgctxt ""
@@ -12686,7 +12686,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Trapezoid"
-msgstr "Trapezoid"
+msgstr "~Trapezoid"
#: GenericCommands.xcu
msgctxt ""
@@ -12695,7 +12695,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Diamond"
-msgstr "Raute"
+msgstr "Ra~ute"
#: GenericCommands.xcu
msgctxt ""
@@ -12704,7 +12704,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Parallelogram"
-msgstr "Parallelogramm"
+msgstr "~Parallelogramm"
#: GenericCommands.xcu
msgctxt ""
@@ -12713,7 +12713,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Regular Pentagon"
-msgstr "Regelmäßiges Fünfeck"
+msgstr "Regelmäßiges F~ünfeck"
#: GenericCommands.xcu
msgctxt ""
@@ -12722,7 +12722,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hexagon"
-msgstr "Sechseck"
+msgstr "~Sechseck"
#: GenericCommands.xcu
msgctxt ""
@@ -12731,7 +12731,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Octagon"
-msgstr "Achteck"
+msgstr "~Achteck"
#: GenericCommands.xcu
msgctxt ""
@@ -12740,7 +12740,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cross"
-msgstr "Kreuz"
+msgstr "Kreu~z"
#: GenericCommands.xcu
msgctxt ""
@@ -12749,7 +12749,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ring"
-msgstr "Ring"
+msgstr "R~ing"
#: GenericCommands.xcu
msgctxt ""
@@ -12758,7 +12758,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Block Arc"
-msgstr "Halbbogen"
+msgstr "~Halbbogen"
#: GenericCommands.xcu
msgctxt ""
@@ -12767,7 +12767,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cylinder"
-msgstr "Zylinder"
+msgstr "Z~ylinder"
#: GenericCommands.xcu
msgctxt ""
@@ -12776,7 +12776,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cube"
-msgstr "Würfel"
+msgstr "~Würfel"
#: GenericCommands.xcu
msgctxt ""
@@ -12785,7 +12785,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Folded Corner"
-msgstr "Gefaltete Ecke"
+msgstr "Ge~faltete Ecke"
#: GenericCommands.xcu
msgctxt ""
@@ -12794,7 +12794,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Frame"
-msgstr "Rahmen"
+msgstr "Rahme~n"
#: GenericCommands.xcu
msgctxt ""
@@ -12803,7 +12803,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Smiley Face"
-msgstr "Smiley"
+msgstr "~Smiley"
#: GenericCommands.xcu
msgctxt ""
@@ -12812,7 +12812,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sun"
-msgstr "Sonne"
+msgstr "S~onne"
#: GenericCommands.xcu
msgctxt ""
@@ -12821,7 +12821,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Moon"
-msgstr "Mond"
+msgstr "~Mond"
#: GenericCommands.xcu
msgctxt ""
@@ -12830,7 +12830,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Lightning Bolt"
-msgstr "Blitz"
+msgstr "~Blitz"
#: GenericCommands.xcu
msgctxt ""
@@ -12839,7 +12839,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heart"
-msgstr "Herz"
+msgstr "~Herz"
#: GenericCommands.xcu
msgctxt ""
@@ -12848,7 +12848,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flower"
-msgstr "Blume"
+msgstr "Bl~ume"
#: GenericCommands.xcu
msgctxt ""
@@ -12857,7 +12857,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cloud"
-msgstr "Wolke"
+msgstr "~Wolke"
#: GenericCommands.xcu
msgctxt ""
@@ -12866,7 +12866,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "\"Prohibited\" Symbol"
-msgstr "\"Verboten\" Symbol"
+msgstr "\"~Verboten\" Symbol"
#: GenericCommands.xcu
msgctxt ""
@@ -12875,7 +12875,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Puzzle"
-msgstr "Puzzle"
+msgstr "~Puzzle"
#: GenericCommands.xcu
msgctxt ""
@@ -12884,7 +12884,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Double Bracket"
-msgstr "Runde Klammer links und rechts"
+msgstr "Runde ~Klammer links und rechts"
#: GenericCommands.xcu
msgctxt ""
@@ -12893,7 +12893,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Left Bracket"
-msgstr "Runde Klammer links"
+msgstr "Runde Klammer ~links"
#: GenericCommands.xcu
msgctxt ""
@@ -12902,7 +12902,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Right Bracket"
-msgstr "Runde Klammer rechts"
+msgstr "Runde Klammer ~rechts"
#: GenericCommands.xcu
msgctxt ""
@@ -12911,7 +12911,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Double Brace"
-msgstr "Geschweifte Klammer links und rechts"
+msgstr "Geschweifte Klammer links u~nd rechts"
#: GenericCommands.xcu
msgctxt ""
@@ -12920,7 +12920,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Left Brace"
-msgstr "Geschweifte Klammer links"
+msgstr "Geschweifte Klammer l~inks"
#: GenericCommands.xcu
msgctxt ""
@@ -12929,7 +12929,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Right Brace"
-msgstr "Geschweifte Klammer rechts"
+msgstr "G~eschweifte Klammer rechts"
#: GenericCommands.xcu
msgctxt ""
@@ -12938,7 +12938,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Square Bevel"
-msgstr "Bilderrahmen"
+msgstr "Bil~derrahmen"
#: GenericCommands.xcu
msgctxt ""
@@ -12947,7 +12947,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Octagon Bevel"
-msgstr "Achteckiger Bilderrahmen"
+msgstr "~Achteckiger Bilderrahmen"
#: GenericCommands.xcu
msgctxt ""
@@ -12956,7 +12956,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Diamond Bevel"
-msgstr "Rautenförmiger Bilderrahmen"
+msgstr "Rauten~förmiger Bilderrahmen"
#: GenericCommands.xcu
msgctxt ""
@@ -12965,7 +12965,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Left Arrow"
-msgstr "Pfeil nach links"
+msgstr "Pfeil nach ~links"
#: GenericCommands.xcu
msgctxt ""
@@ -12974,7 +12974,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Right Arrow"
-msgstr "Pfeil nach rechts"
+msgstr "Pfeil nach ~rechts"
#: GenericCommands.xcu
msgctxt ""
@@ -12983,7 +12983,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Up Arrow"
-msgstr "Pfeil nach oben"
+msgstr "Pfeil nach ~oben"
#: GenericCommands.xcu
msgctxt ""
@@ -12992,7 +12992,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Down Arrow"
-msgstr "Pfeil nach unten"
+msgstr "Pfeil nach ~unten"
#: GenericCommands.xcu
msgctxt ""
@@ -13001,7 +13001,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Left and Right Arrow"
-msgstr "Pfeil nach links und rechts"
+msgstr "Doppelpfeil hori~zontal"
#: GenericCommands.xcu
msgctxt ""
@@ -13010,7 +13010,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Up and Down Arrow"
-msgstr "Pfeil nach oben und unten"
+msgstr "Doppelpfeil ~vertikal"
#: GenericCommands.xcu
msgctxt ""
@@ -13019,7 +13019,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Up and Right Arrow"
-msgstr "Pfeil nach oben und rechts"
+msgstr "Doppelpfeil oben~-rechts"
#: GenericCommands.xcu
msgctxt ""
@@ -13028,7 +13028,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Up, Right and Down Arrow"
-msgstr "Pfeil nach oben, rechts und unten"
+msgstr "Pfeil nach oben~, rechts und unten"
#: GenericCommands.xcu
msgctxt ""
@@ -13037,7 +13037,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "4-way Arrow"
-msgstr "Pfeil in vier Richtungen"
+msgstr "~Pfeil in alle Richtungen"
#: GenericCommands.xcu
msgctxt ""
@@ -13046,7 +13046,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Corner Right Arrow"
-msgstr "Pfeil nach rechts über Eck"
+msgstr "Pfeil nach rechts ~über Eck"
#: GenericCommands.xcu
msgctxt ""
@@ -13055,7 +13055,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Split Arrow"
-msgstr "Pfeil mit Gabelung"
+msgstr "Pfeil mit ~Gabelung"
#: GenericCommands.xcu
msgctxt ""
@@ -13064,7 +13064,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Striped Right Arrow"
-msgstr "Gestreifter Pfeil nach rechts"
+msgstr "Ge~streifter Pfeil nach rechts"
#: GenericCommands.xcu
msgctxt ""
@@ -13073,7 +13073,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notched Right Arrow"
-msgstr "Eingekerbter Pfeil nach rechts"
+msgstr "Einge~kerbter Pfeil nach rechts"
#: GenericCommands.xcu
msgctxt ""
@@ -13082,7 +13082,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pentagon"
-msgstr "Richtungspfeil"
+msgstr "R~ichtungspfeil"
#: GenericCommands.xcu
msgctxt ""
@@ -13091,7 +13091,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Chevron"
-msgstr "Eingekerbter Richtungspfeil"
+msgstr "Eingeker~bter Richtungspfeil"
#: GenericCommands.xcu
msgctxt ""
@@ -13100,7 +13100,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Right Arrow Callout"
-msgstr "Legende mit Pfeil nach rechts"
+msgstr "Legende mit Pfeil nach rech~ts"
#: GenericCommands.xcu
msgctxt ""
@@ -13109,7 +13109,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Left Arrow Callout"
-msgstr "Legende mit Pfeil nach links"
+msgstr "L~egende mit Pfeil nach links"
#: GenericCommands.xcu
msgctxt ""
@@ -13118,7 +13118,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Up Arrow Callout"
-msgstr "Legende mit Pfeil nach oben"
+msgstr "Legende mit Pfeil n~ach oben"
#: GenericCommands.xcu
msgctxt ""
@@ -13127,7 +13127,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Down Arrow Callout"
-msgstr "Legende mit Pfeil nach unten"
+msgstr "Legende mit Pfeil na~ch unten"
#: GenericCommands.xcu
msgctxt ""
@@ -13136,7 +13136,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Left and Right Arrow Callout"
-msgstr "Legende mit Pfeil nach links und rechts"
+msgstr "Legende mit Pfeilen nac~h links und rechts"
#: GenericCommands.xcu
msgctxt ""
@@ -13145,7 +13145,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Up and Down Arrow Callout"
-msgstr "Legende mit Pfeil nach oben und unten"
+msgstr "Legende~ mit Pfeilen nach oben und unten"
#: GenericCommands.xcu
msgctxt ""
@@ -13154,7 +13154,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Up and Right Arrow Callout"
-msgstr "Legende mit Pfeil nach oben und rechts"
+msgstr "Legen~de mit Pfeilen nach oben und rechts"
#: GenericCommands.xcu
msgctxt ""
@@ -13163,7 +13163,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "4-way Arrow Callout"
-msgstr "Legende mit Pfeil in vier Richtungen"
+msgstr "Lege~nde mit Pfeilen in alle Richtungen"
#: GenericCommands.xcu
msgctxt ""
@@ -13172,7 +13172,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Circular Arrow"
-msgstr "Pfeil im Kreis"
+msgstr "Pfeil i~m Kreis"
#: GenericCommands.xcu
msgctxt ""
@@ -13181,7 +13181,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Right or Left Arrow"
-msgstr "Pfeil rechts oder links"
+msgstr "P~feil rechts oder links"
#: GenericCommands.xcu
msgctxt ""
@@ -13190,7 +13190,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "S-shaped Arrow"
-msgstr "Schlangenpfeil"
+msgstr "Gesch~wungener Pfeil"
#: GenericCommands.xcu
msgctxt ""
@@ -13199,7 +13199,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Process"
-msgstr "Flussdiagramm: Prozess"
+msgstr "~Prozess"
#: GenericCommands.xcu
msgctxt ""
@@ -13208,7 +13208,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Alternate Process"
-msgstr "Flussdiagramm: Alternativer Prozess"
+msgstr "Al~ternativer Prozess"
#: GenericCommands.xcu
msgctxt ""
@@ -13217,7 +13217,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Decision"
-msgstr "Flussdiagramm: Verzweigung"
+msgstr "Verz~weigung"
#: GenericCommands.xcu
msgctxt ""
@@ -13226,7 +13226,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Data"
-msgstr "Flussdiagramm: Daten"
+msgstr "~Daten"
#: GenericCommands.xcu
msgctxt ""
@@ -13235,7 +13235,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Predefined Process"
-msgstr "Flussdiagramm: Vordefinierter Prozess"
+msgstr "Vordef~inierter Prozess"
#: GenericCommands.xcu
msgctxt ""
@@ -13244,7 +13244,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Internal Storage"
-msgstr "Flussdiagramm: Zentralspeicher"
+msgstr "Zentralspei~cher"
#: GenericCommands.xcu
msgctxt ""
@@ -13253,7 +13253,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Document"
-msgstr "Flussdiagramm: Dokument"
+msgstr "Ph~ysisches Dokument"
#: GenericCommands.xcu
msgctxt ""
@@ -13262,7 +13262,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Multidocument"
-msgstr "Flussdiagramm: Mehrere Dokumente"
+msgstr "Meh~rere physische Dokumente"
#: GenericCommands.xcu
msgctxt ""
@@ -13271,7 +13271,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Terminator"
-msgstr "Flussdiagramm: Grenzstelle"
+msgstr "~Grenzstelle"
#: GenericCommands.xcu
msgctxt ""
@@ -13280,7 +13280,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Preparation"
-msgstr "Flussdiagramm: Vorbereitung"
+msgstr "~Vorbereitung"
#: GenericCommands.xcu
msgctxt ""
@@ -13289,7 +13289,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Manual Input"
-msgstr "Flussdiagramm: Manuelle Eingabe"
+msgstr "Manuelle ~Eingabe"
#: GenericCommands.xcu
msgctxt ""
@@ -13298,7 +13298,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Manual Operation"
-msgstr "Flussdiagramm: Manuelle Verarbeitung"
+msgstr "Man~uelle Verarbeitung"
#: GenericCommands.xcu
msgctxt ""
@@ -13307,7 +13307,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Connector"
-msgstr "Flussdiagramm: Verbindungsstelle"
+msgstr "Ver~bindungsstelle"
#: GenericCommands.xcu
msgctxt ""
@@ -13316,7 +13316,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Off-page Connector"
-msgstr "Flussdiagramm: Verbindungsstelle zu einer anderen Seite"
+msgstr "Verbindungsstelle~ zu einer anderen Seite"
#: GenericCommands.xcu
msgctxt ""
@@ -13325,7 +13325,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Card"
-msgstr "Flussdiagramm: Karte"
+msgstr "~Karte"
#: GenericCommands.xcu
msgctxt ""
@@ -13334,7 +13334,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Punched Tape"
-msgstr "Flussdiagramm: Lochstreifen"
+msgstr "~Lochstreifen"
#: GenericCommands.xcu
msgctxt ""
@@ -13343,7 +13343,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Summing Junction"
-msgstr "Flussdiagramm: Zusammenführung"
+msgstr "Zusammenf~ührung"
#: GenericCommands.xcu
msgctxt ""
@@ -13352,7 +13352,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Or"
-msgstr "Flussdiagramm: Oder"
+msgstr "~Oder"
#: GenericCommands.xcu
msgctxt ""
@@ -13361,7 +13361,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Collate"
-msgstr "Flussdiagramm: Zusammenstellen"
+msgstr "~Zusammenstellen"
#: GenericCommands.xcu
msgctxt ""
@@ -13370,7 +13370,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Sort"
-msgstr "Flussdiagramm: Sortieren"
+msgstr "~Sortieren"
#: GenericCommands.xcu
msgctxt ""
@@ -13379,7 +13379,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Extract"
-msgstr "Flussdiagramm: Auszug"
+msgstr "~Auszug"
#: GenericCommands.xcu
msgctxt ""
@@ -13388,7 +13388,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Merge"
-msgstr "Flussdiagramm: Zusammenführen"
+msgstr "Zusammen~führen"
#: GenericCommands.xcu
msgctxt ""
@@ -13397,7 +13397,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Stored Data"
-msgstr "Flussdiagramm: Gespeicherte Daten"
+msgstr "Gespeic~herte Daten"
#: GenericCommands.xcu
msgctxt ""
@@ -13406,7 +13406,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Delay"
-msgstr "Flussdiagramm: Verzögerung"
+msgstr "Verz~ögerung"
#: GenericCommands.xcu
msgctxt ""
@@ -13415,7 +13415,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Sequential Access"
-msgstr "Flussdiagramm: Datenträger mit sequentiellem Zugriff"
+msgstr "Datenträger mit se~quentiellem Zugriff"
#: GenericCommands.xcu
msgctxt ""
@@ -13424,7 +13424,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Magnetic Disc"
-msgstr "Flussdiagramm: Magnetplattenspeicher"
+msgstr "~Magnetplattenspeicher"
#: GenericCommands.xcu
msgctxt ""
@@ -13433,7 +13433,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Direct Access Storage"
-msgstr "Flussdiagramm: Datenträger mit direktem Zugriff"
+msgstr "Datentr~äger mit direktem Zugriff"
#: GenericCommands.xcu
msgctxt ""
@@ -13442,7 +13442,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flowchart: Display"
-msgstr "Flussdiagramm: Anzeige"
+msgstr "A~nzeige"
#: GenericCommands.xcu
msgctxt ""
@@ -13451,7 +13451,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rectangular Callout"
-msgstr "Rechteckige Legende"
+msgstr "~Rechteckige Legende"
#: GenericCommands.xcu
msgctxt ""
@@ -13460,7 +13460,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rounded Rectangular Callout"
-msgstr "Abgerundete rechteckige Legende"
+msgstr "~Abgerundete rechteckige Legende"
#: GenericCommands.xcu
msgctxt ""
@@ -13469,7 +13469,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Round Callout"
-msgstr "Runde Legende"
+msgstr "Runde ~Legende"
#: GenericCommands.xcu
msgctxt ""
@@ -13478,7 +13478,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cloud"
-msgstr "Wolke"
+msgstr "~Wolke"
#: GenericCommands.xcu
msgctxt ""
@@ -13487,7 +13487,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line Callout 1"
-msgstr "Legende mit Linie 1"
+msgstr "Legende mit Linie ~1"
#: GenericCommands.xcu
msgctxt ""
@@ -13496,7 +13496,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line Callout 2"
-msgstr "Legende mit Linie 2"
+msgstr "Legende mit Linie ~2"
#: GenericCommands.xcu
msgctxt ""
@@ -13505,7 +13505,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Line Callout 3"
-msgstr "Legende mit Linie 3"
+msgstr "Legende mit Linie ~3"
#: GenericCommands.xcu
msgctxt ""
@@ -13514,7 +13514,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Explosion"
-msgstr "Explosion"
+msgstr "~Explosion"
#: GenericCommands.xcu
msgctxt ""
@@ -13523,7 +13523,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "4-Point Star"
-msgstr "Stern mit 4 Zacken"
+msgstr "Stern mit ~4 Zacken"
#: GenericCommands.xcu
msgctxt ""
@@ -13532,7 +13532,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "5-Point Star"
-msgstr "Stern mit 5 Zacken"
+msgstr "Stern mit ~5 Zacken"
#: GenericCommands.xcu
msgctxt ""
@@ -13541,7 +13541,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "6-Point Star"
-msgstr "Stern mit 6 Zacken"
+msgstr "Stern mit ~6 Zacken"
#: GenericCommands.xcu
msgctxt ""
@@ -13550,7 +13550,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "8-Point Star"
-msgstr "Stern mit 8 Zacken"
+msgstr "Stern mit ~8 Zacken"
#: GenericCommands.xcu
msgctxt ""
@@ -13559,7 +13559,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "12-Point Star"
-msgstr "Stern mit 12 Zacken"
+msgstr "Stern mit ~12 Zacken"
#: GenericCommands.xcu
msgctxt ""
@@ -13568,7 +13568,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "24-Point Star"
-msgstr "Stern mit 24 Zacken"
+msgstr "Stern mit ~24 Zacken"
#: GenericCommands.xcu
msgctxt ""
@@ -13577,7 +13577,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "6-Point Star, concave"
-msgstr "Stern mit 6 Zacken, konkav"
+msgstr "Stern mit 6 Zacken, ~konkav"
#: GenericCommands.xcu
msgctxt ""
@@ -13586,7 +13586,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Vertical Scroll"
-msgstr "Vertikale Schriftrolle"
+msgstr "~Vertikale Schriftrolle"
#: GenericCommands.xcu
msgctxt ""
@@ -13595,7 +13595,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Horizontal Scroll"
-msgstr "Horizontale Schriftrolle"
+msgstr "~Horizontale Schriftrolle"
#: GenericCommands.xcu
msgctxt ""
@@ -13604,7 +13604,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Signet"
-msgstr "Siegel"
+msgstr "~Siegel"
#: GenericCommands.xcu
msgctxt ""
@@ -13613,7 +13613,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Doorplate"
-msgstr "Türschild"
+msgstr "~Türschild"
#: GenericCommands.xcu
msgctxt ""
@@ -14036,7 +14036,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Italic"
-msgstr "Kursiv"
+msgstr "~Kursiv"
#: GenericCommands.xcu
msgctxt ""
@@ -14045,7 +14045,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bold"
-msgstr "Fett"
+msgstr "~Fett"
#: GenericCommands.xcu
msgctxt ""
@@ -14099,7 +14099,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Shadow"
-msgstr "Schatten"
+msgstr "~Schatten"
#: GenericCommands.xcu
msgctxt ""
@@ -14117,7 +14117,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Outline"
-msgstr "Kontur"
+msgstr "K~ontur"
#: GenericCommands.xcu
msgctxt ""
@@ -14144,7 +14144,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Underline"
-msgstr "Unterstrichen"
+msgstr "~Unterstrichen"
#: GenericCommands.xcu
msgctxt ""
@@ -14153,7 +14153,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Overline"
-msgstr "Überstrichen"
+msgstr "Ü~berstrichen"
#: GenericCommands.xcu
msgctxt ""
@@ -14324,7 +14324,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Align Left"
-msgstr "Linksbündig"
+msgstr "~Linksbündig"
#: GenericCommands.xcu
msgctxt ""
@@ -14333,7 +14333,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Align Right"
-msgstr "Rechtsbündig"
+msgstr "~Rechtsbündig"
#: GenericCommands.xcu
msgctxt ""
@@ -14342,7 +14342,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Center Horizontally"
-msgstr "Horizontal zentrieren"
+msgstr "~Zentrieren"
#: GenericCommands.xcu
msgctxt ""
@@ -14360,7 +14360,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Justified"
-msgstr "Blocksatz"
+msgstr "~Blocksatz"
#: GenericCommands.xcu
msgctxt ""
@@ -14504,7 +14504,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom Out"
-msgstr "Kleiner"
+msgstr "Ver~größern"
#: GenericCommands.xcu
msgctxt ""
@@ -14513,7 +14513,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom Out"
-msgstr "Kleiner"
+msgstr "Ver~kleinern"
#: GenericCommands.xcu
msgctxt ""
@@ -14531,7 +14531,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Options..."
-msgstr "~Optionen..."
+msgstr "Option~en..."
#: GenericCommands.xcu
msgctxt ""
@@ -14738,7 +14738,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Crop"
-msgstr "Zuschneiden"
+msgstr "~Zuschneiden"
#: GenericCommands.xcu
msgctxt ""
@@ -14837,7 +14837,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Arc"
-msgstr "Ellipsenbogen"
+msgstr "Ellipsenb~ogen"
#: GenericCommands.xcu
msgctxt ""
@@ -14882,7 +14882,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Circle Segment"
-msgstr "Kreissegment"
+msgstr "Kreisseg~ment"
#: GenericCommands.xcu
msgctxt ""
@@ -14956,7 +14956,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Curve, Filled"
-msgstr "Kurve, gefüllt"
+msgstr "Kurve, g~efüllt"
#: GenericCommands.xcu
msgctxt ""
@@ -15199,7 +15199,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullets On/Off"
-msgstr "Aufzählungszeichen an/aus"
+msgstr "~Aufzählungszeichen an/aus"
#: GenericCommands.xcu
msgctxt ""
@@ -15325,7 +15325,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Full-width"
-msgstr "Normale Breite"
+msgstr "~Normale Breite"
#: GenericCommands.xcu
msgctxt ""
@@ -15334,7 +15334,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Numbering On/Off"
-msgstr "Nummerierung ein/aus"
+msgstr "~Nummerierung ein/aus"
#: GenericCommands.xcu
msgctxt ""
@@ -15433,7 +15433,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Up"
-msgstr "Nach oben"
+msgstr "Nach o~ben verschieben"
#: GenericCommands.xcu
msgctxt ""
@@ -15451,7 +15451,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Down"
-msgstr "Nach unten"
+msgstr "Nach ~unten verschieben"
#: GenericCommands.xcu
msgctxt ""
@@ -15469,7 +15469,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Promote"
-msgstr "Ebene höher"
+msgstr "Ebene ~höher verschieben"
#: GenericCommands.xcu
msgctxt ""
@@ -15487,7 +15487,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Demote"
-msgstr "Ebene niedriger"
+msgstr "Ebene n~iedriger verschieben"
#: GenericCommands.xcu
msgctxt ""
@@ -15847,7 +15847,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~xit group"
-msgstr "Gruppe ~verlassen"
+msgstr "Gruppe ver~lassen"
#: GenericCommands.xcu
msgctxt ""
@@ -16045,7 +16045,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hangul/Hanja Conversion..."
-msgstr "Hangul/Hanja Konvertierung..."
+msgstr "Hangul/Hanja ~Konvertierung..."
#: GenericCommands.xcu
msgctxt ""
@@ -16054,7 +16054,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Chinese Conversion..."
-msgstr "Chinesisch Konvertierung..."
+msgstr "~Chinesisch Konvertierung..."
#: GenericCommands.xcu
msgctxt ""
@@ -16288,7 +16288,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Remove Outline"
-msgstr "Gliederung ~entfernen"
+msgstr "Gliederung e~ntfernen"
#: GenericCommands.xcu
msgctxt ""
@@ -16369,7 +16369,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Object and Shape"
-msgstr "~Objekt und Form"
+msgstr "Ob~jekt und Form"
#: GenericCommands.xcu
msgctxt ""
@@ -16396,7 +16396,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Text"
-msgstr "~Text"
+msgstr "Te~xt"
#: GenericCommands.xcu
msgctxt ""
@@ -16423,7 +16423,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Styles"
-msgstr "~Vorlagen"
+msgstr "V~orlagen"
#: GenericCommands.xcu
msgctxt ""
@@ -16567,7 +16567,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Symbol"
-msgstr "~Symbole"
+msgstr "S~ymbole"
#: GenericCommands.xcu
msgctxt ""
@@ -16612,7 +16612,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Thesaurus..."
-msgstr "~Thesaurus..."
+msgstr "T~hesaurus..."
#: GenericCommands.xcu
msgctxt ""
@@ -16837,7 +16837,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Merge"
-msgstr "Versch~melzen"
+msgstr "~Verschmelzen"
#: GenericCommands.xcu
msgctxt ""
@@ -16873,7 +16873,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Superscript"
-msgstr "Hochgestellt"
+msgstr "~Hochgestellt"
#: GenericCommands.xcu
msgctxt ""
@@ -16891,7 +16891,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Subscript"
-msgstr "Tiefgestellt"
+msgstr "~Tiefgestellt"
#: GenericCommands.xcu
msgctxt ""
@@ -16900,7 +16900,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Distribution..."
-msgstr "Verteil~ung..."
+msgstr "~Verteilung..."
#: GenericCommands.xcu
msgctxt ""
@@ -16909,7 +16909,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "P~aragraph..."
-msgstr "~Absatz..."
+msgstr "Absa~tz..."
#: GenericCommands.xcu
msgctxt ""
@@ -16918,7 +16918,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Shadow"
-msgstr "Schatten"
+msgstr "~Schatten"
#: GenericCommands.xcu
msgctxt ""
@@ -17521,7 +17521,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Polygon (45°), Filled"
-msgstr "Polygon (45°), gefüllt"
+msgstr "Polygon (45°), gefüll~t"
#: GenericCommands.xcu
msgctxt ""
@@ -17539,7 +17539,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Polygon (45°)"
-msgstr "Polygon (45°)"
+msgstr "P~olygon (45°)"
#: GenericCommands.xcu
msgctxt ""
@@ -17548,7 +17548,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Curve"
-msgstr "Kurve"
+msgstr "~Kurve"
#: GenericCommands.xcu
msgctxt ""
@@ -17620,7 +17620,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~AutoCorrect Options..."
-msgstr "Auto~Korrektur-Optionen..."
+msgstr "A~utoKorrektur-Optionen..."
#: GenericCommands.xcu
msgctxt ""
@@ -17692,7 +17692,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Merge Documen~t..."
-msgstr "Dokument ~zusammenführen..."
+msgstr "D~okument zusammenführen..."
#: GenericCommands.xcu
msgctxt ""
@@ -17701,7 +17701,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip Horizontally"
-msgstr "Horizontal spiegeln"
+msgstr "~Horizontal spiegeln"
#: GenericCommands.xcu
msgctxt ""
@@ -17710,7 +17710,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Flip Vertically"
-msgstr "Vertikal spiegeln"
+msgstr "~Vertikal spiegeln"
#: GenericCommands.xcu
msgctxt ""
@@ -17854,7 +17854,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Decrease Indent"
-msgstr "Einzug vermindern"
+msgstr "Einzug ver~mindern"
#: GenericCommands.xcu
msgctxt ""
@@ -17863,7 +17863,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Increase Indent"
-msgstr "Einzug erhöhen"
+msgstr "Einzug er~höhen"
#: GenericCommands.xcu
msgctxt ""
@@ -17872,7 +17872,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Freeform Line, Filled"
-msgstr "Freihandlinie, gefüllt"
+msgstr "Freihandlinie, ~gefüllt"
#: GenericCommands.xcu
msgctxt ""
@@ -17908,7 +17908,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Invert"
-msgstr "Invertieren"
+msgstr "~Invertieren"
#: GenericCommands.xcu
msgctxt ""
@@ -17917,7 +17917,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Smooth"
-msgstr "Weichzeichnen"
+msgstr "~Weichzeichnen"
#: GenericCommands.xcu
msgctxt ""
@@ -17926,7 +17926,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sharpen"
-msgstr "Schärfen"
+msgstr "~Schärfen"
#: GenericCommands.xcu
msgctxt ""
@@ -17935,7 +17935,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Remove Noise"
-msgstr "Rauschen entfernen"
+msgstr "Rauschen ~entfernen"
#: GenericCommands.xcu
msgctxt ""
@@ -17944,7 +17944,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Charcoal Sketch"
-msgstr "Kohlezeichnung"
+msgstr "~Kohlezeichnung"
#: GenericCommands.xcu
msgctxt ""
@@ -17953,7 +17953,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Mosaic"
-msgstr "Mosaik"
+msgstr "~Mosaik"
#: GenericCommands.xcu
msgctxt ""
@@ -17962,7 +17962,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Relief"
-msgstr "Relief"
+msgstr "~Relief"
#: GenericCommands.xcu
msgctxt ""
@@ -17971,7 +17971,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Posterize"
-msgstr "Poster"
+msgstr "P~oster"
#: GenericCommands.xcu
msgctxt ""
@@ -17980,7 +17980,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pop Art"
-msgstr "Pop-Art"
+msgstr "~Pop-Art"
#: GenericCommands.xcu
msgctxt ""
@@ -17989,7 +17989,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Aging"
-msgstr "Altern"
+msgstr "~Altern"
#: GenericCommands.xcu
msgctxt ""
@@ -17998,7 +17998,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Solarization"
-msgstr "Solarisation"
+msgstr "So~larisation"
#: GenericCommands.xcu
msgctxt ""
@@ -18007,7 +18007,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Automatic Spell Checking"
-msgstr "~Automatische Rechtschreibprüfung"
+msgstr "Automatische Rechtschreibprüfun~g"
#: GenericCommands.xcu
msgctxt ""
@@ -18025,7 +18025,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Address Book Source..."
-msgstr "A~dressbuchquelle..."
+msgstr "Adressbuch~quelle..."
#: GenericCommands.xcu
msgctxt ""
@@ -18061,7 +18061,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Record Macro"
-msgstr "Makro aufzeichnen"
+msgstr "Makro ~aufzeichnen"
#: GenericCommands.xcu
msgctxt ""
@@ -18106,7 +18106,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Customize..."
-msgstr "~Anpassen..."
+msgstr "A~npassen..."
#: GenericCommands.xcu
msgctxt ""
@@ -18187,7 +18187,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Send Feedback..."
-msgstr "Fehler melden (Englisch)"
+msgstr "~Fehler melden (Englisch)"
#: GenericCommands.xcu
msgctxt ""
@@ -18538,7 +18538,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Con~trol Properties..."
-msgstr "~Kontrollfeld Eigenschaften..."
+msgstr "~Kontrollfeld-Eigenschaften..."
#: GenericCommands.xcu
msgctxt ""
@@ -18556,7 +18556,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Activation Order..."
-msgstr "Aktivierungsreihenfolge..."
+msgstr "Aktivierungs~reihenfolge..."
#: GenericCommands.xcu
msgctxt ""
@@ -18718,7 +18718,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Navigator..."
-msgstr "Formular-Navigator..."
+msgstr "Formular-~Navigator..."
#: GenericCommands.xcu
msgctxt ""
@@ -18898,7 +18898,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Open in Design Mode"
-msgstr "Im Entwurfsmodus öffnen"
+msgstr "Im ~Entwurfsmodus öffnen"
#: GenericCommands.xcu
msgctxt ""
@@ -19069,7 +19069,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Wizards On/Off"
-msgstr "Assistenten an/aus"
+msgstr "~Assistenten an/aus"
#: GenericCommands.xcu
msgctxt ""
@@ -19474,7 +19474,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Digital Signature..."
-msgstr "Digitale Signatur..."
+msgstr "~Digitale Signatur..."
#: GenericCommands.xcu
msgctxt ""
@@ -19483,7 +19483,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Left"
-msgstr "Links"
+msgstr "~Linksbündig"
#: GenericCommands.xcu
msgctxt ""
@@ -19492,7 +19492,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Centered"
-msgstr "Zentriert"
+msgstr "~Zentriert"
#: GenericCommands.xcu
msgctxt ""
@@ -19501,7 +19501,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Right"
-msgstr "Rechts"
+msgstr "~Rechtsbündig"
#: GenericCommands.xcu
msgctxt ""
@@ -19510,7 +19510,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Top"
-msgstr "Oben"
+msgstr "~Oben"
#: GenericCommands.xcu
msgctxt ""
@@ -19519,7 +19519,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Center"
-msgstr "Mitte"
+msgstr "~Mittig"
#: GenericCommands.xcu
msgctxt ""
@@ -19528,7 +19528,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bottom"
-msgstr "Unten"
+msgstr "~Unten"
#: GenericCommands.xcu
msgctxt ""
@@ -19537,7 +19537,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Justified"
-msgstr "Blocksatz"
+msgstr "~Blocksatz"
#: GenericCommands.xcu
msgctxt ""
@@ -19582,7 +19582,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format All Comments"
-msgstr "Alle Kommentare formatieren"
+msgstr "Alle ~Kommentare formatieren"
#: GenericCommands.xcu
msgctxt ""
@@ -19618,7 +19618,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Align Top"
-msgstr "Oben anordnen"
+msgstr "~Oben"
#: GenericCommands.xcu
msgctxt ""
@@ -19627,7 +19627,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Center Vertically"
-msgstr "Vertikal zentrieren"
+msgstr "~Mittig"
#: GenericCommands.xcu
msgctxt ""
@@ -19636,7 +19636,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Align Bottom"
-msgstr "Unten anordnen"
+msgstr "~Unten"
#: GenericCommands.xcu
msgctxt ""
@@ -19672,7 +19672,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Alig~n"
-msgstr "~Ausrichten"
+msgstr "A~usrichtung"
#: GenericCommands.xcu
msgctxt ""
@@ -19708,7 +19708,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Character..."
-msgstr "Zeichen..."
+msgstr "~Zeichen..."
#: GenericCommands.xcu
msgctxt ""
@@ -19852,7 +19852,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Language"
-msgstr "S~prache"
+msgstr "Spra~che"
#: GenericCommands.xcu
msgctxt ""
@@ -19924,7 +19924,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Flip"
-msgstr "Sp~iegeln"
+msgstr "Spi~egeln"
#: GenericCommands.xcu
msgctxt ""
@@ -19978,7 +19978,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Color"
-msgstr "~Farbe"
+msgstr "F~arbe"
#: GenericCommands.xcu
msgctxt ""
@@ -20095,7 +20095,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "More Dictionaries Online..."
-msgstr "Weitere Wörterbücher im Internet..."
+msgstr "~Weitere Wörterbücher im Internet..."
#: GenericCommands.xcu
msgctxt ""
@@ -20122,7 +20122,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E-mail as ~Microsoft Format..."
-msgstr "E-Mail als ~Microsoft-Format..."
+msgstr "E-Mail im ~Microsoft-Format..."
#: GenericCommands.xcu
msgctxt ""
@@ -20131,7 +20131,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E-mail as ~OpenDocument Format..."
-msgstr "E-Mail als ~OpenDocument-Format..."
+msgstr "E-Mail im ~OpenDocument-Format..."
#: GenericCommands.xcu
msgctxt ""
@@ -20671,7 +20671,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Text Mode"
-msgstr "~Textmodus"
+msgstr "Te~xtmodus"
#: MathCommands.xcu
msgctxt ""
@@ -20689,7 +20689,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Import MathML from Clipboard"
-msgstr "MathML aus Zwischenablage importieren"
+msgstr "MathML aus ~Zwischenablage importieren"
#: MathCommands.xcu
msgctxt ""
@@ -20824,7 +20824,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Z~oom In"
-msgstr "~Vergrößern"
+msgstr "Ver~größern"
#: MathCommands.xcu
msgctxt ""
@@ -20923,7 +20923,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Ruler"
-msgstr "~Lineal"
+msgstr "~Lineale"
#: ReportCommands.xcu
msgctxt ""
@@ -20941,7 +20941,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Add Field"
-msgstr "~Feld hinzufügen"
+msgstr "~Feld hinzufügen..."
#: ReportCommands.xcu
msgctxt ""
@@ -21049,7 +21049,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Paste ~Special..."
-msgstr "In~halte einfügen..."
+msgstr "~Inhalte einfügen..."
#: ReportCommands.xcu
msgctxt ""
@@ -21139,7 +21139,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Properties"
-msgstr "Eigenschaften"
+msgstr "~Kontrollfeld-Eigenschaften"
#: ReportCommands.xcu
msgctxt ""
@@ -21148,7 +21148,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribution..."
-msgstr "Verteilung..."
+msgstr "~Verteilung..."
#: ReportCommands.xcu
msgctxt ""
@@ -21310,7 +21310,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Symbol Shapes"
-msgstr "~Symbole"
+msgstr "S~ymbole"
#: ReportCommands.xcu
msgctxt ""
@@ -21400,7 +21400,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Snap Lines"
-msgstr "~Fanglinien"
+msgstr "F~anglinien"
#: ReportCommands.xcu
msgctxt ""
@@ -22030,7 +22030,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Undo"
-msgstr "~Rückgängig"
+msgstr "Rü~ckgängig"
#: StartModuleCommands.xcu
msgctxt ""
@@ -22174,7 +22174,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Comments"
-msgstr "Kommentare"
+msgstr "~Kommentare"
#: WriterCommands.xcu
msgctxt ""
@@ -22264,7 +22264,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Endnote"
-msgstr "~Endnote"
+msgstr "En~dnote"
#: WriterCommands.xcu
msgctxt ""
@@ -22291,7 +22291,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Table of Contents, Index or Bibliography"
-msgstr "Verzeichnis einfügen"
+msgstr "~Verzeichnis einfügen"
#: WriterCommands.xcu
msgctxt ""
@@ -22354,7 +22354,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Indexes and ~Tables"
-msgstr "~Verzeichnisse"
+msgstr "Ver~zeichnisse"
#: WriterCommands.xcu
msgctxt ""
@@ -22417,7 +22417,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pr~evious Change"
-msgstr "V~orherige Änderung"
+msgstr "~Vorherige Änderung"
#: WriterCommands.xcu
msgctxt ""
@@ -22489,7 +22489,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Manage Changes..."
-msgstr "Änderungen ~verwalten..."
+msgstr "Änderungen ver~walten..."
#: WriterCommands.xcu
msgctxt ""
@@ -22669,7 +22669,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Page Break"
-msgstr "Seiten~umbruch"
+msgstr "Sei~tenumbruch"
#: WriterCommands.xcu
msgctxt ""
@@ -23461,7 +23461,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Title Page..."
-msgstr "Titelseite..."
+msgstr "T~itelseite..."
#: WriterCommands.xcu
msgctxt ""
@@ -23470,7 +23470,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Co~lumns..."
-msgstr "Spalt~en..."
+msgstr "S~palten..."
#: WriterCommands.xcu
msgctxt ""
@@ -23497,7 +23497,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Properties..."
-msgstr "~Eigenschaften..."
+msgstr "E~igenschaften..."
#: WriterCommands.xcu
msgctxt ""
@@ -23515,7 +23515,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Properties..."
-msgstr "~Eigenschaften..."
+msgstr "Eigenschafte~n..."
#: WriterCommands.xcu
msgctxt ""
@@ -23542,7 +23542,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Footnotes and Endnotes..."
-msgstr "~Fuß-/Endnoten..."
+msgstr "Fuß-/En~dnoten..."
#: WriterCommands.xcu
msgctxt ""
@@ -23722,7 +23722,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "T~able to Text..."
-msgstr "Ta~belle in Text..."
+msgstr "Tabelle in Te~xt..."
#: WriterCommands.xcu
msgctxt ""
@@ -23731,7 +23731,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Text to Table..."
-msgstr "~Text in Tabelle..."
+msgstr "Text in Ta~belle..."
#: WriterCommands.xcu
msgctxt ""
@@ -23740,7 +23740,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Repeat Heading Rows"
-msgstr "Überschrift wiederholen"
+msgstr "Überschrift ~wiederholen"
#: WriterCommands.xcu
msgctxt ""
@@ -23947,7 +23947,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Row Height..."
-msgstr "Zeilen~höhe..."
+msgstr "~Zeilenhöhe..."
#: WriterCommands.xcu
msgctxt ""
@@ -23956,7 +23956,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Column Width..."
-msgstr "Spalten~breite..."
+msgstr "~Spaltenbreite..."
#: WriterCommands.xcu
msgctxt ""
@@ -24073,7 +24073,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Fields"
-msgstr "~Felder"
+msgstr "F~elder"
#: WriterCommands.xcu
msgctxt ""
@@ -24172,7 +24172,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Unprotect Cells"
-msgstr "Zellschutz aufheben"
+msgstr "Zells~chutz aufheben"
#: WriterCommands.xcu
msgctxt ""
@@ -24190,7 +24190,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Demote One Level"
-msgstr "Eine Ebene niedriger verschieben"
+msgstr "Ebene n~iedriger verschieben"
#: WriterCommands.xcu
msgctxt ""
@@ -24208,7 +24208,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Promote One Level"
-msgstr "Eine Ebene höher verschieben"
+msgstr "Ebene ~höher verschieben"
#: WriterCommands.xcu
msgctxt ""
@@ -24226,7 +24226,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Previous Paragraph in Level"
-msgstr "Zum vorherigen Absatz gleicher Ebene"
+msgstr "Zum vorherigen Absatz ~gleicher Ebene springen"
#: WriterCommands.xcu
msgctxt ""
@@ -24253,7 +24253,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "To Next Paragraph in Level"
-msgstr "Zum nächsten Absatz gleicher Ebene"
+msgstr "~Zum nächsten Absatz g~leicher Ebene springen"
#: WriterCommands.xcu
msgctxt ""
@@ -24262,7 +24262,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Up"
-msgstr "Nach oben"
+msgstr "Nach ~oben verschieben"
#: WriterCommands.xcu
msgctxt ""
@@ -24280,7 +24280,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Down"
-msgstr "Nach unten"
+msgstr "Nach ~unten verschieben"
#: WriterCommands.xcu
msgctxt ""
@@ -24307,7 +24307,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Unnumbered Entry"
-msgstr "Eintrag ohne Nummer einfügen"
+msgstr "Eintrag ohne Nummer ein~fügen"
#: WriterCommands.xcu
msgctxt ""
@@ -24343,7 +24343,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Demote One Level With Subpoints"
-msgstr "Eine Ebene mit Unterpunkten niedriger verschieben"
+msgstr "Mit Unterpunkten Ebene nie~driger verschieben"
#: WriterCommands.xcu
msgctxt ""
@@ -24361,7 +24361,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Promote One Level With Subpoints"
-msgstr "Eine Ebene mit Unterpunkten höher verschieben"
+msgstr "Mit Unterpunkten Ebene höh~er verschieben"
#: WriterCommands.xcu
msgctxt ""
@@ -24370,7 +24370,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Up with Subpoints"
-msgstr "Mit Unterpunkten nach oben schieben"
+msgstr "Mit Unterpunkten nach o~ben verschieben"
#: WriterCommands.xcu
msgctxt ""
@@ -24388,7 +24388,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Down with Subpoints"
-msgstr "Mit Unterpunkten nach unten schieben"
+msgstr "Mit Unterpunkten nach un~ten verschieben"
#: WriterCommands.xcu
msgctxt ""
@@ -24613,7 +24613,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page Formatting"
-msgstr "Seitenformatierung"
+msgstr "Seiten~formatierung"
#: WriterCommands.xcu
msgctxt ""
@@ -24955,7 +24955,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Link Frames"
-msgstr "Verketten"
+msgstr "~Verketten"
#: WriterCommands.xcu
msgctxt ""
@@ -24973,7 +24973,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Unlink Frames"
-msgstr "Verkettung lösen"
+msgstr "Verkettung ~lösen"
#: WriterCommands.xcu
msgctxt ""
@@ -25000,7 +25000,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Restart Numbering"
-msgstr "Nummerierung neu beginnen"
+msgstr "Nu~mmerierung neu beginnen"
#: WriterCommands.xcu
msgctxt ""
@@ -25162,7 +25162,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Merge Table"
-msgstr "Tabellen ve~rbinden"
+msgstr "Tabellen ver~binden"
#: WriterCommands.xcu
msgctxt ""
@@ -25180,7 +25180,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Break Across Pages"
-msgstr "~Zeilenumbruch an Seitenenden"
+msgstr "Zeilenumbruch ~an Seitenenden"
#: WriterCommands.xcu
msgctxt ""
@@ -25369,7 +25369,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Rulers"
-msgstr "~Horizontales Lineal"
+msgstr "~Lineale"
#: WriterCommands.xcu
msgctxt ""
@@ -25504,7 +25504,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Outline ~Numbering..."
-msgstr "Kapitel~nummerierung..."
+msgstr "~Kapitelnummerierung..."
#: WriterCommands.xcu
msgctxt ""
@@ -25531,7 +25531,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "So~rt..."
-msgstr "S~ortieren..."
+msgstr "~Sortieren..."
#: WriterCommands.xcu
msgctxt ""
@@ -25675,7 +25675,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Si~ze"
-msgstr "~Größe"
+msgstr "G~röße"
#: WriterCommands.xcu
msgctxt ""
@@ -25693,7 +25693,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Update"
-msgstr "Akt~ualisieren"
+msgstr "~Aktualisieren"
#: WriterCommands.xcu
msgctxt ""
@@ -25738,7 +25738,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Wrap"
-msgstr "U~mlauf"
+msgstr "~Umlauf"
#: WriterCommands.xcu
msgctxt ""
@@ -25765,7 +25765,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "AutoCorr~ect"
-msgstr "A~utoKorrektur"
+msgstr "Auto~Korrektur"
#: WriterCommands.xcu
msgctxt ""
@@ -25792,7 +25792,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Continue previous numbering"
-msgstr "Vorherige Nummerierung fortsetzen"
+msgstr "~Vorherige Nummerierung fortsetzen"
#: WriterCommands.xcu
msgctxt ""
@@ -25855,7 +25855,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default ~Paragraph"
-msgstr "Absatz ~Standard"
+msgstr "Absatz Stan~dard"
#: WriterCommands.xcu
msgctxt ""
@@ -25936,7 +25936,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Quotations"
-msgstr "~Zitate"
+msgstr "Z~itate"
#: WriterCommands.xcu
msgctxt ""
@@ -25954,7 +25954,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Text Body"
-msgstr "Textkörper"
+msgstr "Te~xtkörper"
#: WriterCommands.xcu
msgctxt ""
@@ -25981,7 +25981,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Strong Emphasis"
-msgstr "~Stark betont"
+msgstr "Sta~rk betont"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/dgo/cui/uiconfig/ui.po b/source/dgo/cui/uiconfig/ui.po
index 30e67eefb2a..a3cfbeb9e16 100644
--- a/source/dgo/cui/uiconfig/ui.po
+++ b/source/dgo/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 13:38+0000\n"
+"PO-Revision-Date: 2016-03-07 22:32+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: dgo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452260327.000000\n"
+"X-POOTLE-MTIME: 1457389926.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14261,31 +14261,34 @@ msgid "N_one"
msgstr "कोई नेईं"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
diff --git a/source/dgo/dbaccess/uiconfig/ui.po b/source/dgo/dbaccess/uiconfig/ui.po
index 5719c742cce..ddd36baf074 100644
--- a/source/dgo/dbaccess/uiconfig/ui.po
+++ b/source/dgo/dbaccess/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-05-12 06:12+0000\n"
+"PO-Revision-Date: 2016-03-07 22:37+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: dgo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431411171.000000\n"
+"X-POOTLE-MTIME: 1457390243.000000\n"
#: admindialog.ui
#, fuzzy
@@ -1936,13 +1936,14 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
msgctxt ""
@@ -1963,13 +1964,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3034,58 +3036,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/dgo/extensions/uiconfig/sabpilot/ui.po b/source/dgo/extensions/uiconfig/sabpilot/ui.po
index 2749852e5a5..2ead3142ad8 100644
--- a/source/dgo/extensions/uiconfig/sabpilot/ui.po
+++ b/source/dgo/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 23:17+0000\n"
+"PO-Revision-Date: 2016-03-07 22:45+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dgo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435274222.000000\n"
+"X-POOTLE-MTIME: 1457390743.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -294,13 +294,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -312,13 +313,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -393,22 +395,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -675,13 +679,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/dgo/librelogo/source/pythonpath.po b/source/dgo/librelogo/source/pythonpath.po
index cddb6e4feab..758e4aa619b 100644
--- a/source/dgo/librelogo/source/pythonpath.po
+++ b/source/dgo/librelogo/source/pythonpath.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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2014-07-28 06:55+0000\n"
-"Last-Translator: Kaniska PSS <kaniska2008@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-07 23:01+0000\n"
+"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1406530503.000000\n"
+"X-POOTLE-MTIME: 1457391700.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -801,12 +801,13 @@ msgid "."
msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/dgo/officecfg/registry/data/org/openoffice/Office.po b/source/dgo/officecfg/registry/data/org/openoffice/Office.po
index f189fd656d1..430713e5a95 100644
--- a/source/dgo/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/dgo/officecfg/registry/data/org/openoffice/Office.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-08-06 22:50+0000\n"
+"PO-Revision-Date: 2016-03-07 23:13+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dgo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438901455.000000\n"
+"X-POOTLE-MTIME: 1457392394.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1433,13 +1433,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr "OLE चीजें लेई प्रतिस्थापना ग्राफिक सिरजे जा करदे न..."
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/dgo/reportdesign/uiconfig/dbreport/ui.po b/source/dgo/reportdesign/uiconfig/dbreport/ui.po
index 6b72fb5d3a9..0a2b36accf7 100644
--- a/source/dgo/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/dgo/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-18 18:01+0000\n"
+"PO-Revision-Date: 2016-03-07 23:41+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dgo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416333702.000000\n"
+"X-POOTLE-MTIME: 1457394093.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -196,13 +196,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -214,13 +215,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -277,13 +279,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/dgo/sc/uiconfig/scalc/ui.po b/source/dgo/sc/uiconfig/scalc/ui.po
index d5c64e2b709..d675cf7fc00 100644
--- a/source/dgo/sc/uiconfig/scalc/ui.po
+++ b/source/dgo/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-08-25 20:12+0000\n"
+"PO-Revision-Date: 2016-03-08 00:08+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: dgo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440533532.000000\n"
+"X-POOTLE-MTIME: 1457395732.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6393,22 +6393,24 @@ msgid "Distribution:"
msgstr ""
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter1-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter2-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
msgctxt ""
diff --git a/source/dgo/sd/uiconfig/simpress/ui.po b/source/dgo/sd/uiconfig/simpress/ui.po
index c62c5f71a9f..876da33d3ad 100644
--- a/source/dgo/sd/uiconfig/simpress/ui.po
+++ b/source/dgo/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 23:32+0000\n"
+"PO-Revision-Date: 2016-03-08 00:33+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: dgo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435275147.000000\n"
+"X-POOTLE-MTIME: 1457397182.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -1004,22 +1004,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/dgo/sw/source/ui/dbui.po b/source/dgo/sw/source/ui/dbui.po
index 2212dd20a26..29043bb0dee 100644
--- a/source/dgo/sw/source/ui/dbui.po
+++ b/source/dgo/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-12 06:28+0000\n"
+"PO-Revision-Date: 2016-03-08 01:12+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dgo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431412133.000000\n"
+"X-POOTLE-MTIME: 1457399575.000000\n"
#: dbui.src
msgctxt ""
@@ -491,31 +491,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/dgo/sw/source/ui/index.po b/source/dgo/sw/source/ui/index.po
index ad451561f06..e6f1960ba22 100644
--- a/source/dgo/sw/source/ui/index.po
+++ b/source/dgo/sw/source/ui/index.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-09-25 14:07+0000\n"
-"Last-Translator: Kaniska PSS <kaniska2008@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 01:14+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1411654055.000000\n"
+"X-POOTLE-MTIME: 1457399678.000000\n"
#: cnttab.src
#, fuzzy
@@ -105,12 +105,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/dgo/sw/uiconfig/swriter/ui.po b/source/dgo/sw/uiconfig/swriter/ui.po
index 71dea7a31ff..36124e29aa4 100644
--- a/source/dgo/sw/uiconfig/swriter/ui.po
+++ b/source/dgo/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-25 20:23+0000\n"
+"PO-Revision-Date: 2016-03-08 01:28+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: dgo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440534214.000000\n"
+"X-POOTLE-MTIME: 1457400526.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2334,13 +2334,14 @@ msgid "Convert Table to Text"
msgstr "टेबल इबारत च रूपांतरत करो"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2526,13 +2527,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2544,13 +2546,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4479,13 +4482,14 @@ msgid "None"
msgstr "कोई नेईं"
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
#, fuzzy
@@ -6423,13 +6427,14 @@ msgid "Numbering separator:"
msgstr "संख्याकरण-नखेड़ू"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
#, fuzzy
@@ -8833,13 +8838,14 @@ msgid "Previous"
msgstr "पिछला"
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9702,13 +9708,14 @@ msgid "Position:"
msgstr "स्थिति "
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
#, fuzzy
@@ -15908,40 +15915,44 @@ msgid "[none]"
msgstr "कोई नेईं "
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
#, fuzzy
diff --git a/source/dgo/vcl/source/src.po b/source/dgo/vcl/source/src.po
index 18ea6fb3065..a52c93b3ab5 100644
--- a/source/dgo/vcl/source/src.po
+++ b/source/dgo/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 16:05+0000\n"
+"PO-Revision-Date: 2016-03-08 01:32+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dgo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449849916.000000\n"
+"X-POOTLE-MTIME: 1457400773.000000\n"
#: app.src
msgctxt ""
@@ -1567,13 +1567,14 @@ msgid "pixel"
msgstr "पिक्सल"
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/dz/cui/uiconfig/ui.po b/source/dz/cui/uiconfig/ui.po
index 22a7075a3f2..6da18c18029 100644
--- a/source/dz/cui/uiconfig/ui.po
+++ b/source/dz/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 13:38+0000\n"
+"PO-Revision-Date: 2016-03-07 22:27+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: dz\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452260293.000000\n"
+"X-POOTLE-MTIME: 1457389676.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14053,31 +14053,34 @@ msgid "N_one"
msgstr ""
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
@@ -17353,40 +17356,44 @@ msgid "(None)"
msgstr ""
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"1\n"
"stringlist.text"
msgid "("
-msgstr ""
+msgstr "("
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"2\n"
"stringlist.text"
msgid "["
-msgstr ""
+msgstr "["
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"3\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
#: twolinespage.ui
msgctxt ""
@@ -17407,40 +17414,44 @@ msgid "(None)"
msgstr ""
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
#: twolinespage.ui
msgctxt ""
diff --git a/source/dz/dbaccess/uiconfig/ui.po b/source/dz/dbaccess/uiconfig/ui.po
index fff9c9f1e35..1b8767e4105 100644
--- a/source/dz/dbaccess/uiconfig/ui.po
+++ b/source/dz/dbaccess/uiconfig/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-04-22 23:40+0200\n"
-"PO-Revision-Date: 2013-04-15 11:05+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2016-03-07 22:33+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1366023918.0\n"
+"X-POOTLE-MTIME: 1457389980.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1928,22 +1928,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1955,13 +1957,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3017,58 +3020,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/dz/extensions/uiconfig/sabpilot/ui.po b/source/dz/extensions/uiconfig/sabpilot/ui.po
index d301a03f398..7220047ab1f 100644
--- a/source/dz/extensions/uiconfig/sabpilot/ui.po
+++ b/source/dz/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 23:15+0000\n"
+"PO-Revision-Date: 2016-03-07 22:40+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435274145.000000\n"
+"X-POOTLE-MTIME: 1457390426.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/scalc/01.po b/source/dz/helpcontent2/source/text/scalc/01.po
index 3e7cdcb2dff..c07d280e1ea 100644
--- a/source/dz/helpcontent2/source/text/scalc/01.po
+++ b/source/dz/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 16:41+0000\n"
+"PO-Revision-Date: 2016-03-03 17:13+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431362519.000000\n"
+"X-POOTLE-MTIME: 1457025219.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -60060,13 +60060,14 @@ msgid "equal"
msgstr "མཉམ་པ།"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -60078,13 +60079,14 @@ msgid "less than"
msgstr "ཉུང་མི།"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/shared/00.po b/source/dz/helpcontent2/source/text/shared/00.po
index 2355d175e46..fa7352bedbd 100644
--- a/source/dz/helpcontent2/source/text/shared/00.po
+++ b/source/dz/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-09-01 18:01+0000\n"
-"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
+"PO-Revision-Date: 2016-03-03 17:37+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1441130508.000000\n"
+"X-POOTLE-MTIME: 1457026652.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3975,12 +3975,13 @@ msgid "ODF 1.2 (Extended)"
msgstr ""
#: 00000021.xhp
+#, fuzzy
msgctxt ""
"00000021.xhp\n"
"par_id100120091238112\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 00000021.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/shared/01.po b/source/dz/helpcontent2/source/text/shared/01.po
index aca578cb72d..44e44c8c28e 100644
--- a/source/dz/helpcontent2/source/text/shared/01.po
+++ b/source/dz/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-12 13:01+0000\n"
+"PO-Revision-Date: 2016-03-03 18:04+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452603707.000000\n"
+"X-POOTLE-MTIME: 1457028258.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7490,13 +7490,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr "གསལ་བཀོད་མ་འབད་ཚུན་ཚོད་དང་ གསལ་བཀོད་མ་འབད་བ་ཅིན་ ཡིག་འབྲུ་རྐྱང་པ་གང་རུང་གི་ངོ་ཚབ་སྟོནམ་ཨིན།"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7508,13 +7509,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr "གྲལ་ཐིག་མཚམས་ཡང་ན་དོན་མཚམས་ཀྱི་མཚམས་རྐྱངམ་ཅིག་མ་གཏོག་ ཡིག་འབྲུ་རྐྱང་པ་གང་རུང་ལུ་ངོ་ཚབ་འབདཝ་ཨིན། དཔེར་ན་ འཚོལ་ཞིབ་ཀྱི་ཐ་སྙད་འདི་ \"sh.rt\" returns both \"shirt\" དང་ \"short\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7526,13 +7528,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr "ཐ་སྙད་འདི་དོན་མཚམས་ཀྱི་མགོ་ལུ་ཡོད་པ་ཅིན་རྐྱངམ་ཅིག་ འཚོལ་ཞིབ་ཀྱི་ཐ་སྙད་འདི་འཚོལཝ་ཨིན། དོན་མཚམས་ཅིག་གི་མགོ་ལུ་ཡོད་པའི་ ས་སྒོ་སྟོངམ་ཚུ་ཡང་ན་ ཡིག་འབྲུ་ཨེན་ཀོར་གཞི་ཁྲམ་བཟུམ་གྱི་ དམིགས་བསལ་གྱི་དངོས་པོ་ཚུ་ སྣང་མེད་འབད་བཞགཔ་ཨིན། ་དཔེར་ན: \"^Peter\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7552,13 +7555,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7597,13 +7601,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr "དོན་མཚམས་ཀྱི་ནང་ལུ་ འཚོལ་ཞིབ་དཔེ་གཞི་ལུ་མཐུན་སྒྲིག་འབད་ཚུགས་མི་ ཡིག་རྒྱུན་རིངམ་འདི་ཨ་རྟག་རང་འཐོབ་ཨིན། དོན་མཚམས་དེ་གིས་ \"AX 4 AX4\"གནས་དེ་ཡོད་པ་ཅིན་ དོན་ཚན་ཧྲིལ་བུ་འདི་གཙོ་དམིགས་བཀོད་དོ་ཡོདཔ་ཨིན།"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7615,13 +7620,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr "\"?\"གདོང་ཁ་ལུ་ ཀལད་ཀོར་ཡང་ན་ ཡིག་འབྲུ་གང་རུང་གཅིག་འཚོལཝ་ཨིན། དཔེར་ན་ \"Texts?\" གིས་ \"Text\"འཚོལ་ནི་དང་ \"Texts\" དང་ \"x(ab|c)?y\" གིས་ \"xy\", \"xaby\", ཡང་ན་ \"xcy\"འཚོལ་དོ་བཟུམ་ཨིན།"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -15826,13 +15832,14 @@ msgid "Explanation"
msgstr "འགྲལ་བཤད།"
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/shared/02.po b/source/dz/helpcontent2/source/text/shared/02.po
index 2f75f181622..c43da08ca13 100644
--- a/source/dz/helpcontent2/source/text/shared/02.po
+++ b/source/dz/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 16:44+0000\n"
+"PO-Revision-Date: 2016-03-03 18:17+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431362653.000000\n"
+"X-POOTLE-MTIME: 1457029056.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -13865,13 +13865,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">ཐོ་ཡིག་བཀོད་ཡོད་པའི་གནད་སྡུད་གཞི་རྟེན་གྱི་ས་སྒོ་ཚུ་ <emph>ཐིག་ཁྲམ་ཀེར་ཐིག་(ཚུ་)</emph>ཐོ་ཡིག་སྒྲོམ་ནང་ སྤོ་བཤུད་འབདཝ་ཨིན། </ahelp> <emph>ཐིག་ཁྲམ་ཀེར་ཐིག་(ཚུ་)</emph> ཐོ་ཡིག་སྒྲོ་ནང་ཐོ་ཡིག་བཀོད་ཡོད་པའི་ས་སྒོ་ཚུ་ཆ་མཉམ་ར་ ཡིག་ཆ་ནང་བཙུགས་ཅི།"
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13883,13 +13884,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\"> སེལ་འཐུ་འབད་ཡོད་པའི་གནད་སྡུད་གཞི་རྟེན་གྱི་ས་སྒོ་འདི་ <emph>ཐིག་ཁྲམ་ཀེར་ཐིག་(ཚུ་)</emph> ཐོ་ཡིག་སྒྲོམ་ནང་ སྤོ་བཤུད་འབདཝ་ཨིན། </ahelp> དེ་མ་ཚད་ཁྱོད་ཀྱིས་ འདི་<emph>ཐིག་ཁྲམ་ཀེར་ཐིག་(ཚུ་)</emph> ཐོ་ཡིག་སྒྲོམ་ནང་སྤོ་བཤུད་འབད་ནི་གི་དོན་ལུ་ ཐོ་བཀོད་གུ་ཚར་གཉིས་ཨེབ་གཏང་འབད་ཚུགས། <emph>Table column(s)</emph> ཐོ་ཡིག་སྒྲོམ་ནང་ཐོ་ཡིག་བཀོད་འབད་ཡོད་པའི་ས་སྒོ་ཚུ་ཆ་མཉམ་ ཡིག་ཆ་ནང་ལ་བཙུགས་ཡོདཔ།"
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -14178,13 +14180,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr "དེ་ཚུཕ་ཡིག་ཆ་ནང་བཙུག་ནི་ལུ་ སེལ་འཐུ་ཐོ་ཡིག་ནང་དང་ལེན་འབད་བཏུབ་པའི་གནད་སྡུད་གཞི་རྟེན་ཐིག་ཁྲམ་གྱི་ཀེར་ཐིག་ཚུ་ཐོ་བཀོད་འབདཝ་ཨིན། <ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tabletxtcols\" visibility=\"visible\"> ཁྱོད་ཀྱིས་ཡིག་ཆ་ནང་བཙུག་དགོ་མནོ་མི་ གནད་སྡུད་གཞི་རྟེན་གྱི་ཀེར་ཐིག་ཚུ་སེལ་འཐུ་འབད། </ahelp>"
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15683,13 +15686,14 @@ msgid "Example"
msgstr "དཔེར་ན།"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15719,13 +15723,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr "\"M?ller\" སླར་ལོགཔ་ཨིན་ དཔེར་ན་ མི་ལར་དང་མོ་ལར་"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15809,31 +15814,34 @@ msgid "Search with regular expressions"
msgstr "དུས་རྒྱུན་གྱི་གསལ་བརྗོད་དང་མཉམ་ཅིག་འཚོལ་ཞིབ་འབད་"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/shared/autopi.po b/source/dz/helpcontent2/source/text/shared/autopi.po
index 8f98d1da9ff..ca545023dde 100644
--- a/source/dz/helpcontent2/source/text/shared/autopi.po
+++ b/source/dz/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-05-11 16:45+0000\n"
+"PO-Revision-Date: 2016-03-03 18:26+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431362702.000000\n"
+"X-POOTLE-MTIME: 1457029618.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3422,13 +3422,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">སེལ་འཐུ་འབད་ཡོད་པའི་ཐིག་ཁྲམ་ ཡང་ན་ འདྲི་དཔྱད་ནང་ གནད་སྡུད་གཞི་རྟེན་ས་སྒོ་མིང་གི་མིང་ཚུ་ ཐོ་ཡིག་བཞགཔ་ཨིན། </ahelp>ཁྱོད་ཀྱིས་ ས་སྒོ་གཅིག་ལས་ལྷག་སྟེ་སེལ་འཐུ་འབད་ནིའི་དོན་ལུ་ ཨེབ་གཏང་འབད་བའི་སྐབས་ ས་སྒོ་ ཡང་ན་ སོར་ལྡེ་མར་བཟུང་ ཡང་ན་ <switchinline select=\"sys\"><caseinline select=\"MAC\">བརྡ་བཀོད་ </caseinline><defaultinline>ཚད་འཛིན་</defaultinline></switchinline>དང་ལྡེ་མིག་ཚུ་སེལ་འཐུ་འབད་ནི་ལུ་ ཨེབ་གཏང་འབད།"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3459,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3496,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4524,13 +4527,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">སྙན་ཞུ་གསརཔ་གི་གྲངས་སུ་བཙུགས་ཡོད་པའི་ས་སྒོ་ཚུ་ བཀྲམ་སྟོན་འབདཝ་ཨིན།</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4560,13 +4564,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr ""
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4720,13 +4725,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">སྙན་ཞུ་འདི་སྡེ་ཚན་བཟོ་ནི་ཨིན་པའི་ས་སྒོ་ཚུ་ ཐོ་ཡིག་བཀོདཔ་ཨིན། སྡེ་ཚན་གནས་རིམ་གཅིག་ རྩ་བསྐྲད་འབད་ནི་ལུ་ ས་སྒོའི་མིང་སེལ་འཐུ་འབད་གཞངནམ་ལས་ <emph><</emph> ཨེབ་རྟ་ལུ་ ཨེབ་གཏང་འབད། ཁྱོད་ར་ སྡེ་ཚན་གནས་རིམ་བཞི་ཚུན་ སེལ་འཐུ་འབད། </ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4738,13 +4744,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr ""
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/shared/explorer/database.po b/source/dz/helpcontent2/source/text/shared/explorer/database.po
index 85aed3ed0f7..086fa72c5eb 100644
--- a/source/dz/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/dz/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-11 16:45+0000\n"
+"PO-Revision-Date: 2016-03-03 18:36+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431362727.000000\n"
+"X-POOTLE-MTIME: 1457030211.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1760,13 +1760,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr "... དམིགས་བསལ་གྱི་གསལ་བརྗོད་ལུ་ ས་སྒོའི་ནང་དོན་གྱིས་ཆ་མཉམ་མི་འབད།"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1787,13 +1788,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr "... དམིགས་བསལ་གསལ་བརྗོད་ལས་ ས་སྒོའི་ནང་དོན་འདི་སྦོམ་ཡོད།"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2793,13 +2795,14 @@ msgid "No"
msgstr "མེན།"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6230,13 +6233,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\"> གིས་ ཁྱོད་ཀྱིས་ཐིག་ཁྲམ་ལུ་འགན་སྤྲོད་འབད་བཏུབ་པའི་ ཟུར་ཐོ་འཐོབ་ཚུགས་མི་ཚུ་ཐོ་ཡིག་འབདཝ་ཨིན། </ahelp> སེལ་འཐུ་འབད་ཡོད་པའི་ཐིག་ཁྲམ་ལུ་ ཟུར་ཐོ་འགན་སྤྲོད་འབད་ནི་ལུ་ ངོས་དཔར་གཡོན་གྱི་མདའ་རྟགས་ལུ་ཨེབ་གཏང་། གཡོན་གྱི་མདའ་རྟགས་གཉིས་ལྡན་དེ་གིས་ འཐོབ་ཚུགས་པའི་ཟུར་ཐོ་ཚུ་ཆ་མཉམ་རང་ འགན་སྤྲོད་འབདཝ་ཨིན།"
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6266,13 +6270,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">བར་སྟོང་ཡོད་པའི་ཟུར་ཐོ་ཚུ་ཆ་མཉམ་རང་ <emph>ཐིག་ཁྲམ་གྱི་ཟུར་ཐོ་ཚུ་</emph>ཐོ་ཡིག་ལུ་སྤོ་བཤུད་འབདཝ་ཨིན།</ahelp>"
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12420,12 +12425,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr "<ahelp hid=\".\">ཚད་འཛིན་ཚུ་གྱི་གྲལ་ཐིག་གསརཔ་ཅིག་ མཇུག་སྣོན་འབད་དོ།</ahelp>"
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14444,12 +14450,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr "<ahelp hid=\".\">ས་སྒོའི་བརྡ་དོན་འདི་ཞུན་དག་འབད་ནིའི་དོན་ལུ་ ས་སྒོ་ཅིག་སེལ་འཐུ་འབད།</ahelp>"
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/swriter/01.po b/source/dz/helpcontent2/source/text/swriter/01.po
index 91f524bce24..7e9558e84c6 100644
--- a/source/dz/helpcontent2/source/text/swriter/01.po
+++ b/source/dz/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 16:47+0000\n"
+"PO-Revision-Date: 2016-03-03 20:21+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431362857.000000\n"
+"X-POOTLE-MTIME: 1457036492.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -11030,13 +11030,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\"> ཁྱོད་ཀྱིས་སེལ་འཐུ་འབད་ཡོད་པའི་ཟུར་ཐོའི་གནས་རིམ་དེ་ལུ་འཇུག་སྤྱོད་འབད་དགོ་མནོ་མི་ དོན་མཚམས་ཀྱི་བཟོ་རྣམ་དེ་སེལ་འཐུ་འབད་ཞིནམ་ལས་ དེ་ལས་ འགན་སྤྲོད་(<emph><) </emph>ཨེབ་རྟ་ཏེ་ལུ་ཨེབ་གཏང་འབད།</ahelp>"
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -27771,12 +27772,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">ས་སྒོ་ཅིག་སེལ་འཐུ་འབད་དེ་ ཐོ་ཡིག་ཞགན་མི་ཅིག་ལུ་ ས་སྒོ་དེ་འདྲུད།</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27787,12 +27789,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">ཁ་བྱང་རྒྱུ་རྫས་ཐོ་ཡིག་ནང་ལས་ ཐོ་ཡིག་གཞན་མི་ཅིག་ལུ་ སེལ་འཐུ་འབད་ཡོད་པའི་ས་སྒོ་དེ་ཁ་སྐོང་བརྐྱབ་ཨིན། ཁྱོད་ཀྱིས་ ས་སྒཽ་གཅིག་དེ་ཚར་གཅིག་ལས་ལྷག་སྟེ་ཁ་སྐོང་འབད་ཚུགས།</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27979,12 +27982,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">ས་སྒོ་ཅིག་སེལ་འཐུ་འབད་དེ་ ཐོ་ཡིག་ཞགན་མི་ཅིག་ལུ་ ས་སྒོ་དེ་འདྲུད།</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27995,12 +27999,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elem
msgstr "<ahelp hid=\".\">སེལ་འཐུ་འབད་ཡོད་པའི་ས་སྒོ་ཚུ གུས་བཏུད་རྒྱུ་རྫས་ཐོ་ཡིག་ནང་ལས་ གཞན་མི་ཅིག་ལུ་ ཁ་སྐོང་རྐྱབ་ཨིན། ཁྱོད་ཀྱིས་ས་སྒོ་དེ་ ཚར་གཅིག་ལས་ལྷག་སྟེ་ཁ་སྐོང་བརྐྱབ་ཚུགས།</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28435,12 +28440,13 @@ msgid "<ahelp hid=\".\">Select an address field and drag the field to the other
msgstr "<ahelp hid=\".\">ཁ་བྱང་ས་སྒོ་ཅིག་སེལ་འཐུ་འབད་དེ་ ས་སྒོ་དེ་ཐོ་ཡིག་གཞན་མི་ཅིག་ལུ་འདྲུད།</ahelp>"
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28451,12 +28457,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">སེལ་འཐུ་འབད་ཡོད་པའི་ས་སྒོ་དེ་ ཁ་བྱང་རྒྱུ་རྫས་ཐོ་ཡིག་ནང་ལས་ ཐོ་ཡིག་གཞན་མི་ཅིག་ལུ་ཁ་སྐོང་བརྐྱབ་ཨིན།.</ahelp>ཁྱོད་ཀྱིས་ ས་སྒོ་གཅིག་ཚར་གཅིག་ལས་ལྷག་སྟེ་ཁ་སྐོང་བརྐྱབ་ཚུགས།"
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/swriter/02.po b/source/dz/helpcontent2/source/text/swriter/02.po
index 50d19f66f48..ceb41363d72 100644
--- a/source/dz/helpcontent2/source/text/swriter/02.po
+++ b/source/dz/helpcontent2/source/text/swriter/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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 14:25+0000\n"
+"PO-Revision-Date: 2016-03-03 20:23+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429799140.000000\n"
+"X-POOTLE-MTIME: 1457036637.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1673,13 +1673,14 @@ msgid "Subtraction"
msgstr "ཕབ་ནི།"
#: 14020000.xhp
+#, fuzzy
msgctxt ""
"14020000.xhp\n"
"par_id3150087\n"
"12\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 14020000.xhp
msgctxt ""
diff --git a/source/dz/librelogo/source/pythonpath.po b/source/dz/librelogo/source/pythonpath.po
index 51a5fe033cd..e85f346c8ce 100644
--- a/source/dz/librelogo/source/pythonpath.po
+++ b/source/dz/librelogo/source/pythonpath.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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2013-04-15 11:05+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-07 22:57+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1366023925.0\n"
+"X-POOTLE-MTIME: 1457391424.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -795,20 +795,22 @@ msgid "pi|π"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
"property.text"
msgid "."
-msgstr ""
+msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/dz/officecfg/registry/data/org/openoffice/Office.po b/source/dz/officecfg/registry/data/org/openoffice/Office.po
index 3d25fbc0973..4b4c1b97f43 100644
--- a/source/dz/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/dz/officecfg/registry/data/org/openoffice/Office.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-08-06 22:40+0000\n"
+"PO-Revision-Date: 2016-03-07 23:06+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438900823.000000\n"
+"X-POOTLE-MTIME: 1457391996.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1430,13 +1430,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/dz/reportdesign/uiconfig/dbreport/ui.po b/source/dz/reportdesign/uiconfig/dbreport/ui.po
index cc4a3997d77..9b8ab1f1e01 100644
--- a/source/dz/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/dz/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-18 18:17+0000\n"
+"PO-Revision-Date: 2016-03-07 23:31+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416334665.000000\n"
+"X-POOTLE-MTIME: 1457393462.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/dz/sc/source/ui/src.po b/source/dz/sc/source/ui/src.po
index f18cf5afb49..0a98dda8b12 100644
--- a/source/dz/sc/source/ui/src.po
+++ b/source/dz/sc/source/ui/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-12-11 12:57+0100\n"
-"PO-Revision-Date: 2015-08-25 20:17+0000\n"
+"PO-Revision-Date: 2016-03-07 23:53+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440533867.000000\n"
+"X-POOTLE-MTIME: 1457394799.000000\n"
#: condformatdlg.src
#, fuzzy
@@ -2672,13 +2672,14 @@ msgid "Text Attributes"
msgstr "ཚིག་ཡིག་གི་ཁྱད་ཆོས།"
#: globstr.src
+#, fuzzy
msgctxt ""
"globstr.src\n"
"RID_GLOBSTR\n"
"STR_HFCMD_DELIMITER\n"
"string.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: globstr.src
msgctxt ""
diff --git a/source/dz/sc/uiconfig/scalc/ui.po b/source/dz/sc/uiconfig/scalc/ui.po
index d172865934e..02af1a673f5 100644
--- a/source/dz/sc/uiconfig/scalc/ui.po
+++ b/source/dz/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-08-25 20:18+0000\n"
+"PO-Revision-Date: 2016-03-07 23:58+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: dz\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440533887.000000\n"
+"X-POOTLE-MTIME: 1457395089.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6390,22 +6390,24 @@ msgid "Distribution:"
msgstr ""
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter1-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter2-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
msgctxt ""
diff --git a/source/dz/sd/source/ui/app.po b/source/dz/sd/source/ui/app.po
index 157bed4883b..a2ea9170b2c 100644
--- a/source/dz/sd/source/ui/app.po
+++ b/source/dz/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-08-25 20:30+0000\n"
+"PO-Revision-Date: 2016-03-08 00:18+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440534600.000000\n"
+"X-POOTLE-MTIME: 1457396331.000000\n"
#: menuids3_tmpl.src
msgctxt ""
@@ -3771,12 +3771,13 @@ msgid "<number>"
msgstr "<number>"
#: strings.src
+#, fuzzy
msgctxt ""
"strings.src\n"
"STR_FIELD_PLACEHOLDER_COUNT\n"
"string.text"
msgid "<count>"
-msgstr ""
+msgstr "<count>"
#: strings.src
msgctxt ""
diff --git a/source/dz/sd/uiconfig/simpress/ui.po b/source/dz/sd/uiconfig/simpress/ui.po
index 4969ce91094..11f9da3047a 100644
--- a/source/dz/sd/uiconfig/simpress/ui.po
+++ b/source/dz/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 23:36+0000\n"
+"PO-Revision-Date: 2016-03-08 00:20+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: dz\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435275366.000000\n"
+"X-POOTLE-MTIME: 1457396443.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -998,22 +998,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/dz/sw/source/core/undo.po b/source/dz/sw/source/core/undo.po
index 6c96239b9e6..37ab5563f23 100644
--- a/source/dz/sw/source/core/undo.po
+++ b/source/dz/sw/source/core/undo.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:40+0200\n"
-"PO-Revision-Date: 2015-05-12 06:49+0000\n"
+"PO-Revision-Date: 2016-03-08 00:52+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431413354.000000\n"
+"X-POOTLE-MTIME: 1457398332.000000\n"
#: undo.src
msgctxt ""
@@ -845,20 +845,22 @@ msgid "Table/index changed"
msgstr ""
#: undo.src
+#, fuzzy
msgctxt ""
"undo.src\n"
"STR_START_QUOTE\n"
"string.text"
msgid "'"
-msgstr ""
+msgstr "'"
#: undo.src
+#, fuzzy
msgctxt ""
"undo.src\n"
"STR_END_QUOTE\n"
"string.text"
msgid "'"
-msgstr ""
+msgstr "'"
#: undo.src
msgctxt ""
@@ -902,12 +904,13 @@ msgid "Paste clipboard"
msgstr "འཛིན་པང་ སྦྱར།"
#: undo.src
+#, fuzzy
msgctxt ""
"undo.src\n"
"STR_YIELDS\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: undo.src
msgctxt ""
diff --git a/source/dz/sw/source/ui/dbui.po b/source/dz/sw/source/ui/dbui.po
index f67873daa74..012b9549669 100644
--- a/source/dz/sw/source/ui/dbui.po
+++ b/source/dz/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-12 06:50+0000\n"
+"PO-Revision-Date: 2016-03-08 00:54+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431413423.000000\n"
+"X-POOTLE-MTIME: 1457398471.000000\n"
#: dbui.src
msgctxt ""
@@ -488,31 +488,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/dz/sw/source/ui/index.po b/source/dz/sw/source/ui/index.po
index 591ab03c8fb..d106ed709da 100644
--- a/source/dz/sw/source/ui/index.po
+++ b/source/dz/sw/source/ui/index.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2012-01-05 12:39+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 00:56+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457398574.000000\n"
#: cnttab.src
#, fuzzy
@@ -57,20 +58,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -105,12 +108,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/dz/sw/uiconfig/swriter/ui.po b/source/dz/sw/uiconfig/swriter/ui.po
index c6d6198534a..1e3bfa918d1 100644
--- a/source/dz/sw/uiconfig/swriter/ui.po
+++ b/source/dz/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-25 20:35+0000\n"
+"PO-Revision-Date: 2016-03-08 01:08+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: dz\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440534916.000000\n"
+"X-POOTLE-MTIME: 1457399328.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2312,13 +2312,14 @@ msgid "Convert Table to Text"
msgstr "ཐིག་ཁྲམ་ལས་ཚིག་ཡིག་ལུ་གཞི་བསྒྱུར་འབད།"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2504,13 +2505,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2522,13 +2524,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4435,13 +4438,14 @@ msgid "None"
msgstr ""
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5423,22 +5427,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6347,13 +6353,14 @@ msgid "Position:"
msgstr "གནས་ས།"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"separator_edit\n"
"text\n"
"string.text"
msgid ": "
-msgstr ""
+msgstr ": "
#: insertcaption.ui
msgctxt ""
@@ -6365,13 +6372,14 @@ msgid "Numbering separator:"
msgstr ""
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
msgctxt ""
@@ -8708,13 +8716,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8726,13 +8735,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9580,13 +9590,14 @@ msgid "Position:"
msgstr "གནས་ས།"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
#, fuzzy
@@ -15705,40 +15716,44 @@ msgid "[none]"
msgstr "[None]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/dz/vcl/source/src.po b/source/dz/vcl/source/src.po
index e1e9d94397e..08fafebaa12 100644
--- a/source/dz/vcl/source/src.po
+++ b/source/dz/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 15:53+0000\n"
+"PO-Revision-Date: 2016-03-08 01:12+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449849235.000000\n"
+"X-POOTLE-MTIME: 1457399525.000000\n"
#: app.src
msgctxt ""
@@ -1223,12 +1223,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1506,13 +1507,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/el/svx/inc.po b/source/el/svx/inc.po
index 10fe37b6cd6..db2a19a49d9 100644
--- a/source/el/svx/inc.po
+++ b/source/el/svx/inc.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:33+0200\n"
-"PO-Revision-Date: 2015-12-15 21:21+0000\n"
+"PO-Revision-Date: 2016-03-08 01:01+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1450214494.000000\n"
+"X-POOTLE-MTIME: 1457398905.000000\n"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -626,7 +626,6 @@ msgctxt ""
msgid "Open ~Smart Tag Menu"
msgstr "Άνοιγμα μενού έ~ξυπνων ετικετών"
-#: globlmn_tmpl.hrc
msgctxt ""
"globlmn_tmpl.hrc\n"
"ITEM_EDIT_IMAP\n"
diff --git a/source/en-GB/helpcontent2/source/text/scalc/01.po b/source/en-GB/helpcontent2/source/text/scalc/01.po
index 635cd323e9c..9a8df6a0125 100644
--- a/source/en-GB/helpcontent2/source/text/scalc/01.po
+++ b/source/en-GB/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-12 13:40+0100\n"
-"PO-Revision-Date: 2016-01-12 17:26+0000\n"
+"PO-Revision-Date: 2016-03-04 10:35+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452619607.000000\n"
+"X-POOTLE-MTIME: 1457087702.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -62614,7 +62614,7 @@ msgctxt ""
"par_id171371269326270\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060184.xhp#average\">AVERAGE</link>, <link href=\"text/scalc/01/04060184.xhp#averagea\">AVERAGEA</link>, <embedvar href=\"text/scalc/01/func_averageifs.xhp#averageifs_head\"/>, <link href=\"text/scalc/01/04060184.xhp#max\">MAX</link>, <link href=\"text/scalc/01/04060184.xhp#min\">MIN</link>, <link href=\"text/scalc/01/04060183.xhp#large\">LARGE</link>, <link href=\"text/scalc/01/04060183.xhp#small\">SMALL</link>"
-msgstr "<link href=\"text/scalc/01/04060184.xhp#average\">AVERAGE</link>, <link href=\"text/scalc/01/04060184.xhp#averagea\">AVERAGEA</link>, <embedvar href=\"text/scalc/01/func_averageifs.xhp#averageifs_head\" />, <link href=\"text/scalc/01/04060184.xhp#max\">MAX</link>, <link href=\"text/scalc/01/04060184.xhp#min\">MIN</link>, <link href=\"text/scalc/01/04060183.xhp#large\">LARGE</link>, <link href=\"text/scalc/01/04060183.xhp#small\">SMALL</link>"
+msgstr "<link href=\"text/scalc/01/04060184.xhp#average\">AVERAGE</link>, <link href=\"text/scalc/01/04060184.xhp#averagea\">AVERAGEA</link>, <embedvar href=\"text/scalc/01/func_averageifs.xhp#averageifs_head\"/>, <link href=\"text/scalc/01/04060184.xhp#max\">MAX</link>, <link href=\"text/scalc/01/04060184.xhp#min\">MIN</link>, <link href=\"text/scalc/01/04060183.xhp#large\">LARGE</link>, <link href=\"text/scalc/01/04060183.xhp#small\">SMALL</link>"
#: func_averageifs.xhp
msgctxt ""
@@ -62846,7 +62846,7 @@ msgctxt ""
"par_id1279148769260\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060184.xhp#average\">AVERAGE</link>, <link href=\"text/scalc/01/04060184.xhp#averagea\">AVERAGEA</link>, <embedvar href=\"text/scalc/01/func_averageif.xhp#averageif_head\"/>, <embedvar href=\"text/scalc/01/func_sumifs.xhp#sumifs_head\"/>, <embedvar href=\"text/scalc/01/func_countifs.xhp#countifs_head\"/> <link href=\"text/scalc/01/04060184.xhp#max\">MAX</link>, <link href=\"text/scalc/01/04060184.xhp#min\">MIN</link>"
-msgstr "<link href=\"text/scalc/01/04060184.xhp#average\">AVERAGE</link>, <link href=\"text/scalc/01/04060184.xhp#averagea\">AVERAGEA</link>, <embedvar href=\"text/scalc/01/func_averageif.xhp#averageif_head\" />, <embedvar href=\"text/scalc/01/func_sumifs.xhp#sumifs_head \"/>, <embedvar href=\"text/scalc/01/func_countifs.xhp#countifs_head\" /> <link href=\"text/scalc/01/04060184.xhp#max\">MAX</link>, <link href=\"text/scalc/01/04060184.xhp#min\">MIN</link>"
+msgstr "<link href=\"text/scalc/01/04060184.xhp#average\">AVERAGE</link>, <link href=\"text/scalc/01/04060184.xhp#averagea\">AVERAGEA</link>, <embedvar href=\"text/scalc/01/func_averageif.xhp#averageif_head\"/>, <embedvar href=\"text/scalc/01/func_sumifs.xhp#sumifs_head\"/>, <embedvar href=\"text/scalc/01/func_countifs.xhp#countifs_head\"/> <link href=\"text/scalc/01/04060184.xhp#max\">MAX</link>, <link href=\"text/scalc/01/04060184.xhp#min\">MIN</link>"
#: func_countifs.xhp
msgctxt ""
@@ -63078,7 +63078,7 @@ msgctxt ""
"par_id14337286612130\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060181.xhp#count\">COUNT</link>, <link href=\"text/scalc/01/04060181.xhp#countif\">COUNTIF</link>, <link href=\"text/scalc/01/04060181.xhp#counta\">COUNTA</link>, <embedvar href=\"text/scalc/01/func_sumifs.xhp#sumifs_head\"/>, <embedvar href=\"text/scalc/01/func_averageifs.xhp#averageifs_head\"/>, <link href=\"text/scalc/01/04060184.xhp#max\">MAX</link>, <link href=\"text/scalc/01/04060184.xhp#min\">MIN</link>"
-msgstr "<link href=\"text/scalc/01/04060181.xhp#count\">COUNT</link>, <link href=\"text/scalc/01/04060181.xhp#countif\">COUNTIF</link>, <link href=\"text/scalc/01/04060181.xhp#counta\">COUNTA</link>, <embedvar href=\"text/scalc/01/func_sumifs.xhp#sumifs_head\" />, <embedvar href=\"text/scalc/01/func_averageifs.xhp#averageifs_head\" />, <link href=\"text/scalc/01/04060184.xhp#max\">MAX</link>, <link href=\"text/scalc/01/04060184.xhp#min\">MIN</link>"
+msgstr "<link href=\"text/scalc/01/04060181.xhp#count\">COUNT</link>, <link href=\"text/scalc/01/04060181.xhp#countif\">COUNTIF</link>, <link href=\"text/scalc/01/04060181.xhp#counta\">COUNTA</link>, <embedvar href=\"text/scalc/01/func_sumifs.xhp#sumifs_head\"/>, <embedvar href=\"text/scalc/01/func_averageifs.xhp#averageifs_head\"/>, <link href=\"text/scalc/01/04060184.xhp#max\">MAX</link>, <link href=\"text/scalc/01/04060184.xhp#min\">MIN</link>"
#: func_date.xhp
msgctxt ""
diff --git a/source/en-ZA/cui/uiconfig/ui.po b/source/en-ZA/cui/uiconfig/ui.po
index 2bbac333b86..8c36a54b80b 100644
--- a/source/en-ZA/cui/uiconfig/ui.po
+++ b/source/en-ZA/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 13:38+0000\n"
+"PO-Revision-Date: 2016-03-08 00:24+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: en_ZA\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452260325.000000\n"
+"X-POOTLE-MTIME: 1457396658.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14075,31 +14075,34 @@ msgid "N_one"
msgstr ""
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
@@ -17379,40 +17382,44 @@ msgid "(None)"
msgstr "(None)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"1\n"
"stringlist.text"
msgid "("
-msgstr ""
+msgstr "("
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"2\n"
"stringlist.text"
msgid "["
-msgstr ""
+msgstr "["
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"3\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
#: twolinespage.ui
#, fuzzy
@@ -17435,40 +17442,44 @@ msgid "(None)"
msgstr "(None)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
#: twolinespage.ui
#, fuzzy
diff --git a/source/en-ZA/dbaccess/uiconfig/ui.po b/source/en-ZA/dbaccess/uiconfig/ui.po
index 7f99cd4c654..7d56086d1d5 100644
--- a/source/en-ZA/dbaccess/uiconfig/ui.po
+++ b/source/en-ZA/dbaccess/uiconfig/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-04-22 23:40+0200\n"
-"PO-Revision-Date: 2013-04-15 11:08+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2016-03-08 00:29+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1366024110.0\n"
+"X-POOTLE-MTIME: 1457396959.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1928,22 +1928,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1955,13 +1957,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3017,58 +3020,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/en-ZA/extensions/uiconfig/sabpilot/ui.po b/source/en-ZA/extensions/uiconfig/sabpilot/ui.po
index f4b65030872..b235df3da6a 100644
--- a/source/en-ZA/extensions/uiconfig/sabpilot/ui.po
+++ b/source/en-ZA/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 23:20+0000\n"
+"PO-Revision-Date: 2016-03-08 00:36+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435274404.000000\n"
+"X-POOTLE-MTIME: 1457397390.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/scalc/01.po b/source/en-ZA/helpcontent2/source/text/scalc/01.po
index 985883d2f1a..6f435839638 100644
--- a/source/en-ZA/helpcontent2/source/text/scalc/01.po
+++ b/source/en-ZA/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 17:09+0000\n"
+"PO-Revision-Date: 2016-03-03 20:47+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431364155.000000\n"
+"X-POOTLE-MTIME: 1457038032.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -60131,13 +60131,14 @@ msgid "equal"
msgstr "equal"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -60149,13 +60150,14 @@ msgid "less than"
msgstr "less than"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/shared/00.po b/source/en-ZA/helpcontent2/source/text/shared/00.po
index 4e702f7f30a..4704c871ac6 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/00.po
+++ b/source/en-ZA/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-09-01 18:01+0000\n"
-"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
+"PO-Revision-Date: 2016-03-03 21:15+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1441130513.000000\n"
+"X-POOTLE-MTIME: 1457039717.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3972,12 +3972,13 @@ msgid "ODF 1.2 (Extended)"
msgstr "ODF 1.2 (Extended)"
#: 00000021.xhp
+#, fuzzy
msgctxt ""
"00000021.xhp\n"
"par_id100120091238112\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 00000021.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/shared/01.po b/source/en-ZA/helpcontent2/source/text/shared/01.po
index 9a19b2b2253..e323873d08f 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/01.po
+++ b/source/en-ZA/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-12 13:06+0000\n"
+"PO-Revision-Date: 2016-03-03 21:42+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452603964.000000\n"
+"X-POOTLE-MTIME: 1457041325.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7489,13 +7489,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr "Represents the given character unless otherwise specified."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7507,13 +7508,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr "Represents any single character except for a line break or paragraph break. For example, the search term \"sh.rt\" returns both \"shirt\" and \"short\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7525,13 +7527,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr "Only finds the search term if the term is at the beginning of a paragraph. Special objects such as empty fields or character-anchored frames, at the beginning of a paragraph are ignored. Example: \"^Peter\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7551,13 +7554,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7596,13 +7600,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr "The longest possible string that matches this search pattern in a paragraph is always found. If the paragraph contains the string \"AX 4 AX4\", the entire passage is highlighted."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7614,13 +7619,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr "Finds zero or one of the characters in front of the \"?\". For example, \"Texts?\" finds \"Text\" and \"Texts\" and \"x(ab|c)?y\" finds \"xy\", \"xaby\", or \"xcy\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -15824,13 +15830,14 @@ msgid "Explanation"
msgstr "Explanation"
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/shared/02.po b/source/en-ZA/helpcontent2/source/text/shared/02.po
index f55648296e6..b5fcfc15eda 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/02.po
+++ b/source/en-ZA/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 17:11+0000\n"
+"PO-Revision-Date: 2016-03-03 21:53+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431364287.000000\n"
+"X-POOTLE-MTIME: 1457042037.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -13864,13 +13864,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves all listed database fields into the <emph>Table column(s)</emph> list box.</ahelp> All fields listed in the <emph>Table column(s)</emph> list box are inserted into the document."
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13882,13 +13883,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves the selected database field into the <emph>Table column(s)</emph> list box. </ahelp> You can also double click an entry to move it to the <emph>Table column(s)</emph> list box. All fields listed in the <emph>Table column(s)</emph> list box are inserted into the document."
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -14177,13 +14179,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr "Lists all columns of the database table, which can be accepted in the selection list box to insert them into the document. <ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tabletxtcols\" visibility=\"visible\">Select the database columns that you want to insert it in the document.</ahelp>"
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15682,13 +15685,14 @@ msgid "Example"
msgstr "Example"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15718,13 +15722,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr "\"M?ller\" returns, for example, Miller and Moller"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15808,31 +15813,34 @@ msgid "Search with regular expressions"
msgstr "Search with regular expressions"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/shared/autopi.po b/source/en-ZA/helpcontent2/source/text/shared/autopi.po
index 1681bab5109..e5aa2302004 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/autopi.po
+++ b/source/en-ZA/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-05-11 17:12+0000\n"
+"PO-Revision-Date: 2016-03-03 22:04+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431364330.000000\n"
+"X-POOTLE-MTIME: 1457042672.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3422,13 +3422,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data base fields in the selected table or query.</ahelp> Click to select a field or hold down the Shift or the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while you click to select more than one field."
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3459,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box that the arrow is pointing to.</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3496,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the box that the arrow is pointing to.</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4524,13 +4527,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that are included in the new report.</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4560,13 +4564,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the box that the arrow is pointing to.</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4720,13 +4725,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which the report will be grouped. To remove one level of grouping, select the field name, then click the <emph><</emph> button. You may select up to four levels of grouping.</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4738,13 +4744,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field to the box that the arrow is pointing to.</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/shared/explorer/database.po b/source/en-ZA/helpcontent2/source/text/shared/explorer/database.po
index 64ef80de3da..8bdfa992dc9 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/en-ZA/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-11 17:12+0000\n"
+"PO-Revision-Date: 2016-03-03 22:14+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431364358.000000\n"
+"X-POOTLE-MTIME: 1457043282.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1760,13 +1760,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr "... the content of the field does not correspond to the specified expression."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1787,13 +1788,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr "... the content of the field is greater than the specified expression."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2793,13 +2795,14 @@ msgid "No"
msgstr "No"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6230,13 +6233,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available indexes that you can assign to a table.</ahelp> To assign an index to a selected table, click the left arrow icon. The left double arrow assigns all available indexes."
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6266,13 +6270,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free indexes to the <emph>Table Indexes</emph> list.</ahelp>"
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12420,12 +12425,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14444,12 +14450,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr "<ahelp hid=\".\">Select a field in order to edit the field information.</ahelp>"
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/swriter/01.po b/source/en-ZA/helpcontent2/source/text/swriter/01.po
index e7f5b6fc1f2..e8aeac08d0f 100644
--- a/source/en-ZA/helpcontent2/source/text/swriter/01.po
+++ b/source/en-ZA/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 17:14+0000\n"
+"PO-Revision-Date: 2016-03-03 23:28+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431364496.000000\n"
+"X-POOTLE-MTIME: 1457047721.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -11037,13 +11037,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragraph style that you want to apply to the selected index level, and then click the Assign (<emph><) </emph>button.</ahelp>"
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -27778,12 +27779,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">Select a field and drag the field to the other list.</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27794,12 +27796,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<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>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27986,12 +27989,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">Select a field and drag the field to the other list.</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28002,12 +28006,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elem
msgstr "<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>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28442,12 +28447,13 @@ msgid "<ahelp hid=\".\">Select an address field and drag the field to the other
msgstr "<ahelp hid=\".\">Select an address field and drag the field to the other list.</ahelp>"
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28458,12 +28464,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">Adds the selected field from the Address Elements list to the other list.</ahelp> You can add the same field more than once."
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/swriter/02.po b/source/en-ZA/helpcontent2/source/text/swriter/02.po
index dfb8a6de33c..cb13ce56294 100644
--- a/source/en-ZA/helpcontent2/source/text/swriter/02.po
+++ b/source/en-ZA/helpcontent2/source/text/swriter/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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 14:37+0000\n"
+"PO-Revision-Date: 2016-03-03 23:31+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429799828.000000\n"
+"X-POOTLE-MTIME: 1457047907.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1673,13 +1673,14 @@ msgid "Subtraction"
msgstr "Subtraction"
#: 14020000.xhp
+#, fuzzy
msgctxt ""
"14020000.xhp\n"
"par_id3150087\n"
"12\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 14020000.xhp
msgctxt ""
diff --git a/source/en-ZA/librelogo/source/pythonpath.po b/source/en-ZA/librelogo/source/pythonpath.po
index 9916ca82873..96c49aaac73 100644
--- a/source/en-ZA/librelogo/source/pythonpath.po
+++ b/source/en-ZA/librelogo/source/pythonpath.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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2013-04-15 11:08+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 00:50+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1366024117.0\n"
+"X-POOTLE-MTIME: 1457398257.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -798,20 +798,22 @@ msgid "pi|π"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
"property.text"
msgid "."
-msgstr ""
+msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/en-ZA/officecfg/registry/data/org/openoffice/Office.po b/source/en-ZA/officecfg/registry/data/org/openoffice/Office.po
index 028fb5c9f0f..fc7acc4dba5 100644
--- a/source/en-ZA/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/en-ZA/officecfg/registry/data/org/openoffice/Office.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-08-06 22:41+0000\n"
+"PO-Revision-Date: 2016-03-08 00:59+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438900903.000000\n"
+"X-POOTLE-MTIME: 1457398756.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1430,13 +1430,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/en-ZA/reportdesign/uiconfig/dbreport/ui.po b/source/en-ZA/reportdesign/uiconfig/dbreport/ui.po
index b8c6e62d692..9b7132a5e83 100644
--- a/source/en-ZA/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/en-ZA/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-18 19:49+0000\n"
+"PO-Revision-Date: 2016-03-08 01:22+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416340177.000000\n"
+"X-POOTLE-MTIME: 1457400127.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/en-ZA/sc/uiconfig/scalc/ui.po b/source/en-ZA/sc/uiconfig/scalc/ui.po
index 80b81f39faf..154c6f0676f 100644
--- a/source/en-ZA/sc/uiconfig/scalc/ui.po
+++ b/source/en-ZA/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-08-25 21:08+0000\n"
+"PO-Revision-Date: 2016-03-08 01:45+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: en_ZA\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440536939.000000\n"
+"X-POOTLE-MTIME: 1457401507.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6390,22 +6390,24 @@ msgid "Distribution:"
msgstr ""
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter1-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter2-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
msgctxt ""
diff --git a/source/en-ZA/sd/uiconfig/simpress/ui.po b/source/en-ZA/sd/uiconfig/simpress/ui.po
index aaf9ca30141..90b32749a6d 100644
--- a/source/en-ZA/sd/uiconfig/simpress/ui.po
+++ b/source/en-ZA/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 23:38+0000\n"
+"PO-Revision-Date: 2016-03-08 02:04+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: en_ZA\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435275481.000000\n"
+"X-POOTLE-MTIME: 1457402668.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -998,22 +998,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/en-ZA/sw/source/ui/dbui.po b/source/en-ZA/sw/source/ui/dbui.po
index 45fa51e786f..3334b554ff4 100644
--- a/source/en-ZA/sw/source/ui/dbui.po
+++ b/source/en-ZA/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-12 08:21+0000\n"
+"PO-Revision-Date: 2016-03-08 02:34+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431418905.000000\n"
+"X-POOTLE-MTIME: 1457404480.000000\n"
#: dbui.src
msgctxt ""
@@ -488,31 +488,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/en-ZA/sw/source/ui/index.po b/source/en-ZA/sw/source/ui/index.po
index 3c925f9ae5d..a2cd466787e 100644
--- a/source/en-ZA/sw/source/ui/index.po
+++ b/source/en-ZA/sw/source/ui/index.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2012-01-05 12:45+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 02:36+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457404583.000000\n"
#: cnttab.src
#, fuzzy
@@ -57,20 +58,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -105,12 +108,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/en-ZA/sw/uiconfig/swriter/ui.po b/source/en-ZA/sw/uiconfig/swriter/ui.po
index b1aff981790..1b9c3d7d818 100644
--- a/source/en-ZA/sw/uiconfig/swriter/ui.po
+++ b/source/en-ZA/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-25 21:27+0000\n"
+"PO-Revision-Date: 2016-03-08 02:47+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: en_ZA\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440538067.000000\n"
+"X-POOTLE-MTIME: 1457405228.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2311,13 +2311,14 @@ msgid "Convert Table to Text"
msgstr "Convert Table to Text"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2503,13 +2504,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2521,13 +2523,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4434,13 +4437,14 @@ msgid "None"
msgstr ""
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5422,22 +5426,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6347,13 +6353,14 @@ msgid "Position:"
msgstr "Position"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"separator_edit\n"
"text\n"
"string.text"
msgid ": "
-msgstr ""
+msgstr ": "
#: insertcaption.ui
msgctxt ""
@@ -6365,13 +6372,14 @@ msgid "Numbering separator:"
msgstr ""
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
msgctxt ""
@@ -8707,13 +8715,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8725,13 +8734,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9579,13 +9589,14 @@ msgid "Position:"
msgstr "Position"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
#, fuzzy
@@ -15712,40 +15723,44 @@ msgid "[none]"
msgstr "[None]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/en-ZA/vcl/source/src.po b/source/en-ZA/vcl/source/src.po
index 476ff226769..d197fe600a2 100644
--- a/source/en-ZA/vcl/source/src.po
+++ b/source/en-ZA/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 15:58+0000\n"
+"PO-Revision-Date: 2016-03-08 02:50+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449849490.000000\n"
+"X-POOTLE-MTIME: 1457405404.000000\n"
#: app.src
msgctxt ""
@@ -1187,12 +1187,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1470,13 +1471,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/scalc.po b/source/eo/helpcontent2/source/text/scalc.po
index c75f535e582..8805a964a9c 100644
--- a/source/eo/helpcontent2/source/text/scalc.po
+++ b/source/eo/helpcontent2/source/text/scalc.po
@@ -4,8 +4,8 @@ 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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-01-11 22:36+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"PO-Revision-Date: 2016-03-03 20:12+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Esperanto <eo@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452551781.000000\n"
+"X-POOTLE-MTIME: 1457035976.000000\n"
#: main0000.xhp
msgctxt ""
@@ -104,7 +104,6 @@ msgid "File"
msgstr "Dosiero"
#: main0101.xhp
-#, fuzzy
msgctxt ""
"main0101.xhp\n"
"hd_id3156023\n"
@@ -113,7 +112,6 @@ msgid "<link href=\"text/scalc/main0101.xhp\" name=\"File\">File</link>"
msgstr "<link href=\"text/scalc/main0101.xhp\" name=\"File\">Dosiero</link>"
#: main0101.xhp
-#, fuzzy
msgctxt ""
"main0101.xhp\n"
"par_id3151112\n"
@@ -130,7 +128,6 @@ msgid "Edit"
msgstr "Redakti"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id3156023\n"
@@ -139,7 +136,6 @@ msgid "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Edit</link>"
msgstr "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Redakti</link>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"par_id3154758\n"
@@ -148,7 +144,6 @@ msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of
msgstr "<ahelp hid=\".\">Ĉi tiu menuo enhavas komandojn por redakti la enhavon de la aktuala dokumento.</ahelp>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id3146919\n"
@@ -157,7 +152,6 @@ msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Ligojn</link>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id3148488\n"
@@ -182,7 +176,6 @@ msgid "View"
msgstr "Vido"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id3151112\n"
@@ -191,13 +184,12 @@ msgid "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
msgstr "<link href=\"text/scalc/main0103.xhp\" name=\"View\">Vido</link>"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"par_id3149456\n"
"help.text"
msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
-msgstr "<ahelp hid=\".\">Ĉi tiu menuo enhavas komandojn por regi la surekranan vidigon de la dokumento.</ahelp>"
+msgstr "<ahelp hid=\".\">Ĉi tiu menuo enhavas komandojn por regi la ekranan vidigon de la dokumento.</ahelp>"
#: main0103.xhp
msgctxt ""
@@ -208,7 +200,6 @@ msgid "Normal"
msgstr "Normala"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"par_idN105AF\n"
@@ -230,7 +221,7 @@ msgctxt ""
"hd_id10272015110909623\n"
"help.text"
msgid "Grid Lines for Sheet"
-msgstr ""
+msgstr "Kradlinioj por folio "
#: main0103.xhp
msgctxt ""
@@ -238,7 +229,7 @@ msgctxt ""
"par_id102720151147483554\n"
"help.text"
msgid "Toggle the visibility of grid lines for the current sheet."
-msgstr ""
+msgstr "Baskuli la videblecon de kradlinioj por la aktuala folio."
#: main0103.xhp
msgctxt ""
@@ -246,10 +237,9 @@ msgctxt ""
"hd_id102720150908397549\n"
"help.text"
msgid "<link href=\"text/shared/01/gallery.xhp\">Clip Art Gallery</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/gallery.xhp\">Bildetara galerio</link>"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id3125863\n"
@@ -266,7 +256,6 @@ msgid "Insert"
msgstr "Enmeti"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3157909\n"
@@ -275,7 +264,6 @@ msgid "<link href=\"text/scalc/main0104.xhp\" name=\"Insert\">Insert</link>"
msgstr "<link href=\"text/scalc/main0104.xhp\" name=\"Insert\">Enmeti</link>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"par_id3153896\n"
@@ -284,7 +272,6 @@ msgid "<ahelp hid=\".\">The Insert menu contains commands for inserting new elem
msgstr "<ahelp hid=\".\">La menuo Enmeti enhavas komandojn por enmetado de novaj elementoj, ekzemple ĉeloj, vicoj, folioj kaj ĉelnomoj en la aktualan folion.</ahelp>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3150769\n"
@@ -293,7 +280,6 @@ msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cells\">Cells</link>"
msgstr "<link href=\"text/scalc/01/04020000.xhp\" name=\"Cells\">Ĉeloj</link>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3149260\n"
@@ -302,7 +288,6 @@ msgid "<link href=\"text/scalc/01/04050000.xhp\" name=\"Sheet\">Sheet</link>"
msgstr "<link href=\"text/scalc/01/04050000.xhp\" name=\"Sheet\">Folio</link>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3153726\n"
@@ -311,7 +296,6 @@ msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Spe
msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Speciala signo</link>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3156285\n"
@@ -320,7 +304,6 @@ msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</
msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hiperligilo</link>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3154492\n"
@@ -329,7 +312,6 @@ msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"Function\">Function</lin
msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"Function\">Funkcio</link>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3145640\n"
@@ -338,7 +320,6 @@ msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link
msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Komento</link>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3146918\n"
@@ -355,7 +336,6 @@ msgid "Inserts a chart."
msgstr "Enmetas diagramon."
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3147003\n"
@@ -372,7 +352,6 @@ msgid "Format"
msgstr "Formato"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3149669\n"
@@ -389,7 +368,6 @@ msgid "<ahelp hid=\".\">The <emph>Format</emph> menu contains commands for forma
msgstr "<ahelp hid=\".\">La menuo <emph>Formato</emph> enhavas komandojn por formatado de elektitaj ĉeloj, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objektoj</link>, kaj ĉelaj enhavoj en via dokumento.</ahelp>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3154732\n"
@@ -398,7 +376,6 @@ msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">Cells</link>"
msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Cells\">Ĉeloj</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3155087\n"
@@ -407,7 +384,6 @@ msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">Page</link>"
msgstr "<link href=\"text/scalc/01/05070000.xhp\" name=\"Page\">Paĝo</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3145748\n"
@@ -416,7 +392,6 @@ msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</
msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Signo</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3154485\n"
@@ -425,7 +400,6 @@ msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</
msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Alineo</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3157980\n"
@@ -434,7 +408,6 @@ msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat<
msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">Aŭtomate formati</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3159206\n"
@@ -443,7 +416,6 @@ msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\"
msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Conditional Formatting\">Kondiĉa formatado</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3154703\n"
@@ -452,7 +424,6 @@ msgid "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Control</link
msgstr "<link href=\"text/shared/02/01170100.xhp\" name=\"Control\">Regilo</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3147005\n"
@@ -540,7 +511,6 @@ msgid "Window"
msgstr "Fenestro"
#: main0107.xhp
-#, fuzzy
msgctxt ""
"main0107.xhp\n"
"hd_id3154758\n"
@@ -668,7 +638,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Sheet"
-msgstr ""
+msgstr "Folio"
#: main0116.xhp
msgctxt ""
@@ -684,7 +654,7 @@ msgctxt ""
"par_id0906201507414091\n"
"help.text"
msgid "<ahelp hid=\".\">This menu contains commands to modify and manage a sheet and its elements.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ĉi tiu menuo enhavas komandojn por ŝanĝi kaj mastrumi folion kaj ties elementojn.</ahelp>"
#: main0116.xhp
msgctxt ""
@@ -692,7 +662,7 @@ msgctxt ""
"hd_id3150792\n"
"help.text"
msgid "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Move or Copy Sheet</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Movi aŭ kopii foilon</link>"
#: main0116.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/scalc/01.po b/source/eo/helpcontent2/source/text/scalc/01.po
index 2bc0cfd582b..077900c5e55 100644
--- a/source/eo/helpcontent2/source/text/scalc/01.po
+++ b/source/eo/helpcontent2/source/text/scalc/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2016-01-17 05:16+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"PO-Revision-Date: 2016-03-03 20:45+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1453007764.000000\n"
+"X-POOTLE-MTIME: 1457037936.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -59943,13 +59943,14 @@ msgid "equal"
msgstr "egala"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -59961,13 +59962,14 @@ msgid "less than"
msgstr "malpli ol"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/scalc/05.po b/source/eo/helpcontent2/source/text/scalc/05.po
index d39923e2572..8d5564832e5 100644
--- a/source/eo/helpcontent2/source/text/scalc/05.po
+++ b/source/eo/helpcontent2/source/text/scalc/05.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-06-24 17:05+0200\n"
-"PO-Revision-Date: 2015-07-28 09:40+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"PO-Revision-Date: 2016-03-03 20:48+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438076458.000000\n"
+"X-POOTLE-MTIME: 1457038085.000000\n"
#: 02140000.xhp
msgctxt ""
@@ -102,12 +102,13 @@ msgid "Explanation"
msgstr "Klarigo"
#: 02140000.xhp
+#, fuzzy
msgctxt ""
"02140000.xhp\n"
"par_id1668467\n"
"help.text"
msgid "###"
-msgstr ""
+msgstr "###"
#: 02140000.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/schart.po b/source/eo/helpcontent2/source/text/schart.po
index 5163919e403..be0855d4319 100644
--- a/source/eo/helpcontent2/source/text/schart.po
+++ b/source/eo/helpcontent2/source/text/schart.po
@@ -4,7 +4,7 @@ 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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2013-05-24 08:44+0000\n"
+"PO-Revision-Date: 2016-03-03 20:52+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Esperanto <eo@li.org>\n"
"Language: eo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1369385077.000000\n"
+"X-POOTLE-MTIME: 1457038356.000000\n"
#: main0000.xhp
msgctxt ""
@@ -665,10 +665,9 @@ msgctxt ""
"hd_id0810200902300672\n"
"help.text"
msgid "Horizontal Grids"
-msgstr ""
+msgstr "Horizontalaj kradoj"
#: main0202.xhp
-#, fuzzy
msgctxt ""
"main0202.xhp\n"
"par_id0810200902300630\n"
diff --git a/source/eo/helpcontent2/source/text/sdraw.po b/source/eo/helpcontent2/source/text/sdraw.po
index 950e45b7ecd..b1855b59e2a 100644
--- a/source/eo/helpcontent2/source/text/sdraw.po
+++ b/source/eo/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ 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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-07-17 21:44+0000\n"
+"PO-Revision-Date: 2016-03-03 20:57+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Esperanto <eo@li.org>\n"
"Language: eo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1437169490.000000\n"
+"X-POOTLE-MTIME: 1457038669.000000\n"
#: main0000.xhp
msgctxt ""
@@ -318,7 +318,6 @@ msgid "View"
msgstr "Vido"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id3152576\n"
@@ -327,13 +326,12 @@ msgid "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">View</link>"
msgstr "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">Vido</link>"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"par_id3159155\n"
"help.text"
msgid "Sets the display properties of Draw documents."
-msgstr "Agordas la vidigajn atributojn de Desegnilaj dokumentoj."
+msgstr "Agordas la vidigajn atributojn de Desegnilo-dokumentoj."
#: main0103.xhp
msgctxt ""
@@ -368,7 +366,6 @@ msgid "Switch to the master page view."
msgstr "Baskuli al modelpaĝa vido."
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id3149666\n"
diff --git a/source/eo/helpcontent2/source/text/shared.po b/source/eo/helpcontent2/source/text/shared.po
index 0002df5a65f..5e9751665ad 100644
--- a/source/eo/helpcontent2/source/text/shared.po
+++ b/source/eo/helpcontent2/source/text/shared.po
@@ -4,8 +4,8 @@ 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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-09-21 01:27+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"PO-Revision-Date: 2016-03-03 20:59+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Esperanto <eo@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1442798862.000000\n"
+"X-POOTLE-MTIME: 1457038783.000000\n"
#: 3dsettings_toolbar.xhp
msgctxt ""
@@ -2154,7 +2154,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "We Need Your Help"
-msgstr ""
+msgstr "Ni bezonas vian helpon"
#: need_help.xhp
msgctxt ""
@@ -2162,4 +2162,4 @@ msgctxt ""
"hd_id1000010\n"
"help.text"
msgid "This help page needs further work for correctness and completion. Please join the LibreOffice project and help us out to write the missing information."
-msgstr ""
+msgstr "Ĉi tiu paĝo bezonas pluan laboron por ĝusteco kaj kompletigo. Bonvolu alliĝi al la LibreOffice-projekto kaj helpi nin verki la mankantan informon."
diff --git a/source/eo/helpcontent2/source/text/shared/00.po b/source/eo/helpcontent2/source/text/shared/00.po
index 3c90d4f8975..041fafba36d 100644
--- a/source/eo/helpcontent2/source/text/shared/00.po
+++ b/source/eo/helpcontent2/source/text/shared/00.po
@@ -4,8 +4,8 @@ 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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-01-13 19:06+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"PO-Revision-Date: 2016-03-03 21:05+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Esperanto <eo@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452712005.000000\n"
+"X-POOTLE-MTIME: 1457039111.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3973,12 +3973,13 @@ msgid "ODF 1.2 (Extended)"
msgstr ""
#: 00000021.xhp
+#, fuzzy
msgctxt ""
"00000021.xhp\n"
"par_id100120091238112\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 00000021.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/shared/01.po b/source/eo/helpcontent2/source/text/shared/01.po
index 34763a96f09..4eafabfb813 100644
--- a/source/eo/helpcontent2/source/text/shared/01.po
+++ b/source/eo/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-13 22:49+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"PO-Revision-Date: 2016-03-03 21:22+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452725366.000000\n"
+"X-POOTLE-MTIME: 1457040127.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7475,13 +7475,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7493,13 +7494,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7511,13 +7513,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7537,13 +7540,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7582,13 +7586,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7600,13 +7605,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -7688,13 +7694,14 @@ msgid "Match a word boundary. For example, \"\\bbook\" finds \"bookmark\" but no
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3149576\n"
"37\n"
"help.text"
msgid "^$"
-msgstr ""
+msgstr "^$"
#: 02100001.xhp
msgctxt ""
@@ -7706,13 +7713,14 @@ msgid "Finds an empty paragraph."
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3148550\n"
"41\n"
"help.text"
msgid "^."
-msgstr ""
+msgstr "^."
#: 02100001.xhp
msgctxt ""
@@ -7955,13 +7963,14 @@ msgid "Defines the minimum number of times that the character in front of the op
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3148616\n"
"213\n"
"help.text"
msgid "( )"
-msgstr ""
+msgstr "( )"
#: 02100001.xhp
msgctxt ""
@@ -15741,13 +15750,14 @@ msgid "Explanation"
msgstr "Klarigo"
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
@@ -15831,13 +15841,14 @@ msgid "3456.78 as 3456.8"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3150355\n"
"12\n"
"help.text"
msgid "####.#"
-msgstr ""
+msgstr "####.#"
#: 05020301.xhp
msgctxt ""
@@ -15885,13 +15896,14 @@ msgid "5.75 as 5 3/4 and 6.3 as 6 3/10"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3145315\n"
"18\n"
"help.text"
msgid "# ???/???"
-msgstr ""
+msgstr "# ???/???"
#: 05020301.xhp
msgctxt ""
@@ -15975,13 +15987,14 @@ msgid "15000 as 15,000"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3151223\n"
"25\n"
"help.text"
msgid "#,###"
-msgstr ""
+msgstr "#,###"
#: 05020301.xhp
msgctxt ""
@@ -15993,13 +16006,14 @@ msgid "16000 as 16"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3153961\n"
"27\n"
"help.text"
msgid "#,"
-msgstr ""
+msgstr "#,"
#: 05020301.xhp
msgctxt ""
@@ -19776,13 +19790,14 @@ msgid "<ahelp hid=\"cui/ui/paratabspage/radiobuttonBTN_FILLCHAR_NO\">Inserts no
msgstr ""
#: 05030300.xhp
+#, fuzzy
msgctxt ""
"05030300.xhp\n"
"hd_id3152933\n"
"26\n"
"help.text"
msgid "......."
-msgstr ""
+msgstr "......."
#: 05030300.xhp
msgctxt ""
@@ -19794,13 +19809,14 @@ msgid "<ahelp hid=\"cui/ui/paratabspage/radiobuttonBTN_FILLCHAR_POINTS\">Fills t
msgstr ""
#: 05030300.xhp
+#, fuzzy
msgctxt ""
"05030300.xhp\n"
"hd_id3156280\n"
"28\n"
"help.text"
msgid "------"
-msgstr ""
+msgstr "------"
#: 05030300.xhp
msgctxt ""
@@ -19812,13 +19828,14 @@ msgid "<ahelp hid=\"cui/ui/paratabspage/radiobuttonBTN_FILLCHAR_DASHLINE\">Fills
msgstr ""
#: 05030300.xhp
+#, fuzzy
msgctxt ""
"05030300.xhp\n"
"hd_id3157960\n"
"30\n"
"help.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: 05030300.xhp
msgctxt ""
@@ -34530,13 +34547,14 @@ msgid "The following table summarizes the line thickness for the different chara
msgstr ""
#: 06040100.xhp
+#, fuzzy
msgctxt ""
"06040100.xhp\n"
"par_id3148576\n"
"37\n"
"help.text"
msgid "---"
-msgstr ""
+msgstr "---"
#: 06040100.xhp
msgctxt ""
@@ -34548,13 +34566,14 @@ msgid "0.5pt single underline"
msgstr ""
#: 06040100.xhp
+#, fuzzy
msgctxt ""
"06040100.xhp\n"
"par_id3154472\n"
"39\n"
"help.text"
msgid "___"
-msgstr ""
+msgstr "___"
#: 06040100.xhp
msgctxt ""
@@ -34584,13 +34603,14 @@ msgid "1.1pt double underline"
msgstr ""
#: 06040100.xhp
+#, fuzzy
msgctxt ""
"06040100.xhp\n"
"par_id3148647\n"
"43\n"
"help.text"
msgid "***"
-msgstr ""
+msgstr "***"
#: 06040100.xhp
msgctxt ""
@@ -34620,13 +34640,14 @@ msgid "6.0pt double underline"
msgstr ""
#: 06040100.xhp
+#, fuzzy
msgctxt ""
"06040100.xhp\n"
"par_id3145591\n"
"47\n"
"help.text"
msgid "###"
-msgstr ""
+msgstr "###"
#: 06040100.xhp
msgctxt ""
@@ -41077,13 +41098,14 @@ msgid "File Property"
msgstr ""
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3151056\n"
"3\n"
"help.text"
msgid "<TITLE>"
-msgstr ""
+msgstr "<TITLE>"
#: about_meta_tags.xhp
msgctxt ""
@@ -41095,13 +41117,14 @@ msgid "Subject"
msgstr "Temo"
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3147228\n"
"5\n"
"help.text"
msgid "<META NAME=\"CLASSIFICATION\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"CLASSIFICATION\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
@@ -41113,13 +41136,14 @@ msgid "Keywords"
msgstr "Ŝlosilvortoj"
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3156422\n"
"7\n"
"help.text"
msgid "<META NAME=\"KEYWORDS\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"KEYWORDS\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
@@ -41131,13 +41155,14 @@ msgid "Description"
msgstr "Priskribo"
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3125863\n"
"9\n"
"help.text"
msgid "<META NAME=\"DESCRIPTION\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"DESCRIPTION\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
@@ -41149,13 +41174,14 @@ msgid "Info fields 1...4"
msgstr ""
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3157892\n"
"11\n"
"help.text"
msgid "<META NAME=\"Info field name\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"Info field name\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/shared/02.po b/source/eo/helpcontent2/source/text/shared/02.po
index 244c07edd93..050848584a7 100644
--- a/source/eo/helpcontent2/source/text/shared/02.po
+++ b/source/eo/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-01-13 23:01+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"PO-Revision-Date: 2016-03-03 21:28+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452726070.000000\n"
+"X-POOTLE-MTIME: 1457040525.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -6038,13 +6038,14 @@ msgid "Not possible"
msgstr "neebla"
#: 01170102.xhp
+#, fuzzy
msgctxt ""
"01170102.xhp\n"
"par_id3153109\n"
"26\n"
"help.text"
msgid "\"\""
-msgstr ""
+msgstr "\"\""
#: 01170102.xhp
msgctxt ""
@@ -13856,13 +13857,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr ""
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13874,13 +13876,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr ""
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -14169,13 +14172,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr ""
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15673,13 +15677,14 @@ msgid "Example"
msgstr "Ekzemplo"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15709,13 +15714,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr ""
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15799,40 +15805,44 @@ msgid "Search with regular expressions"
msgstr ""
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150428\n"
"73\n"
"help.text"
msgid ".*"
-msgstr ""
+msgstr ".*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/shared/autopi.po b/source/eo/helpcontent2/source/text/shared/autopi.po
index f31ae84fcaa..57a5736793a 100644
--- a/source/eo/helpcontent2/source/text/shared/autopi.po
+++ b/source/eo/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-07-26 22:12+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"PO-Revision-Date: 2016-03-03 21:35+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1437948766.000000\n"
+"X-POOTLE-MTIME: 1457040918.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3422,13 +3422,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3459,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3496,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4524,13 +4527,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr ""
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4560,13 +4564,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr ""
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4720,13 +4725,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr ""
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4738,13 +4744,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr ""
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
@@ -7738,13 +7745,14 @@ msgid "<ahelp hid=\"HID_DLGCONVERT_TBTARGET\">Specifies the folder and path in w
msgstr ""
#: 01150000.xhp
+#, fuzzy
msgctxt ""
"01150000.xhp\n"
"par_id3154151\n"
"19\n"
"help.text"
msgid "<emph>...</emph>"
-msgstr ""
+msgstr "<emph>...</emph>"
#: 01150000.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/shared/explorer/database.po b/source/eo/helpcontent2/source/text/shared/explorer/database.po
index 268bbfdefc5..f55c62bbdff 100644
--- a/source/eo/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/eo/helpcontent2/source/text/shared/explorer/database.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-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-07-25 05:05+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"PO-Revision-Date: 2016-03-03 21:40+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1437800711.000000\n"
+"X-POOTLE-MTIME: 1457041251.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1760,13 +1760,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr "... la enhavo de la kampo ne korespondas al la donita esprimo."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1787,13 +1788,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr "... la enhavo de la kampo estas pli ol la donita esprimo."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2793,13 +2795,14 @@ msgid "No"
msgstr "Ne"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6230,13 +6233,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6266,13 +6270,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12418,12 +12423,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr ""
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14442,12 +14448,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr ""
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/shared/optionen.po b/source/eo/helpcontent2/source/text/shared/optionen.po
index 2d7c996f39e..3c676083759 100644
--- a/source/eo/helpcontent2/source/text/shared/optionen.po
+++ b/source/eo/helpcontent2/source/text/shared/optionen.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-16 19:02+0100\n"
-"PO-Revision-Date: 2015-09-21 03:10+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"PO-Revision-Date: 2016-03-03 21:55+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1442805057.000000\n"
+"X-POOTLE-MTIME: 1457042138.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -2670,13 +2670,14 @@ msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The CMY
msgstr ""
#: 01010501.xhp
+#, fuzzy
msgctxt ""
"01010501.xhp\n"
"hd_id3153192\n"
"11\n"
"help.text"
msgid "<--"
-msgstr ""
+msgstr "<--"
#: 01010501.xhp
msgctxt ""
@@ -2688,13 +2689,14 @@ msgid "<ahelp hid=\"SVTOOLS:PUSHBUTTON:DLG_COLOR:BTN_1\">Click the <emph><--</em
msgstr ""
#: 01010501.xhp
+#, fuzzy
msgctxt ""
"01010501.xhp\n"
"hd_id3158409\n"
"13\n"
"help.text"
msgid "-->"
-msgstr ""
+msgstr "-->"
#: 01010501.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/simpress.po b/source/eo/helpcontent2/source/text/simpress.po
index b3c1a750bcc..ee15f9de93e 100644
--- a/source/eo/helpcontent2/source/text/simpress.po
+++ b/source/eo/helpcontent2/source/text/simpress.po
@@ -4,8 +4,8 @@ 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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-01-11 22:38+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"PO-Revision-Date: 2016-03-03 21:56+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Esperanto <eo@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452551888.000000\n"
+"X-POOTLE-MTIME: 1457042206.000000\n"
#: main0000.xhp
msgctxt ""
@@ -69,7 +69,6 @@ msgid "Menus"
msgstr "Menuoj"
#: main0100.xhp
-#, fuzzy
msgctxt ""
"main0100.xhp\n"
"hd_id3149664\n"
@@ -78,7 +77,6 @@ msgid "<variable id=\"main0100\"><link href=\"text/simpress/main0100.xhp\" name=
msgstr "<variable id=\"main0100\"><link href=\"text/simpress/main0100.xhp\" name=\"Menus\">Menuoj</link></variable>"
#: main0100.xhp
-#, fuzzy
msgctxt ""
"main0100.xhp\n"
"par_id3150012\n"
@@ -95,7 +93,6 @@ msgid "File"
msgstr "Dosiero"
#: main0101.xhp
-#, fuzzy
msgctxt ""
"main0101.xhp\n"
"hd_id3153190\n"
@@ -104,7 +101,6 @@ msgid "<link href=\"text/simpress/main0101.xhp\" name=\"File\">File</link>"
msgstr "<link href=\"text/simpress/main0101.xhp\" name=\"File\">Dosiero</link>"
#: main0101.xhp
-#, fuzzy
msgctxt ""
"main0101.xhp\n"
"par_id3154321\n"
@@ -121,7 +117,6 @@ msgid "Edit"
msgstr "Redakti"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id3153726\n"
@@ -130,7 +125,6 @@ msgid "<link href=\"text/simpress/main0102.xhp\" name=\"Edit\">Edit</link>"
msgstr "<link href=\"text/simpress/main0102.xhp\" name=\"Edit\">Redakti</link>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"par_id3151075\n"
@@ -139,7 +133,6 @@ msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of
msgstr "<ahelp hid=\".\">Ĉi tiu menuo enhavas komandojn por redakti la enhavon de la aktuala dokumento.</ahelp>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id3154649\n"
@@ -148,7 +141,6 @@ msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Punktoj</link>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"par_id3154766\n"
@@ -157,7 +149,6 @@ msgid "Switches the <emph>Edit Points</emph> mode on and off."
msgstr "Ŝaltas/malŝaltas la reĝimon <emph>Redakti punktojn</emph>."
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id3145116\n"
@@ -166,7 +157,6 @@ msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue Points\">Glue Po
msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glupunktoj</link>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"par_id3147403\n"
@@ -175,7 +165,6 @@ msgid "Switches the <emph>Edit Glue Points</emph> mode on and off."
msgstr "Ŝaltas/malŝaltas la reĝimon <emph>Redakti glupunktojn</emph>."
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id3150396\n"
@@ -184,16 +173,14 @@ msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link
msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Kampoj</link>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id3149355\n"
"help.text"
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Ligojn</link>"
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Ligoj</link>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id3145590\n"
@@ -218,22 +205,20 @@ msgid "View"
msgstr "Vido"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id3150297\n"
"help.text"
msgid "<link href=\"text/simpress/main0103.xhp\" name=\"View\">View</link>"
-msgstr "<link href=\"text/simpress/main0103.xhp\" name=\"View\">Vidigi</link>"
+msgstr "<link href=\"text/simpress/main0103.xhp\" name=\"View\">Vido</link>"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"par_id3149378\n"
"help.text"
msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
-msgstr "<ahelp hid=\".\">Ĉi tiu menuo enhavas komandojn por regi la surekranan vidigon de la dokumento.</ahelp>"
+msgstr "<ahelp hid=\".\">Ĉi tiu menuo enhavas komandojn por regi la ekranan vidigon de la dokumento.</ahelp>"
#: main0103.xhp
msgctxt ""
@@ -249,7 +234,7 @@ msgctxt ""
"hd_id102720151244263489\n"
"help.text"
msgid "Object Moving Helplines"
-msgstr ""
+msgstr "Objektaj moveblaj helplinioj"
#: main0103.xhp
msgctxt ""
@@ -257,7 +242,7 @@ msgctxt ""
"hd_id102720151246522815\n"
"help.text"
msgid "Comments"
-msgstr ""
+msgstr "Komentoj"
#: main0103.xhp
msgctxt ""
@@ -265,7 +250,7 @@ msgctxt ""
"par_id102720150112252443\n"
"help.text"
msgid "Show or hide a presentation's annotations."
-msgstr ""
+msgstr "Vidigi aŭ kaŝi la komentojn de prezentaĵo."
#: main0103.xhp
msgctxt ""
@@ -273,7 +258,7 @@ msgctxt ""
"hd_id102720151246523444\n"
"help.text"
msgid "Master Background"
-msgstr ""
+msgstr "Ĉefa fono"
#: main0103.xhp
msgctxt ""
@@ -281,7 +266,7 @@ msgctxt ""
"par_id102720150112257941\n"
"help.text"
msgid "Toggle the visibility of a slide master's background to be used as the background of the current slide."
-msgstr ""
+msgstr "Baskuli la videblecon de la ĉefa fono de lumbildo por uzi ĝin kiel la fonon de la aktuala lumbildo."
#: main0103.xhp
msgctxt ""
@@ -289,7 +274,7 @@ msgctxt ""
"hd_id102720151246521837\n"
"help.text"
msgid "Master Objects"
-msgstr ""
+msgstr "Ĉefaj objektoj"
#: main0103.xhp
msgctxt ""
@@ -297,7 +282,7 @@ msgctxt ""
"par_id102720150112256473\n"
"help.text"
msgid "Toggle the visibility of a slide master's objects to appear on the current slide."
-msgstr ""
+msgstr "Baskuli la videblecon de la objektoj de ĉefa lumbildo por aperi en la aktuala lumbildo."
#: main0103.xhp
msgctxt ""
@@ -305,10 +290,9 @@ msgctxt ""
"hd_id102720150908397549\n"
"help.text"
msgid "<link href=\"text/shared/01/gallery.xhp\">Clip Art Gallery</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/gallery.xhp\">Bildetara galerio</link>"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id3149121\n"
@@ -325,7 +309,6 @@ msgid "Insert"
msgstr "Enmeti"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3153726\n"
@@ -334,7 +317,6 @@ msgid "<link href=\"text/simpress/main0104.xhp\" name=\"Insert\">Insert</link>"
msgstr "<link href=\"text/simpress/main0104.xhp\" name=\"Insert\">Enmeti</link>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"par_id3146971\n"
@@ -343,7 +325,6 @@ msgid "<ahelp hid=\".\">This menu contains the commands that are used to insert
msgstr "<ahelp hid=\".\">Ĉi tiu menuo enhavas la komandojn uzatajn por enmeti novajn elementojn en la dokumenton, ekzemple grafikaĵojn, objektojn, specialajn signojn kaj aliajn dosierojn.</ahelp>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3145801\n"
@@ -392,7 +373,6 @@ msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link
msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Komento</link>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3153964\n"
@@ -401,7 +381,6 @@ msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Spe
msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Speciala signo</link>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3145790\n"
@@ -418,7 +397,6 @@ msgid "<link href=\"text/simpress/01/06050000.xhp\">Animated Image</link>"
msgstr "<link href=\"text/simpress/01/06050000.xhp\">Animacia bildo</link>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3145768\n"
@@ -427,7 +405,6 @@ msgid "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Table</link>"
msgstr "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Tabelo</link>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3143232\n"
@@ -444,7 +421,6 @@ msgid "Inserts a chart."
msgstr "Enmetas diagramon."
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3153812\n"
@@ -453,7 +429,6 @@ msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floati
msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Glita kadro</link>"
#: main0104.xhp
-#, fuzzy
msgctxt ""
"main0104.xhp\n"
"hd_id3149050\n"
@@ -470,7 +445,6 @@ msgid "Format"
msgstr "Formato"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3152596\n"
@@ -487,7 +461,6 @@ msgid "<ahelp hid=\".\">Contains commands for formatting the layout and the cont
msgstr "<ahelp hid=\".\">Enhavas komandojn por formati la aranĝon kaj la enhavon de via dokumento.</ahelp>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3147401\n"
@@ -496,7 +469,6 @@ msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</
msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Signo</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3149941\n"
@@ -505,7 +477,6 @@ msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</
msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Alineo</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3147299\n"
@@ -514,7 +485,6 @@ msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bul
msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Buloj kaj numerado</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3148727\n"
@@ -523,7 +493,6 @@ msgid "<link href=\"text/simpress/01/01180000.xhp\" name=\"Page\">Page</link>"
msgstr "<link href=\"text/simpress/01/01180000.xhp\" name=\"Page\">Paĝo</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3149499\n"
@@ -532,7 +501,6 @@ msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Pos
msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Pozicio kaj grando</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3154510\n"
@@ -541,7 +509,6 @@ msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Linio</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3149021\n"
@@ -550,7 +517,6 @@ msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Areo</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3155961\n"
@@ -559,7 +525,6 @@ msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Teksto</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3156286\n"
@@ -568,7 +533,6 @@ msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Slid
msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Lumbilda skizo</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3163827\n"
@@ -585,7 +549,6 @@ msgid "Tools"
msgstr "Iloj"
#: main0106.xhp
-#, fuzzy
msgctxt ""
"main0106.xhp\n"
"hd_id3154017\n"
@@ -594,7 +557,6 @@ msgid "<link href=\"text/simpress/main0106.xhp\" name=\"Tools\">Tools</link>"
msgstr "<link href=\"text/simpress/main0106.xhp\" name=\"Tools\">Iloj</link>"
#: main0106.xhp
-#, fuzzy
msgctxt ""
"main0106.xhp\n"
"par_id3155064\n"
@@ -603,7 +565,6 @@ msgid "<ahelp hid=\".\">Contains spelling tools, a gallery of object art that yo
msgstr "<ahelp hid=\".\">Enhavas literumadajn ilojn, galerion de objektarto aldonebla de vi al via dokumento, samkiel ilojn por agordi menuojn, kaj agordi programpreferojn.</ahelp>"
#: main0106.xhp
-#, fuzzy
msgctxt ""
"main0106.xhp\n"
"hd_id3153248\n"
@@ -612,7 +573,6 @@ msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorre
msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">Agordoj de aŭtomata korektado</link>"
#: main0106.xhp
-#, fuzzy
msgctxt ""
"main0106.xhp\n"
"hd_id3149130\n"
@@ -629,7 +589,6 @@ msgid "Window"
msgstr "Fenestro"
#: main0107.xhp
-#, fuzzy
msgctxt ""
"main0107.xhp\n"
"hd_id3153770\n"
@@ -638,7 +597,6 @@ msgid "<link href=\"text/simpress/main0107.xhp\" name=\"Window\">Window</link>"
msgstr "<link href=\"text/simpress/main0107.xhp\" name=\"Window\">Fenestro</link>"
#: main0107.xhp
-#, fuzzy
msgctxt ""
"main0107.xhp\n"
"par_id3147435\n"
@@ -753,7 +711,6 @@ msgid "Slide Show"
msgstr "Vidigu prezentaĵon"
#: main0114.xhp
-#, fuzzy
msgctxt ""
"main0114.xhp\n"
"hd_id3154011\n"
@@ -762,7 +719,6 @@ msgid "<link href=\"text/simpress/main0114.xhp\" name=\"Slide Show\">Slide Show<
msgstr "<link href=\"text/simpress/main0114.xhp\" name=\"Slide Show\">Vidigi prezentaĵon</link>"
#: main0114.xhp
-#, fuzzy
msgctxt ""
"main0114.xhp\n"
"par_id3145252\n"
@@ -771,7 +727,6 @@ msgid "<ahelp hid=\".\">Contains commands and options for running a presentation
msgstr "<ahelp hid=\".\">Enhavas komandojn kaj agordaĵojn por ruli prezentaĵon.</ahelp>"
#: main0114.xhp
-#, fuzzy
msgctxt ""
"main0114.xhp\n"
"hd_id3154510\n"
@@ -780,7 +735,6 @@ msgid "<link href=\"text/simpress/01/06080000.xhp\" name=\"Slide Show Settings\"
msgstr "<link href=\"text/simpress/01/06080000.xhp\" name=\"Slide Show Settings\">Lumbilda prezentaĵa agordaro</link>"
#: main0114.xhp
-#, fuzzy
msgctxt ""
"main0114.xhp\n"
"hd_id3153486\n"
@@ -797,7 +751,6 @@ msgid "<link href=\"text/simpress/01/06060000.xhp\">Custom Animation</link>"
msgstr "<link href=\"text/simpress/01/06060000.xhp\">Propra animacio</link>"
#: main0114.xhp
-#, fuzzy
msgctxt ""
"main0114.xhp\n"
"hd_id3153711\n"
@@ -811,7 +764,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Lumbildo"
#: main0117.xhp
msgctxt ""
@@ -827,7 +780,7 @@ msgctxt ""
"par_id0908201507482661\n"
"help.text"
msgid "This menu provides slide management and navigation commands."
-msgstr ""
+msgstr "Ĉi tiu menuo provizas komandojn por lumbilda mastrumado kaj navigado."
#: main0200.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/smath/01.po b/source/eo/helpcontent2/source/text/smath/01.po
index 714d561bb1f..86324731e67 100644
--- a/source/eo/helpcontent2/source/text/smath/01.po
+++ b/source/eo/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-01-11 23:02+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"PO-Revision-Date: 2016-03-03 22:13+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452553328.000000\n"
+"X-POOTLE-MTIME: 1457043225.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -6273,22 +6273,24 @@ msgid "\\{ or \\lbrace, \\} or \\rbrace"
msgstr ""
#: 03091100.xhp
+#, fuzzy
msgctxt ""
"03091100.xhp\n"
"par_id3150756\n"
"26\n"
"help.text"
msgid "\\(, \\)"
-msgstr ""
+msgstr "\\(, \\)"
#: 03091100.xhp
+#, fuzzy
msgctxt ""
"03091100.xhp\n"
"par_id3145207\n"
"27\n"
"help.text"
msgid "\\[, \\]"
-msgstr ""
+msgstr "\\[, \\]"
#: 03091100.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/swriter.po b/source/eo/helpcontent2/source/text/swriter.po
index a6abaf52093..411768a6d48 100644
--- a/source/eo/helpcontent2/source/text/swriter.po
+++ b/source/eo/helpcontent2/source/text/swriter.po
@@ -4,8 +4,8 @@ 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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-01-11 23:01+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"PO-Revision-Date: 2016-03-03 22:14+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Esperanto <LL@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452553297.000000\n"
+"X-POOTLE-MTIME: 1457043299.000000\n"
#: main0000.xhp
msgctxt ""
@@ -95,7 +95,6 @@ msgid "File"
msgstr "Dosiero"
#: main0101.xhp
-#, fuzzy
msgctxt ""
"main0101.xhp\n"
"hd_id3147331\n"
@@ -104,7 +103,6 @@ msgid "<link href=\"text/swriter/main0101.xhp\" name=\"File\">File</link>"
msgstr "<link href=\"text/swriter/main0101.xhp\" name=\"File\">Dosiero</link>"
#: main0101.xhp
-#, fuzzy
msgctxt ""
"main0101.xhp\n"
"par_id3147352\n"
@@ -121,7 +119,6 @@ msgid "Edit"
msgstr "Redakti"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id3149610\n"
@@ -130,7 +127,6 @@ msgid "<link href=\"text/swriter/main0102.xhp\" name=\"Edit\">Edit</link>"
msgstr "<link href=\"text/swriter/main0102.xhp\" name=\"Edit\">Redakti</link>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"par_id3149626\n"
@@ -139,7 +135,6 @@ msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of
msgstr "<ahelp hid=\".\">Ĉi tiu menuo enhavas komandojn por redakti la enhavon de la aktuala dokumento.</ahelp>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id3147619\n"
@@ -153,7 +148,7 @@ msgctxt ""
"hd_id102920150120456626\n"
"help.text"
msgid "Direct Cursor Mode"
-msgstr ""
+msgstr "Rektkursora reĝimo"
#: main0102.xhp
msgctxt ""
@@ -161,7 +156,7 @@ msgctxt ""
"par_id102920150120459176\n"
"help.text"
msgid "Allows a user to click at the beginning, middle, or end of any possible text line on a page and then begin typing."
-msgstr ""
+msgstr "Ebligas al uzanto alklaki ĉe la komenco, mezo, aŭ fino de iu ajn teksta linio en paĝo kaj tiam ektajpi."
#: main0102.xhp
msgctxt ""
@@ -169,7 +164,7 @@ msgctxt ""
"hd_id102920150120455108\n"
"help.text"
msgid "Go to Page"
-msgstr ""
+msgstr "Iri al paĝo"
#: main0102.xhp
msgctxt ""
@@ -177,7 +172,7 @@ msgctxt ""
"par_id102920150120456660\n"
"help.text"
msgid "Opens the <emph>Navigator</emph> window on the <emph>Page Number</emph> spin button, so you can enter in a page number."
-msgstr ""
+msgstr "Malfermas la fenestron <emph>Navigilo</emph> en la turnbutono <emph>Paĝnumero</emph>, por ke vi enigu paĝnumeron."
#: main0102.xhp
msgctxt ""
@@ -188,7 +183,6 @@ msgid "<link href=\"text/swriter/01/02150000.xhp\" name=\"Footnotes\">Footnote o
msgstr "<link href=\"text/swriter/01/02150000.xhp\" name=\"Footnotes\">Piednoto aŭ finnoto</link>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id3147327\n"
@@ -197,7 +191,6 @@ msgid "<link href=\"text/swriter/01/02160000.xhp\" name=\"Index Entry\">Index En
msgstr "<link href=\"text/swriter/01/02160000.xhp\" name=\"Index Entry\">Indeksero</link>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id3147352\n"
@@ -206,7 +199,6 @@ msgid "<link href=\"text/swriter/01/02130000.xhp\" name=\"Bibliography Entry\">B
msgstr "<link href=\"text/swriter/01/02130000.xhp\" name=\"Bibliography Entry\">Bibliografiero</link>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id0914201501170124\n"
@@ -215,16 +207,14 @@ msgid "<link href=\"text/swriter/01/02140000.xhp\" name=\"Fields\">Fields</link>
msgstr "<link href=\"text/swriter/01/02140000.xhp\" name=\"Fields\">Kampoj</link>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id0914201501170171\n"
"help.text"
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Ligojn</link>"
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Ligoj</link>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id3156150\n"
@@ -249,7 +239,6 @@ msgid "View"
msgstr "Vido"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id3147233\n"
@@ -258,7 +247,6 @@ msgid "<link href=\"text/swriter/main0103.xhp\" name=\"View\">View</link>"
msgstr "<link href=\"text/swriter/main0103.xhp\" name=\"View\">Vido</link>"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"par_id3147249\n"
@@ -288,7 +276,7 @@ msgctxt ""
"hd_id102720150854015048\n"
"help.text"
msgid "Scrollbars"
-msgstr ""
+msgstr "Rulumskaloj"
#: main0103.xhp
msgctxt ""
@@ -296,7 +284,7 @@ msgctxt ""
"par_id102720150854017277\n"
"help.text"
msgid "Show or hide the horizontal and vertical scroll bars that are used to change the viewable area of a document that doesn't fit within the window."
-msgstr ""
+msgstr "Vidigas aŭ kaŝas la horizontalan kaj vertikalan rulumskalojn uzatajn por ŝanĝi la videblan zonon de dokumento kiu ne povas sidi ene de la fenestro."
#: main0103.xhp
msgctxt ""
@@ -304,7 +292,7 @@ msgctxt ""
"hd_id102720150854018740\n"
"help.text"
msgid "Hide Whitespace"
-msgstr ""
+msgstr "Kaŝi blankspacojn"
#: main0103.xhp
msgctxt ""
@@ -312,10 +300,9 @@ msgctxt ""
"par_id102720150854012820\n"
"help.text"
msgid "View documents with the white space found at the end and beginning of pages hidden."
-msgstr ""
+msgstr "Vidigi dokumentojn kun la blankspacojn, ĉe la fino kaj komenco de paĝoj, kaŝitaj."
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"par_idN10613\n"
@@ -329,7 +316,7 @@ msgctxt ""
"par_idN107CA\n"
"help.text"
msgid "Shows or hides the borders of table cells that have no set borders. The boundaries are only visible on screen and are not printed."
-msgstr ""
+msgstr "Vidigas aŭ kaŝas la borderojn de tabelaj ĉeloj kiuj ne havas agorditajn borderojn. La limoj estos videblaj nur ekrane kaj ne presiĝos."
#: main0103.xhp
msgctxt ""
@@ -337,7 +324,7 @@ msgctxt ""
"hd_id102720150854011929\n"
"help.text"
msgid "Images and Charts"
-msgstr ""
+msgstr "Bildoj kaj diagramoj"
#: main0103.xhp
msgctxt ""
@@ -345,7 +332,7 @@ msgctxt ""
"par_id102720150854013292\n"
"help.text"
msgid "Show or hide graphical objects like images and charts within a document."
-msgstr ""
+msgstr "Vidigi aŭ kaŝi grafikajn objektojn, kiel bildojn kaj diagramojn, en dokumento."
#: main0103.xhp
msgctxt ""
@@ -353,7 +340,7 @@ msgctxt ""
"hd_id102720150854019880\n"
"help.text"
msgid "Comments"
-msgstr ""
+msgstr "Komentoj"
#: main0103.xhp
msgctxt ""
@@ -361,7 +348,7 @@ msgctxt ""
"par_id102720150854014989\n"
"help.text"
msgid "Show or hide a document's annotations and replies to the written remarks."
-msgstr ""
+msgstr "Vidigi aŭ kaŝi la komentojn de dokumento kaj respondojn al la skribitaj komentoj."
#: main0103.xhp
msgctxt ""
@@ -369,10 +356,9 @@ msgctxt ""
"hd_id102720150908397549\n"
"help.text"
msgid "<link href=\"text/shared/01/gallery.xhp\">Clip Art Gallery</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/gallery.xhp\">Bildetara galerio</link>"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id3147265\n"
@@ -550,7 +536,6 @@ msgid "Format"
msgstr "Formato"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3147820\n"
@@ -559,7 +544,6 @@ msgid "<link href=\"text/swriter/main0105.xhp\" name=\"Format\">Format</link>"
msgstr "<link href=\"text/swriter/main0105.xhp\" name=\"Format\">Formato</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"par_id3147218\n"
@@ -568,7 +552,6 @@ msgid "<ahelp hid=\".uno:FormatMenu\">Contains commands for formatting the layou
msgstr "<ahelp hid=\".uno:FormatMenu\">Enhavas komandojn por formati la aranĝon kaj la enhavon de via dokumento.</ahelp>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3147261\n"
@@ -577,7 +560,6 @@ msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</
msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Signo</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3147286\n"
@@ -586,7 +568,6 @@ msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</
msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Alineo</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3145784\n"
@@ -595,7 +576,6 @@ msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bul
msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Buloj kaj numerado</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3145692\n"
@@ -604,7 +584,6 @@ msgid "<link href=\"text/swriter/01/05040000.xhp\" name=\"Page\">Page</link>"
msgstr "<link href=\"text/swriter/01/05040000.xhp\" name=\"Page\">Paĝo</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3145743\n"
@@ -613,7 +592,6 @@ msgid "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">Columns</lin
msgstr "<link href=\"text/swriter/01/05040500.xhp\" name=\"Columns\">Kolumnoj</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3145717\n"
@@ -622,7 +600,6 @@ msgid "<link href=\"text/swriter/01/02170000.xhp\" name=\"Sections\">Sections</l
msgstr "<link href=\"text/swriter/01/02170000.xhp\" name=\"Sections\">Sekcioj</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3149910\n"
@@ -631,7 +608,6 @@ msgid "<link href=\"text/swriter/01/04130000.xhp\" name=\"Frame\">Frame</link>"
msgstr "<link href=\"text/swriter/01/04130000.xhp\" name=\"Frame\">Kadro</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"hd_id3149935\n"
@@ -648,7 +624,6 @@ msgid "Tools"
msgstr "Iloj"
#: main0106.xhp
-#, fuzzy
msgctxt ""
"main0106.xhp\n"
"hd_id3147241\n"
@@ -657,7 +632,6 @@ msgid "<link href=\"text/swriter/main0106.xhp\" name=\"Tools\">Tools</link>"
msgstr "<link href=\"text/swriter/main0106.xhp\" name=\"Tools\">Iloj</link>"
#: main0106.xhp
-#, fuzzy
msgctxt ""
"main0106.xhp\n"
"par_id3147258\n"
@@ -666,25 +640,22 @@ msgid "<ahelp hid=\".\">Contains spelling tools, a gallery of object art that yo
msgstr "<ahelp hid=\".\">Enhavas literumadajn ilojn, galerion de objektarto aldonebla de vi al via dokumento, samkiel ilojn por agordi menuojn, kaj agordi programpreferojn.</ahelp>"
#: main0106.xhp
-#, fuzzy
msgctxt ""
"main0106.xhp\n"
"hd_id3149965\n"
"help.text"
msgid "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Outline Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Skema Numerado</link>"
+msgstr "<link href=\"text/swriter/01/06060000.xhp\" name=\"Outline Numbering\">Skema numerado</link>"
#: main0106.xhp
-#, fuzzy
msgctxt ""
"main0106.xhp\n"
"hd_id3145688\n"
"help.text"
msgid "<link href=\"text/swriter/01/06180000.xhp\" name=\"Line Numbering\">Line Numbering</link>"
-msgstr "<link href=\"text/swriter/01/06180000.xhp\" name=\"Line Numbering\">Lininumerad</link>"
+msgstr "<link href=\"text/swriter/01/06180000.xhp\" name=\"Line Numbering\">Linia numerado</link>"
#: main0106.xhp
-#, fuzzy
msgctxt ""
"main0106.xhp\n"
"hd_id3145713\n"
@@ -693,7 +664,6 @@ msgid "<link href=\"text/swriter/01/06080000.xhp\" name=\"Footnotes\">Footnotes<
msgstr "<link href=\"text/swriter/01/06080000.xhp\" name=\"Footnotes\">Piednotoj</link>"
#: main0106.xhp
-#, fuzzy
msgctxt ""
"main0106.xhp\n"
"hd_id3147346\n"
@@ -702,7 +672,6 @@ msgid "<link href=\"text/swriter/01/06100000.xhp\" name=\"Sort\">Sort</link>"
msgstr "<link href=\"text/swriter/01/06100000.xhp\" name=\"Sort\">Ordigi</link>"
#: main0106.xhp
-#, fuzzy
msgctxt ""
"main0106.xhp\n"
"hd_id3149939\n"
@@ -711,7 +680,6 @@ msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorre
msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">Agordoj de aŭtomata korektado</link>"
#: main0106.xhp
-#, fuzzy
msgctxt ""
"main0106.xhp\n"
"hd_id3147406\n"
@@ -762,13 +730,12 @@ msgid "<link href=\"text/swriter/main0110.xhp\">Table</link>"
msgstr "<link href=\"text/swriter/main0110.xhp\">Tabelo</link>"
#: main0110.xhp
-#, fuzzy
msgctxt ""
"main0110.xhp\n"
"par_idN10563\n"
"help.text"
msgid "<ahelp hid=\".\">Shows commands to insert, edit, and delete a table and its elements inside a text document.</ahelp>"
-msgstr "<ahelp hid=\".\">Montras komandojn por enmeti, redakti, kaj forigi tabelon ene de tekstdokumento.</ahelp>"
+msgstr "<ahelp hid=\".\">Montras komandojn por enmeti, redakti, kaj forigi tabelon kaj ties elementojn ene de tekstdokumento.</ahelp>"
#: main0110.xhp
msgctxt ""
@@ -1176,7 +1143,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Styles"
-msgstr ""
+msgstr "Stiloj"
#: main0115.xhp
msgctxt ""
@@ -1192,7 +1159,7 @@ msgctxt ""
"par_idN10563\n"
"help.text"
msgid "<ahelp hid=\".\">Contains commands to set, create, edit, update, load, and manage styles in a text document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Enhavas komandojn por agordi, krei, redakti, ĝisdatigi, ŝargi, kaj mastrumi stilojn en teksta dokumento.</ahelp>"
#: main0115.xhp
msgctxt ""
@@ -1200,7 +1167,7 @@ msgctxt ""
"hd_id0903201507192919\n"
"help.text"
msgid "Default"
-msgstr ""
+msgstr "Apriora"
#: main0115.xhp
msgctxt ""
@@ -1208,7 +1175,7 @@ msgctxt ""
"par_id090320150719290\n"
"help.text"
msgid "Set the current paragraph or selected paragraphs to the default style."
-msgstr ""
+msgstr "Agordi al la apriora stilo la aktualan alineon aŭ elektitajn alineojn."
#: main0200.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/swriter/guide.po b/source/eo/helpcontent2/source/text/swriter/guide.po
index d2a8fd57435..5c98cf00308 100644
--- a/source/eo/helpcontent2/source/text/swriter/guide.po
+++ b/source/eo/helpcontent2/source/text/swriter/guide.po
@@ -4,8 +4,8 @@ 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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2016-01-11 22:59+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"PO-Revision-Date: 2016-03-03 22:46+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Esperanto <eo@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452553155.000000\n"
+"X-POOTLE-MTIME: 1457045208.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -184,7 +184,6 @@ msgid "Rearranging a Document by Using the Navigator"
msgstr "Rearanĝi dokumenton uzante la Navigilon"
#: arrange_chapters.xhp
-#, fuzzy
msgctxt ""
"arrange_chapters.xhp\n"
"bm_id3149973\n"
@@ -193,7 +192,6 @@ msgid "<bookmark_value>headings;rearranging</bookmark_value> <bookmark_value>re
msgstr "<bookmark_value>titolojn;rearanĝi</bookmark_value> <bookmark_value>rearanĝi titolojn</bookmark_value> <bookmark_value>movi;titolojn</bookmark_value> <bookmark_value>malpligravigi titolajn nivelojn</bookmark_value> <bookmark_value>pligravigi titolajn nivelojn</bookmark_value> <bookmark_value>Navigilo;titolaj niveloj kaj ĉapitroj</bookmark_value> <bookmark_value>aranĝi;titolojn</bookmark_value> <bookmark_value>skemoj;aranĝi ĉapitrojn</bookmark_value>"
#: arrange_chapters.xhp
-#, fuzzy
msgctxt ""
"arrange_chapters.xhp\n"
"hd_id3149973\n"
@@ -202,16 +200,14 @@ msgid "<variable id=\"arrange_chapters\"><link href=\"text/swriter/guide/arrange
msgstr "<variable id=\"arrange_chapters\"><link href=\"text/swriter/guide/arrange_chapters.xhp\" name=\"Rearranging a Document by Using the Navigator\">Aranĝi ĉapitrojn per la Navigilo</link></variable>"
#: arrange_chapters.xhp
-#, fuzzy
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3147795\n"
"help.text"
msgid "You can move headings and subordinate text up and down in a document text by using the Navigator. You can also promote and demote heading levels. To use this feature, format the headings in your document with one of the predefined heading paragraph styles. To use a custom paragraph style for a heading, choose <emph>Tools - Outline Numbering</emph>, select the style in the <emph>Paragraph Style</emph> box, and then double-click a number in the <emph>Levels</emph> list."
-msgstr "Oni povas movi titolojn kaj subrangan tekston supren kaj malsupren en dokumenta teksto uzante la Navigilon. Oni povas ankaŭ movi supren kaj malsupren titolajn nivelojn. Por uzi tiun eblon, formatu la titolojn en la dokumento per unu el la antaŭe difinitaj titolaj alineaj stiloj. Por uzi propran alinean stilon por titolo, elektu menuerojn <emph>Iloj - Resuma numerado</emph>, elektu la stilon en la kadro <emph>Alinea stilo</emph>, kaj tiam duoble alklaku numeron en la listo <emph>Niveloj</emph>."
+msgstr "Oni povas movi titolojn kaj subrangan tekston supren kaj malsupren en dokumenta teksto uzante la Navigilon. Oni povas ankaŭ pligravigi kaj malpligravigi titolajn nivelojn. Por uzi tiun eblon, formatu la titolojn en la dokumento per unu el la antaŭe difinitaj titolaj alineaj stiloj. Por uzi propran alinean stilon por titolo, elektu menuerojn <emph>Iloj - Skema numerado</emph>, elektu la stilon en la kadro <emph>Alinea stilo</emph>, kaj tiam duoble alklaku numeron en la listo <emph>Niveloj</emph>."
#: arrange_chapters.xhp
-#, fuzzy
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3145652\n"
@@ -225,10 +221,9 @@ msgctxt ""
"par_id3155461\n"
"help.text"
msgid "To dock the <emph>Navigator</emph>, drag the title bar to the edge of the workspace. To undock the <emph>Navigator</emph>, double-click its frame while holding the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key."
-msgstr ""
+msgstr "Por endokigi la <emph>Navigilon</emph>, ŝovu la titolan breton al la rando de la laborspaco. Por eldokigi la <emph>Navigilon</emph>, duoble alklaku ĝian kadron samtempe tenante la klavon <switchinline select=\"sys\"><caseinline select=\"MAC\">Komando</caseinline><defaultinline>Stir</defaultinline></switchinline>."
#: arrange_chapters.xhp
-#, fuzzy
msgctxt ""
"arrange_chapters.xhp\n"
"hd_id3151184\n"
@@ -261,7 +256,6 @@ msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <
msgstr "En <emph>Navigilo</emph>, alklaku la bildsimbolon <emph>Enhava vido</emph> <image id=\"img_id3156338\" src=\"sw/imglst/sc20244.png\"><alt id=\"alt_id3156338\">Bildsimbolo</alt></image>."
#: arrange_chapters.xhp
-#, fuzzy
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155089\n"
@@ -270,13 +264,12 @@ msgid "Do one of the following:"
msgstr "Faru iun el la jenaj:"
#: arrange_chapters.xhp
-#, fuzzy
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155114\n"
"help.text"
msgid "Drag a heading to a new location in the <emph>Navigator</emph> list."
-msgstr "Tiru titolon al nova loko en la listo en <emph>Navigilo</emph>."
+msgstr "Ŝovu titolon al nova loko en la listo <emph>Navigilo</emph>."
#: arrange_chapters.xhp
msgctxt ""
@@ -292,19 +285,17 @@ msgctxt ""
"par_id3145758\n"
"help.text"
msgid "To move the heading without the subordinate text, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while you drag or click the <emph>Promote Chapter</emph> or <emph>Demote Chapter</emph> icons."
-msgstr ""
+msgstr "Por movi la titolon sen la subranga teksto, tenu je <switchinline select=\"sys\"><caseinline select=\"MAC\">Komando</caseinline><defaultinline>Stir</defaultinline></switchinline> dum vi ŝovas aŭ alklaku la bildsimbolon <emph>Pligravigi ĉapitron</emph> aŭ <emph>Malpligravigi ĉapitron</emph>."
#: arrange_chapters.xhp
-#, fuzzy
msgctxt ""
"arrange_chapters.xhp\n"
"hd_id3155402\n"
"help.text"
msgid "To Promote or Demote the Level of a Heading"
-msgstr "Por movi supren aŭ malsupren la nivelon de titolo"
+msgstr "Por pligravigi aŭ malpligravigi la nivelon de titolo"
#: arrange_chapters.xhp
-#, fuzzy
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155424\n"
@@ -321,7 +312,6 @@ msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw
msgstr "Alklaku la bildsimbolon <emph>Unu Nivelon Supren</emph><image id=\"img_id5564488\" src=\"sw/imglst/sc20172.png\"><alt id=\"alt_id5564488\"></alt></image> aŭ bildsimbolo<emph>Unu Nivelon Malsupren </emph> <image id=\"img_id3159363\" src=\"sw/imglst/sc20173.png\"><alt id=\"alt_id3159363\">Bildsimbolo</alt></image>."
#: arrange_chapters.xhp
-#, fuzzy
msgctxt ""
"arrange_chapters.xhp\n"
"hd_id3155525\n"
@@ -4021,24 +4011,22 @@ msgid "Fields consist of a field name and the field content. To switch the field
msgstr "Kampoj konsistas el kampa nomo kaj ka kampa enhavo. Por ŝalti la kampan vidigon inter la kampa nomo kaj la enhavo, elektu menuerojn <link href=\"text/swriter/01/03090000.xhp\" name=\"View - Fields\"><emph>Vidi - Kampajn nomojn</emph></link>."
#: fields.xhp
-#, fuzzy
msgctxt ""
"fields.xhp\n"
"par_id3150536\n"
"195\n"
"help.text"
msgid "To display or hide field highlighting in a document, choose <emph>View - Field Shadings</emph>. To permanently disable this feature, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Application Colors</emph>, and clear the check box in front of <emph>Field shadings</emph>."
-msgstr "Por emfazi aŭ neemfazi kampojn en dokumento, elektu menuerojn <emph>Vidigi - Kampoj reliefigitaj</emph>. Por porĉiame malŝalti tiun eblon, elektu menuerojn <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferoj</caseinline><defaultinline>Iloj - Agordaro</defaultinline></switchinline> - $[officename] - Aspekto</emph>, kaj malmarku la markobutonon antaŭ <emph>Kampoj reliefigitaj</emph>."
+msgstr "Por vidigi aŭ kaŝi kampan emfazon en dokumento, elektu menuerojn <emph>Vidigi - Kampoj reliefigitaj</emph>. Por porĉiame malŝalti tiun eblon, elektu menuerojn <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferoj</caseinline><defaultinline>Iloj - Agordaro</defaultinline></switchinline> - $[officename] - Aplikaĵaj koloroj</emph>, kaj malmarku la markobutonon antaŭ <emph>Kampoj reliefigitaj</emph>."
#: fields.xhp
-#, fuzzy
msgctxt ""
"fields.xhp\n"
"par_id3152885\n"
"7\n"
"help.text"
msgid "To change the color of field shadings, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01012000.xhp\" name=\"$[officename] - Application Colors\"><item type=\"menuitem\">$[officename] - Application Colors</item></link></emph>, locate the <item type=\"menuitem\">Field shadings</item> option, and then select a different color in the <item type=\"menuitem\">Color setting</item> box."
-msgstr "Por ŝanĝi la koloron de kampa kolorheleco, elektu je <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferoj</caseinline><defaultinline>Iloj - Agordoj</defaultinline></switchinline> - <link href=\"text/shared/optionen/01012000.xhp\" name=\"$[officename] - Appearance\"><item type=\"menuitem\">$[officename] - Aspekto</item></link></emph>, trovu la agordon <item type=\"menuitem\">Kampoj reliefigitaj</item>, kaj elektu alian koloron en la kadro <item type=\"menuitem\">Agordi koloron</item>."
+msgstr "Por ŝanĝi la koloron de kampa kolorheleco, elektu je <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferoj</caseinline><defaultinline>Iloj - Agordaĵoj</defaultinline></switchinline> - <link href=\"text/shared/optionen/01012000.xhp\" name=\"$[officename] - Application Colors\"><item type=\"menuitem\">$[officename] - Aplikaĵaj koloroj</item></link></emph>, trovu la agordon <item type=\"menuitem\">Kampoj reliefigitaj</item>, kaj elektu alian koloron en la kadro <item type=\"menuitem\">Koloragordo</item>."
#: fields.xhp
msgctxt ""
@@ -4158,14 +4146,13 @@ msgid "Opens a dialog to edit the contents of the field."
msgstr "Malfermas dialogon por redakti la enhavon de la kampo."
#: fields.xhp
-#, fuzzy
msgctxt ""
"fields.xhp\n"
"par_id3151244\n"
"10\n"
"help.text"
msgid "Placeholder, hidden text, insert reference, variable, database, and user-defined fields display a help tip when you rest the mouse pointer over the field in a document. To enable this feature, ensure that the Extended Tips option (<item type=\"menuitem\">What's This?</item>) is selected in the <item type=\"menuitem\">Help</item> menu."
-msgstr "Lokokupilo, kaŝita teksto, enmeti referencon, variablo, datumbazo, kaj propre agorditaj kampoj vidigas helpan konsileton kiam vi ŝvebigas la muskursoron super la kampo en dokumento. Por aktivigi tiun funkcion, certigu ke la agordo Etenditaj konsiletoj (<item type=\"menuitem\">Kio estas ĉi tio?</item>) estas markita en la menuo <item type=\"menuitem\">Helpo</item>."
+msgstr "Kampoj por lokokupilo, kaŝita teksto, enmeti referencon, variablo, datumbazo, kaj propre agorditaj, vidigas helpan konsileton kiam vi ŝvebigas la muskursoron super la kampo en dokumento. Por aktivigi tiun funkcion, certigu ke la eblo Etenditaj konsiletoj (<item type=\"menuitem\">Kio estas ĉi tio?</item>) estas markita en la menuo <item type=\"menuitem\">Helpo</item>."
#: fields.xhp
msgctxt ""
@@ -11482,7 +11469,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Styles and Formatting</item>."
-msgstr ""
+msgstr "Elektu je <item type=\"menuitem\">Formato - Stiloj kaj formatado</item>."
#: pagestyles.xhp
msgctxt ""
@@ -14031,13 +14018,12 @@ msgid "Smart Tags Menu"
msgstr "Menuo Aktivaj markoj"
#: smarttags.xhp
-#, fuzzy
msgctxt ""
"smarttags.xhp\n"
"par_id1917477\n"
"help.text"
msgid "Any text in a Writer document can be marked with a Smart Tag, by default a magenta colored underline. You can change the color in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Application Colors</item>."
-msgstr "Ajna teksto en Verkilo-dokumento estas markebla per aktiva marko, apriore malva substreko. Vi povas ŝanĝi la koloron en<item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferoj</caseinline><defaultinline>Iloj - Agordaro</defaultinline></switchinline> - %PRODUCTNAME - Aspekto</item>."
+msgstr "Ajna teksto en Verkilo-dokumento estas markebla per aktiva marko, apriore malva substreko. Vi povas ŝanĝi la koloron en<item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferoj</caseinline><defaultinline>Iloj - Agordaĵoj</defaultinline></switchinline> - %PRODUCTNAME - Aplikaĵaj koloroj</item>."
#: smarttags.xhp
msgctxt ""
@@ -15777,7 +15763,7 @@ msgctxt ""
"113\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Templates - Save As Template</item>."
-msgstr ""
+msgstr "Elektu je <item type=\"menuitem\">Dosiero - Ŝablonoj - Konservi kiel ŝablonon</item>."
#: template_default.xhp
msgctxt ""
@@ -15795,7 +15781,7 @@ msgctxt ""
"114\n"
"help.text"
msgid "In the dialog that appears, double-click the \"My Templates\" folder, and then click <emph>Save</emph>. You will then be prompted for a name; write it and click <emph>OK</emph>."
-msgstr ""
+msgstr "En la dialogo kiu aperas, duoble alklaku la dosierujon \"Miaj ŝablonoj\", kaj tiam alklaku <emph>Konservi</emph>. Ĝi invitos vin enigi nomon; tajpu ĝin kaj alklaku <emph>Akcepti</emph>."
#: template_default.xhp
msgctxt ""
diff --git a/source/es/cui/uiconfig/ui.po b/source/es/cui/uiconfig/ui.po
index db7961c5574..9b492355ff5 100644
--- a/source/es/cui/uiconfig/ui.po
+++ b/source/es/cui/uiconfig/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-02-03 01:55+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2016-03-13 09:04+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1454464513.000000\n"
+"X-POOTLE-MTIME: 1457859886.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -2831,7 +2831,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Field shadings"
-msgstr "Sombreado de los campos"
+msgstr "Marcas de campos"
#: colorconfigwin.ui
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/sbasic/shared.po b/source/es/helpcontent2/source/text/sbasic/shared.po
index 1af9f538ee2..8c73e6933c5 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared.po
+++ b/source/es/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: 2015-09-01 20:20+0200\n"
-"PO-Revision-Date: 2016-01-31 15:28+0000\n"
-"Last-Translator: Juan C. Sanz <juancsanzc@hotmail.com>\n"
+"PO-Revision-Date: 2016-03-14 09:00+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"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1454254139.000000\n"
+"X-POOTLE-MTIME: 1457946004.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -10654,7 +10654,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Seek Statement [Runtime]"
-msgstr "Función Seek [Ejecución]"
+msgstr "Declaración Seek [Ejecución]"
#: 03020305.xhp
msgctxt ""
@@ -10671,7 +10671,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Runtime]\">Seek Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Declaración Seek [Runtime]\">Declaración Seek [Runtime]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Declaración Seek [Ejecución]\">Declaración Seek [Ejecución]</link>"
#: 03020305.xhp
msgctxt ""
@@ -10880,7 +10880,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ChDrive Statement [Runtime]"
-msgstr "Función ChDrive [Ejecución]"
+msgstr "Declaración ChDrive [Ejecución]"
#: 03020402.xhp
msgctxt ""
@@ -10897,7 +10897,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"ChDrive Statement [Runtime]\">ChDrive Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"Declaración ChDrive [Runtime]\">Declaración ChDrive [Ejecución]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"Declaración ChDrive [Ejecución]\">Declaración ChDrive [Ejecución]</link>"
#: 03020402.xhp
msgctxt ""
@@ -11502,7 +11502,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "FileCopy Statement [Runtime]"
-msgstr "Instrucción FileCopy [Ejecución]"
+msgstr "Declaración FileCopy [Ejecución]"
#: 03020406.xhp
msgctxt ""
@@ -11519,7 +11519,7 @@ msgctxt ""
"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"FileCopy Statement [Runtime]\">FileCopy Statement [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"Declaración FileCopy [Runtime]\">Declaración FileCopy [Ejecución]</link>"
+msgstr "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"Declaración FileCopy [Ejecución]\">Declaración FileCopy [Ejecución]</link>"
#: 03020406.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc.po b/source/es/helpcontent2/source/text/scalc.po
index b63a5debb5f..c2309a71d4d 100644
--- a/source/es/helpcontent2/source/text/scalc.po
+++ b/source/es/helpcontent2/source/text/scalc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-12-09 13:43+0000\n"
+"PO-Revision-Date: 2016-03-14 08: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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449668589.000000\n"
+"X-POOTLE-MTIME: 1457944207.000000\n"
#: main0000.xhp
msgctxt ""
@@ -612,7 +612,7 @@ msgctxt ""
"hd_id1387066\n"
"help.text"
msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
-msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Texto a Columnas</link>"
+msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Texto a columnas</link>"
#: main0112.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc/00.po b/source/es/helpcontent2/source/text/scalc/00.po
index 0827c30fa28..51a04d0eefc 100644
--- a/source/es/helpcontent2/source/text/scalc/00.po
+++ b/source/es/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-12-06 02:19+0000\n"
+"PO-Revision-Date: 2016-03-14 08: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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449368382.000000\n"
+"X-POOTLE-MTIME: 1457944220.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1241,7 +1241,7 @@ msgctxt ""
"par_id8366954\n"
"help.text"
msgid "<variable id=\"text2columns\">Choose <emph>Data - Text to Columns</emph></variable>"
-msgstr "<variable id=\"text2columns\">Seleccione <emph>Datos - Texto a Columnas</emph></variable>"
+msgstr "<variable id=\"text2columns\">Vaya a <emph>Datos ▸ Texto a columnas</emph></variable>"
#: 00000412.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc/01.po b/source/es/helpcontent2/source/text/scalc/01.po
index 305d845971a..c3258f105df 100644
--- a/source/es/helpcontent2/source/text/scalc/01.po
+++ b/source/es/helpcontent2/source/text/scalc/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2016-02-28 22:50+0000\n"
-"Last-Translator: Juan C. Sanz <juancsanzc@hotmail.com>\n"
+"PO-Revision-Date: 2016-03-14 08: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"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456699856.000000\n"
+"X-POOTLE-MTIME: 1457944660.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -43039,7 +43039,7 @@ msgctxt ""
"par_id2406201422405814\n"
"help.text"
msgid "This function is identical to GAMMADIST and was introduced for interoperability with other office suites."
-msgstr "Esta función es idéntica a DISTR.GAMMA y se ha introcucido para interoperatibilidad con otras suites."
+msgstr "Esta función es idéntica a DISTR.GAMMA y se ha introducido por motivos de interoperatividad con otros paquetes de oficina."
#: 04060182.xhp
msgctxt ""
@@ -43510,7 +43510,7 @@ msgctxt ""
"59\n"
"help.text"
msgid "<item type=\"input\">=Z.TEST(A2:A20; 9; 2)</item> returns the result of a z-test on a sample A2:A20 drawn from a population with known mean 9 and known standard deviation 2."
-msgstr "<item type=\"input\">TEST.Z(A2:A20;9;2)</item> devuelve el resultado de un test z de la muestra A2:A20 obtenido de una población con una media conocida de 9 y una disviación estándar de 2."
+msgstr "<item type=\"input\">=PRUEBA.Z(A2:A20;9;2)</item> devuelve el resultado de una prueba z de la muestra A2:A20 obtenida de una población con una media conocida de 9 y una desviación estándar de 2."
#: 04060182.xhp
msgctxt ""
@@ -43780,14 +43780,13 @@ msgid "Examples"
msgstr "Ejemplos"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2954904\n"
"131\n"
"help.text"
msgid "<item type=\"input\">=HYPGEOM.DIST(2;2;90;100;0)</item> yields 0.8090909091. If 90 out of 100 pieces of buttered toast fall from the table and hit the floor with the buttered side first, then if 2 pieces of buttered toast are dropped from the table, the probability is 81%, that both will strike buttered side first."
-msgstr "<item type=\"input\">=DISTR.HIPERGEOM(2;2;90;100)</item> da 0,81. Si 90 de cada 100 piezas de tostadas con mantequilla que caen de una mesa caen sobre el suelo con la parte con mantequilla primero, entonces si se caen 2 tostadas con mantequilla de la mesa, la probabilidad de que ambas caigan con la parte con mantequilla primero es del 81%."
+msgstr "<item type=\"input\">=DISTR.HIPERGEOM.N(2;2;90;100;0)</item> da 0,8090909091. Si 90 de cada 100 piezas de tostadas con mantequilla que caen de una mesa caen sobre el suelo con la parte con mantequilla primero, entonces si se caen 2 tostadas con mantequilla de la mesa, la probabilidad de que ambas caigan con la parte con mantequilla primero es del 81%."
#: 04060182.xhp
msgctxt ""
@@ -43796,7 +43795,7 @@ msgctxt ""
"131\n"
"help.text"
msgid "<item type=\"input\">=HYPGEOM.DIST(2;2;90;100;1)</item> yields 1."
-msgstr ""
+msgstr "<item type=\"input\">=DISTR.HIPERGEOM.N(2;2;90;100;1)</item> da 1."
#: 04060183.xhp
msgctxt ""
@@ -44065,33 +44064,30 @@ msgid "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> gives 0.29."
msgstr "<item type=\"input\">=INTERVALO.CONFIANZA(0.05;1.5;100)</item> da 0.29."
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"bm_id2953559\n"
"help.text"
msgid "<bookmark_value>CONFIDENCE.T function</bookmark_value>"
-msgstr "<bookmark_value>INTERVALO.CONFIANZA</bookmark_value>"
+msgstr "<bookmark_value>INTERVALO.CONFIANZA.T</bookmark_value>"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"hd_id2953559\n"
"20\n"
"help.text"
msgid "CONFIDENCE.T"
-msgstr "INTERVALO.CONFIANZA"
+msgstr "INTERVALO.CONFIANZA.T"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2953814\n"
"21\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_CONFIDENCE_T\">Returns the (1-alpha) confidence interval for a Student's t distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Calcula un intervalo de confianza (1 alfa) para distribución normal.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_CONFIDENCE_T\">Calcula un intervalo de confianza (1-alfa) para una distribución de estudiantes t.</ahelp>"
#: 04060183.xhp
msgctxt ""
@@ -44103,14 +44099,13 @@ msgid "Syntax"
msgstr "Sintaxis"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2947501\n"
"23\n"
"help.text"
msgid "CONFIDENCE.T(Alpha; StDev; Size)"
-msgstr "CONFIANZA(Alpha; Desv_estándar; Tamaño)"
+msgstr "INTERVALO.CONFIANZA.T(Alpha; Desv_estándar; Tamaño)"
#: 04060183.xhp
msgctxt ""
@@ -44149,14 +44144,13 @@ msgid "Example"
msgstr "Ejemplo"
#: 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\">=INTERVALO.CONFIANZA(0.05;1.5;100)</item> da 0.29."
+msgstr "<item type=\"input\">=INTERVALO.CONFIANZA.T(0.05;1.5;100)</item> da 0.2976325427."
#: 04060183.xhp
#, fuzzy
@@ -44436,7 +44430,7 @@ msgctxt ""
"40\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_COVARIANCE_P\">Returns the covariance of the product of paired deviations, for the entire population.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_COVARIANCE_P\">Devuelve la covarianza del producto de desviaciones por pares para toda la población.</ahelp>"
#: 04060183.xhp
msgctxt ""
@@ -44518,7 +44512,7 @@ msgctxt ""
"40\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_COVARIANCE_S\">Returns the covariance of the product of paired deviations, for a sample of the population.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_COVARIANCE_S\">Devuelve la covarianza del producto de desviaciones por pares para una muestra de la población.</ahelp>"
#: 04060183.xhp
msgctxt ""
@@ -44859,7 +44853,7 @@ msgctxt ""
"par_id290122405814\n"
"help.text"
msgid "This function is identical to LOGINV and was introduced for interoperability with other office suites."
-msgstr ""
+msgstr "Esta función es idéntica a INV.LOG y se ha introducido por motivos de interoperatividad con otros paquetes de oficina."
#: 04060183.xhp
msgctxt ""
@@ -45036,14 +45030,13 @@ msgid "<bookmark_value>LOGNORM.DIST function</bookmark_value><bookmark_value>log
msgstr "<bookmark_value>Función DISTR.LOG.NORM</bookmark_value><bookmark_value>distribución normal logarítmica</bookmark_value>"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"hd_id2908417\n"
"76\n"
"help.text"
msgid "LOGNORM.DIST"
-msgstr "DISTR.LOG.NORM"
+msgstr "DISTR.LOGNORM"
#: 04060183.xhp
msgctxt ""
@@ -45064,14 +45057,13 @@ msgid "Syntax"
msgstr "Sintaxis"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2900686\n"
"79\n"
"help.text"
msgid "LOGNORM.DIST(Number; Mean; StDev; Cumulative)"
-msgstr "DISTR.LOG.NORM(Número; Media; Desv_estándar; Acumulativa)"
+msgstr "DISTR.LOGNORM(Número; Media; Desv_estándar; Acumulada)"
#: 04060183.xhp
msgctxt ""
@@ -45092,23 +45084,21 @@ msgid "<emph>Mean</emph> (required) is the mean value of the standard logarithmi
msgstr "<emph>Media</emph> (obligatoria) es el valor medio de la distribución logarítmica estándar."
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2905991\n"
"82\n"
"help.text"
msgid "<emph>StDev</emph> (required) is the standard deviation of the standard logarithmic distribution."
-msgstr "<emph>Desv_estándar</emph> (opcional) es la desviación estándar de la distribución logarítmica estándar."
+msgstr "<emph>Desv_estándar</emph> (obligatorio) es la desviación estándar de la distribución logarítmica estándar."
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2905992\n"
"help.text"
msgid "<emph>Cumulative</emph> (required) = 0 calculates the density function, Cumulative = 1 calculates the distribution."
-msgstr "<emph>Acumulativa</emph> (opcional) = 0 calcula la función de densidad, Acumulativa = 1 calcula la distribución."
+msgstr "<emph>Acumulada</emph> (obligatorio) = 0 calcula la función de densidad; Acumulada = 1 calcula la distribución."
#: 04060183.xhp
msgctxt ""
@@ -45120,14 +45110,13 @@ msgid "Example"
msgstr "Ejemplo"
#: 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\">=DISTR.LOG.NORM(0.1;0;1)</item> retorna 0.01."
+msgstr "<item type=\"input\">=DISTR.LOGNORM(0,1;0;1)</item> devuelve 0,0106510993."
#: 04060184.xhp
msgctxt ""
@@ -45854,13 +45843,12 @@ msgid "<item type=\"input\">=MODE(A1:A50)</item>"
msgstr "<item type=\"input\">=MODO(A1:A50)</item>"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2953933\n"
"help.text"
msgid "<bookmark_value>MODE.SNGL function</bookmark_value><bookmark_value>most common value</bookmark_value>"
-msgstr "<bookmark_value>función MODA.VARIOS</bookmark_value><bookmark_value>valor más común</bookmark_value>"
+msgstr "<bookmark_value>función MODA.UNO</bookmark_value><bookmark_value>valor más común</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -45869,17 +45857,16 @@ msgctxt ""
"43\n"
"help.text"
msgid "MODE.SNGL"
-msgstr ""
+msgstr "MODA.UNO"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2953085\n"
"44\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MODAL_VALUE_MS\">Returns the most frequently occurring, or repetitive, value in an array or range of data.</ahelp> If there are several values with the same frequency, it returns the smallest value. An error occurs when a value doesn't appear twice."
-msgstr "<ahelp hid=\"HID_FUNC_MODALWERT\">Devuelve el valor más común de un grupo de datos.</ahelp> Si hay varios valores con la misma frecuencia, devuelve el inferior. Si ningún valor se repite dos veces, se muestra un mensaje de error."
+msgstr "<ahelp hid=\"HID_FUNC_MODAL_VALUE_MS\">Devuelve el valor más frecuente, o común, de una matriz o intervalo de datos.</ahelp> Si hay varios valores con la misma frecuencia, devuelve el inferior. Si ningún valor se repite dos veces se muestra un mensaje de error."
#: 04060184.xhp
msgctxt ""
@@ -45891,24 +45878,22 @@ msgid "Syntax"
msgstr "Sintaxis"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2955950\n"
"46\n"
"help.text"
msgid "MODE.SNGL(Number1; Number2; ...Number30)"
-msgstr "MODO(Número1; Número2; ...; Número30)"
+msgstr "MODA.UNO(Número1; Número2; …Número30)"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2950337\n"
"47\n"
"help.text"
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
-msgstr "<emph>Número1; Número2;... Número30</emph> son los valores o rangos numéricos."
+msgstr "<emph>Número1; Número2;… Número30</emph> son los valores o intervalos numéricos."
#: 04060184.xhp
msgctxt ""
@@ -45917,7 +45902,7 @@ msgctxt ""
"629\n"
"help.text"
msgid "If the data set contains no duplicate data points, MODE.SNGL returns the #VALUE! error value."
-msgstr ""
+msgstr "Si el conjunto de datos no contiene ningún duplicado, MODA.UNO devuelve el valor de error #VALOR!"
#: 04060184.xhp
msgctxt ""
@@ -45929,14 +45914,13 @@ msgid "Example"
msgstr "Ejemplo"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2953733\n"
"49\n"
"help.text"
msgid "<item type=\"input\">=MODE.SNGL(A1:A50)</item>"
-msgstr "<item type=\"input\">=MODO(A1:A50)</item>"
+msgstr "<item type=\"input\">=MODA.UNO(A1:A50)</item>"
#: 04060184.xhp
msgctxt ""
@@ -45953,7 +45937,7 @@ msgctxt ""
"43\n"
"help.text"
msgid "MODE.MULT"
-msgstr ""
+msgstr "MODA.VARIOS"
#: 04060184.xhp
msgctxt ""
@@ -45962,7 +45946,7 @@ msgctxt ""
"44\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_MODAL_VALUE_MULTI\">Returns a vertical array of the statistical modes (the most frequently occurring values) within a list of supplied numbers.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_MODAL_VALUE_MULTI\">Devuelve una matriz vertical de las modas estadísticas (los valores que se repiten con más frecuencia) en una lista de números que proporcione.</ahelp>"
#: 04060184.xhp
msgctxt ""
@@ -45974,24 +45958,22 @@ msgid "Syntax"
msgstr "Sintaxis"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2855950\n"
"46\n"
"help.text"
msgid "MODE.MULT(Number1; Number2; ...Number30)"
-msgstr "MODO(Número1; Número2; ...; Número30)"
+msgstr "MODA.VARIOS(Número1; Número2;… Número30)"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2850337\n"
"47\n"
"help.text"
msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
-msgstr "<emph>Número1; Número2;... Número30</emph> son los valores o rangos numéricos."
+msgstr "<emph>Número1; Número2;… Número30</emph> son los valores o intervalos numéricos."
#: 04060184.xhp
msgctxt ""
@@ -46000,7 +45982,7 @@ msgctxt ""
"629\n"
"help.text"
msgid "As the MODE.MULT function returns an array of values, it must be entered as an array formula. If the function is not entered as an array formula, only the first mode is returned, which is the same as using the MODE.SNGL function."
-msgstr ""
+msgstr "Debido a que la función MODA.VARIOS devuelve una matriz de valores, debe insertarse como una fórmula de matriz. Si la función no se inserta de este modo se devolverá solo la primera moda, lo cual es el mismo resultado que se obtendrá al utilizar MODA.UNO."
#: 04060184.xhp
msgctxt ""
@@ -46012,14 +45994,13 @@ msgid "Example"
msgstr "Ejemplo"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2853733\n"
"49\n"
"help.text"
msgid "<item type=\"input\">=MODE.MULT(A1:A50)</item>"
-msgstr "<item type=\"input\">=MODO(A1:A50)</item>"
+msgstr "<item type=\"input\">=MODA.VARIOS(A1:A50)</item>"
#: 04060184.xhp
msgctxt ""
@@ -46130,14 +46111,13 @@ msgid "NEGBINOM.DIST"
msgstr "NEGBINOMDIST"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2955437\n"
"52\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NEGBINOMDIST_MS\">Returns the negative binomial density or distribution function.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Devuelve la distribución binomial negativa.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NEGBINOMDIST_MS\">Devuelve la función de distribución o de densidad binomial negativa.</ahelp>"
#: 04060184.xhp
msgctxt ""
@@ -46185,14 +46165,13 @@ msgid "<emph>SP</emph> is the probability of the success of an attempt."
msgstr "<emph>prob_éxito</emph> es la probabilidad del éxito de un intento."
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2948879\n"
"57\n"
"help.text"
msgid "<emph>Cumulative</emph> = 0 calculates the density function, <emph>Cumulative</emph> = 1 calculates the distribution."
-msgstr "<emph>Acumulativa</emph> (opcional) = 0 calcula la función de densidad, Acumulativa = 1 calcula la distribución."
+msgstr "<emph>Acumulada</emph> = 0 calcula la función de densidad; <emph>Acumulada</emph> = 1 calcula la distribución."
#: 04060184.xhp
msgctxt ""
@@ -46204,14 +46183,13 @@ msgid "Example"
msgstr "Ejemplo"
#: 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> devuelve 0,25."
+msgstr "<item type=\"input\">=NEGBINOM.DIST(1;1;0.5;0)</item> devuelve 0,25."
#: 04060184.xhp
#, fuzzy
@@ -46322,24 +46300,22 @@ msgid "<bookmark_value>NORM.INV function</bookmark_value><bookmark_value>normal
msgstr "<bookmark_value>DISTR.NORM.INV</bookmark_value><bookmark_value>distribución normal;inversa de</bookmark_value>"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"hd_id2955516\n"
"61\n"
"help.text"
msgid "NORM.INV"
-msgstr "DISTR.NORM.INV"
+msgstr "INV.NORM"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2954634\n"
"62\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NORMINV_MS\">Returns the inverse of the normal cumulative distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NORMINV\">Devuelve el inverso de la distribución normal acumulativa.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NORMINV_MS\">Devuelve la inversa de la distribución normal acumulada.</ahelp>"
#: 04060184.xhp
msgctxt ""
@@ -46351,14 +46327,13 @@ msgid "Syntax"
msgstr "Sintaxis"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2947534\n"
"64\n"
"help.text"
msgid "NORM.INV(Number; Mean; StDev)"
-msgstr "DISTR.NORM.INV(Número; Media; Desv_estándar)"
+msgstr "INV.NORM(Número; Media; Desv_estándar)"
#: 04060184.xhp
msgctxt ""
@@ -46379,7 +46354,6 @@ msgid "<emph>Mean</emph> represents the mean value in the normal distribution."
msgstr "<emph>Media</emph> es el valor medio de la distribución normal."
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2948594\n"
@@ -46398,14 +46372,13 @@ msgid "Example"
msgstr "Ejemplo"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2953921\n"
"69\n"
"help.text"
msgid "<item type=\"input\">=NORM.INV(0.9;63;5)</item> returns 69.4077578277. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams."
-msgstr "<item type=\"input\">=DISTR.NORM.INV(0,9;63;5)</item> devuelve 69,41. Si un huevo de gallina pesa una media de 63 gramos, con una desviación estándar de 5, la probabilidad de que un huevo no pese más de 69,41 gramos es del 90%."
+msgstr "<item type=\"input\">=INV.NORM(0,9;63;5)</item> devuelve 69,4077578277. Si un huevo de gallina pesa una media de 63 gramos, con una desviación estándar de 5, la probabilidad de que un huevo no pese más de 69,41 gramos es del 90 %."
#: 04060184.xhp
msgctxt ""
@@ -46515,33 +46488,30 @@ msgid "<item type=\"input\">=NORMDIST(70;63;5;1)</item> returns 0.92."
msgstr "<item type=\"input\">=DISTR.NORM(70;63;5;1)</item> devuelve 0,92."
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2913722\n"
"help.text"
msgid "<bookmark_value>NORM.DIST function</bookmark_value><bookmark_value>density function</bookmark_value>"
-msgstr "<bookmark_value>DISTR.NORM</bookmark_value><bookmark_value>función de densidad</bookmark_value>"
+msgstr "<bookmark_value>función DISTR.NORM.N</bookmark_value><bookmark_value>función de densidad</bookmark_value>"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"hd_id2913722\n"
"71\n"
"help.text"
msgid "NORM.DIST"
-msgstr "DISTR.NORM"
+msgstr "DISTR.NORM.N"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2910386\n"
"72\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_NORMDIST_MS\">Returns the density function or the normal cumulative distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_NORMVERT\">Devuelve la función de densidad o la distribución acumulativa normal.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_NORMDIST_MS\">Devuelve la función de densidad o la distribución acumulada normal.</ahelp>"
#: 04060184.xhp
msgctxt ""
@@ -46553,24 +46523,22 @@ msgid "Syntax"
msgstr "Sintaxis"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2910613\n"
"74\n"
"help.text"
msgid "NORM.DIST(Number; Mean; StDev; C)"
-msgstr "DISTR.NORM(Número; Media; Desv_estándar; C)"
+msgstr "DISTR.NORM.N(Número; Media; Desv_estándar; C)"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2919820\n"
"75\n"
"help.text"
msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
-msgstr "<emph>Número</emph> es el valor de la distribución en la que se basará para calcular el valor de la distribución normal."
+msgstr "<emph>Número</emph> es el valor de la distribución a partir del cual se calculará la distribución normal."
#: 04060184.xhp
msgctxt ""
@@ -46591,14 +46559,13 @@ msgid "<emph>StDev</emph> is the standard deviation of the distribution."
msgstr "<emph>Desv_estándar</emph> es la desviación estándar de la distribución."
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2915080\n"
"78\n"
"help.text"
msgid "<emph>C</emph> = 0 calculates the density function, <emph>C</emph> = 1 calculates the distribution."
-msgstr "<emph>C</emph> es opcional. <emph>C</emph> = 0 calcula la función de densidad y <emph>C</emph> = 1 calcula la distribución."
+msgstr "<emph>C</emph> = 0 calcula la función de densidad; <emph>C</emph> = 1 calcula la distribución."
#: 04060184.xhp
msgctxt ""
@@ -46903,7 +46870,7 @@ msgctxt ""
"102\n"
"help.text"
msgid "POISSON.DIST"
-msgstr ""
+msgstr "DISTR.POISSON"
#: 04060184.xhp
msgctxt ""
@@ -46924,27 +46891,24 @@ msgid "Syntax"
msgstr "Sintaxis"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2946093\n"
"105\n"
"help.text"
msgid "POISSON.DIST(Number; Mean; C)"
-msgstr "POISSON(x; media; acumulado)"
+msgstr "DISTR.POISSON(Número; Media; C)"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2947253\n"
"106\n"
"help.text"
msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
-msgstr "<emph>Número</emph> representa el valor en el que se basa para calcular la distribución de Poisson."
+msgstr "<emph>Número</emph> representa el valor a partir del cual se calculará la distribución de Poisson."
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2951177\n"
@@ -46973,14 +46937,13 @@ msgid "Example"
msgstr "Ejemplo"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2950113\n"
"110\n"
"help.text"
msgid "<item type=\"input\">=POISSON.DIST(60;50;1)</item> returns 0.9278398202."
-msgstr "<item type=\"input\">=POISSON(60;50;1)</item> devuelve 0,93."
+msgstr "<item type=\"input\">=DISTR.POISSON(60;50;1)</item> devuelve 0,9278398202."
#: 04060184.xhp
msgctxt ""
@@ -47063,13 +47026,12 @@ msgid "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> represents the value
msgstr "<item type=\"input\">=PERCENTIL(A1:A50;0,1)</item> representa el valor en el grupo de datos, que equivale al 10% de la escala de todos los datos contenidos en A1:A50."
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2853100\n"
"help.text"
msgid "<bookmark_value>PERCENTILE.EXC function</bookmark_value>"
-msgstr "<bookmark_value>PERCENTIL</bookmark_value>"
+msgstr "<bookmark_value>función PERCENTIL.EXC</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -47116,14 +47078,13 @@ msgid "Syntax"
msgstr "Sintaxis"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2848813\n"
"115\n"
"help.text"
msgid "PERCENTILE.EXC(Data; Alpha)"
-msgstr "PERCENTIL(Datos; Alpha)"
+msgstr "PERCENTIL.EXC(Datos; Alfa)"
#: 04060184.xhp
msgctxt ""
@@ -47162,13 +47123,12 @@ msgid "<item type=\"input\">=PERCENTILE.EXC(A1:A50;10%)</item> represents the va
msgstr "<item type=\"input\">=PERCENTIL.EXC(A1:A50;10%)</item> representa el valor en el conjunto de datos, que equivale al 10 % de la escala de todos los datos en A1:A50."
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2953100\n"
"help.text"
msgid "<bookmark_value>PERCENTILE.INC function</bookmark_value>"
-msgstr "<bookmark_value>PERCENTIL</bookmark_value>"
+msgstr "<bookmark_value>función PERCENTIL.INC</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -47207,14 +47167,13 @@ msgid "Syntax"
msgstr "Sintaxis"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2948813\n"
"115\n"
"help.text"
msgid "PERCENTILE.INC(Data; Alpha)"
-msgstr "PERCENTIL(Datos; Alpha)"
+msgstr "PERCENTIL.INC(Datos; Alfa)"
#: 04060184.xhp
msgctxt ""
@@ -47358,7 +47317,7 @@ msgctxt ""
"122\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_PERCENTRANK_EXC\"> Returns the relative position, between 0 and 1 (exclusive), of a specified value within a supplied array.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_PERCENTRANK_EXC\">Devuelve la posición relativa, entre 0 y 1 (excluida), de un valor especificado en una matriz de datos dada.</ahelp>"
#: 04060184.xhp
msgctxt ""
@@ -47612,13 +47571,12 @@ msgid "<item type=\"input\">=QUARTILE(A1:A50;2)</item> returns the value of whic
msgstr "<item type=\"input\">=CUARTIL(A1:A50;2)</item> devuelve el valor cuyo 50% de la escala corresponde a los valores de inferior a superior en el área A1:A50."
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2866442\n"
"help.text"
msgid "<bookmark_value>QUARTILE.EXC function</bookmark_value>"
-msgstr "<bookmark_value>CUARTIL</bookmark_value>"
+msgstr "<bookmark_value>función CUARTIL.EXC</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -47636,7 +47594,7 @@ msgctxt ""
"131\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_QUARTILE_EXC\">Returns a requested quartile of a supplied range of values, based on a percentile range of 0 to 1 exclusive.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_QUARTILE_EXC\">Devuelve el cuartil solicitado a partir de un intervalo de valores proporcionado, basándose en un intervalo de percentiles de 0 a 1 exclusivo.</ahelp>"
#: 04060184.xhp
msgctxt ""
@@ -47672,7 +47630,7 @@ msgctxt ""
"134\n"
"help.text"
msgid "<emph>Data</emph> represents the range of data values for which you want to calculate the specified quartile."
-msgstr ""
+msgstr "<emph>Datos</emph> representa el intervalo de valores de datos de los cuales quiere calcular el cuartil indicado."
#: 04060184.xhp
msgctxt ""
@@ -47681,7 +47639,7 @@ msgctxt ""
"135\n"
"help.text"
msgid "<emph>Type</emph> An integer between 1 and 3, representing the required quartile. (if type = 1 or 3, the supplied array must contain more than 2 values)"
-msgstr ""
+msgstr "<emph>Tipo</emph>, un número entero entre 1 y 3, representa el cuartil solicitado. (Si Tipo = 1 o 3, la matriz de datos proporcionada debe contener más de dos valores)"
#: 04060184.xhp
msgctxt ""
@@ -47693,23 +47651,21 @@ msgid "Example"
msgstr "Ejemplo"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2859276\n"
"137\n"
"help.text"
msgid "<item type=\"input\">=QUARTILE.EXC(A1:A50;2)</item> returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50."
-msgstr "<item type=\"input\">=CUARTIL(A1:A50;2)</item> devuelve el valor cuyo 50% de la escala corresponde a los valores de inferior a superior en el área A1:A50."
+msgstr "<item type=\"input\">=CUARTIL.EXC(A1:A50;2)</item> devuelve el valor cuyo 50 % de la escala corresponde a los valores de inferior a superior en el intervalo A1:A50."
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"bm_id2966442\n"
"help.text"
msgid "<bookmark_value>QUARTILE.INC function</bookmark_value>"
-msgstr "<bookmark_value>CUARTIL</bookmark_value>"
+msgstr "<bookmark_value>función CUARTIL.INC</bookmark_value>"
#: 04060184.xhp
msgctxt ""
@@ -47747,14 +47703,13 @@ msgid "Syntax"
msgstr "Sintaxis"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2953684\n"
"133\n"
"help.text"
msgid "QUARTILE.INC(Data; Type)"
-msgstr "CUARTIL(Datos; Cuartil)"
+msgstr "CUARTIL.INC(Datos; Tipo)"
#: 04060184.xhp
msgctxt ""
@@ -51145,7 +51100,6 @@ msgid "Example"
msgstr "Ejemplo"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2946077\n"
@@ -52522,7 +52476,6 @@ msgid "Function List"
msgstr "Lista de funciones"
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"bm_id3154126\n"
@@ -52556,7 +52509,6 @@ msgid "The <emph>Function List</emph> window is a resizable <link href=\"text/sh
msgstr "La ventana <emph>Lista de funciones</emph> es una <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"ventana acoplable y de tamaño modificable\">ventana acoplable y de tamaño modificable</link>. Utilícela para introducir rápidamente funciones en la hoja de cálculo. Al pulsar dos veces en uno de los elementos de la lista de funciones se inserta la función correspondiente con todos sus parámetros."
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"hd_id3145799\n"
@@ -52565,7 +52517,6 @@ msgid "Category List"
msgstr "Lista de categorías"
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"hd_id3153160\n"
@@ -52583,7 +52534,6 @@ msgid "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Displays the available
msgstr "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Muestra las funciones disponibles.</ahelp> Al seleccionar una función se muestra una breve descripción en el área situada debajo del listado. Para insertar la función seleccionada, haga doble clic en ella o seleccione el símbolo <emph>Insertar la función en la hoja de cálculo</emph>."
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"hd_id3146971\n"
@@ -52600,7 +52550,6 @@ msgid "<image id=\"img_id3159267\" src=\"sc/res/fx.png\"><alt id=\"alt_id3159267
msgstr "<image id=\"img_id3159267\" src=\"sc/res/fx.png\"><alt id=\"alt_id3159267\">Icono</alt></image>"
#: 04080000.xhp
-#, fuzzy
msgctxt ""
"04080000.xhp\n"
"par_id3147345\n"
@@ -54243,7 +54192,6 @@ msgid "Styles and Formatting"
msgstr "Estilo y formato"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"bm_id3150447\n"
@@ -54252,13 +54200,12 @@ msgid "<bookmark_value>Stylist, see Styles and Formatting window</bookmark_value
msgstr "<bookmark_value>Estilista, véase la ventana Estilo y formato</bookmark_value> <bookmark_value>ventana Estilo y formato</bookmark_value> <bookmark_value>formatos;ventana Estilo y formato</bookmark_value> <bookmark_value>formato;ventana Estilo y formato</bookmark_value> <bookmark_value>bote de pintura para aplicar estilos</bookmark_value>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3150447\n"
"help.text"
msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
-msgstr "<link href=\"text/scalc/01/05100000.xhp\" name=\"Estilo y formato\">Estilo y formato</link>"
+msgstr "<link href=\"text/scalc/01/05100000.xhp\" name=\"Estilos y formato\">Estilos y formato</link>"
#: 05100000.xhp
msgctxt ""
@@ -54269,16 +54216,14 @@ msgid "Use the Styles and Formatting deck of the Sidebar to assign styles to cel
msgstr "Utilice la sección «Estilos y formato» de la barra lateral para asignar estilos a las celdas y las páginas. Puede aplicar, actualizar y modificar estilos o crear nuevos."
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3149665\n"
"help.text"
msgid "The Styles and Formatting <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link> can remain open while editing the document."
-msgstr "La ventana acoplable <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"\">ventana acoplable</link> Estilo y formato puede estar abierta mientras se edita el documento."
+msgstr "La <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"ventana acoplable\">ventana acoplable</link> Estilos y formato puede permanecer abierta mientras se edita el documento."
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3150012\n"
@@ -54295,16 +54240,14 @@ msgid "Select the cell or cell range."
msgstr "Seleccione la celda o el intervalo de celdas."
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3145749\n"
"help.text"
msgid "Double-click the style in the Styles and Formatting window."
-msgstr "Haga doble clic en el estilo en la ventana Estilo y formato."
+msgstr "Pulse dos veces en el estilo en la ventana Estilos y formato."
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3153877\n"
@@ -54329,7 +54272,6 @@ msgid "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\"><alt id=\"alt_id31537
msgstr "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\"><alt id=\"alt_id3153714\">Icono</alt></image>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3154255\n"
@@ -54338,7 +54280,6 @@ msgid "Cell Styles"
msgstr "Estilos de celda"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3153963\n"
@@ -54363,7 +54304,6 @@ msgid "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\"><alt id=\"alt_id31
msgstr "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\"><alt id=\"alt_id3149814\">Icono</alt></image>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3150361\n"
@@ -54372,7 +54312,6 @@ msgid "Page Styles"
msgstr "Estilos de página"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3150202\n"
@@ -54381,7 +54320,6 @@ msgid "Fill Format Mode"
msgstr "Modo de relleno de formato"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3155531\n"
@@ -54398,7 +54336,6 @@ msgid "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\"><alt id=\"alt_id
msgstr "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\"><alt id=\"alt_id3153068\">Icono</alt></image>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3156198\n"
@@ -54407,25 +54344,22 @@ msgid "Fill Format Mode"
msgstr "Modo de relleno de formato"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3148870\n"
"help.text"
msgid "How to apply a new style with the paint can:"
-msgstr "Cómo aplicar estilos mediante el símbolo bote de pintura:"
+msgstr "Cómo aplicar estilos mediante el icono de la lata de pintura:"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3145078\n"
"help.text"
msgid "Select the desired style from the Styles and Formatting window."
-msgstr "Seleccione un estilo en la ventana Estilo y formato."
+msgstr "Seleccione el estilo deseado en la ventana Estilos y formato."
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3159098\n"
@@ -54434,16 +54368,14 @@ msgid "Click the <emph>Fill Format Mode</emph> icon."
msgstr "Pulse en el icono <emph>Modo de relleno de formato</emph>."
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3148609\n"
"help.text"
msgid "Click a cell to format it, or drag your mouse over a certain range to format the whole range. Repeat this action for other cells and ranges."
-msgstr "Pulse la celda que desee formatear o arrastre el ratón sobre un área para dar formato a ésta. Repita la acción para otras celdas y rangos."
+msgstr "Pulse en la celda que quiera formatear o arrastre el ratón sobre un intervalo para dar formato a este. Repita la acción para otras celdas e intervalos."
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3149438\n"
@@ -54452,22 +54384,20 @@ msgid "Click the <emph>Fill Format Mode</emph> again to exit this mode."
msgstr "Pulse de nuevo en el icono <emph>Modo de relleno de formato</emph> para salir de este modo."
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3153975\n"
"help.text"
msgid "New Style from Selection"
-msgstr "Nuevo estilo a partir de la selección"
+msgstr "Estilo nuevo a partir de selección"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3149499\n"
"help.text"
msgid "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\">Creates a new style based on the formatting of a selected object.</ahelp> Assign a name for the style in the <link href=\"text/shared/01/05140100.xhp\" name=\"Create Style\">Create Style</link> dialog."
-msgstr "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\">Crea un estilo nuevo basado en el formato del objeto seleccionado.</ahelp> Asigne un nombre al estilo en el diálogo <link href=\"text/shared/01/05140100.xhp\" name=\"Crear estilo\">Crear estilo</link>."
+msgstr "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\">Crea un estilo nuevo a partir del formato del objeto seleccionado.</ahelp> Asigne un nombre al estilo en el cuadro <link href=\"text/shared/01/05140100.xhp\" name=\"Crear estilo\">Crear estilo</link>."
#: 05100000.xhp
msgctxt ""
@@ -54478,16 +54408,14 @@ msgid "<image id=\"img_id3154649\" src=\"cmd/sc_stylenewbyexample.png\"><alt id=
msgstr "<image id=\"img_id3154649\" src=\"cmd/sc_stylenewbyexample.png\"><alt id=\"alt_id3154649\">Icono</alt></image>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3146963\n"
"help.text"
msgid "New Style from Selection"
-msgstr "Nuevo estilo a partir de la selección"
+msgstr "Estilo nuevo a partir de selección"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3153813\n"
@@ -54496,13 +54424,12 @@ msgid "Update Style"
msgstr "Actualizar estilo"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3154707\n"
"help.text"
msgid "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles and Formatting window with the current formatting of the selected object.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">Actualiza el estilo seleccionado en la ventana Estilo y formato con el formato actual del objeto seleccionado.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">Actualiza el estilo seleccionado en la ventana Estilos y formato con el formato actual del objeto seleccionado.</ahelp>"
#: 05100000.xhp
msgctxt ""
@@ -54513,7 +54440,6 @@ msgid "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\"><alt
msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\"><alt id=\"alt_id3155754\">Icono</alt></image>"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3147501\n"
@@ -54546,7 +54472,6 @@ msgid "In the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"con
msgstr "En el <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"menú contextual\">menú contextual</link> se pueden elegir los comandos para crear un estilo nuevo, borrar alguno creado por el usuario o modificar el estilo seleccionado."
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"hd_id3149053\n"
@@ -54555,13 +54480,12 @@ msgid "Style Groups"
msgstr "Grupos de estilos"
#: 05100000.xhp
-#, fuzzy
msgctxt ""
"05100000.xhp\n"
"par_id3147299\n"
"help.text"
msgid "<ahelp hid=\"HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
-msgstr "<ahelp hid=\"HID_TEMPLATE_FILTER\">Enumera los grupos de estilos disponibles.</ahelp>"
+msgstr "<ahelp hid=\"HID_TEMPLATE_FILTER\">Muestra los grupos de estilos disponibles.</ahelp>"
#: 05100100.xhp
msgctxt ""
@@ -56571,13 +56495,12 @@ msgid "Split Window"
msgstr ""
#: 07080000.xhp
-#, fuzzy
msgctxt ""
"07080000.xhp\n"
"hd_id3163800\n"
"help.text"
msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">Split Window</link>"
-msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Dividir\">Dividir</link>"
+msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"Dividir\">Dividir ventana</link>"
#: 07080000.xhp
msgctxt ""
@@ -56588,7 +56511,6 @@ msgid "<ahelp hid=\".\">Divides the current window at the top left corner of the
msgstr "<ahelp hid=\".\">Divide la ventana actual en la esquina superior izquierda de la celda activa.</ahelp>"
#: 07080000.xhp
-#, fuzzy
msgctxt ""
"07080000.xhp\n"
"par_id3154910\n"
@@ -56597,13 +56519,12 @@ msgid "You can also use the mouse to split the window horizontally or vertically
msgstr "También puede utilizarse el ratón para dividir la ventana en sentido horizontal o vertical. Para ello, arrastre hacia la ventana la línea negra gruesa situada justo encima de la barra de desplazamiento vertical o a la derecha de la barra de desplazamiento horizontal. El lugar de división de la ventana quedará indicado mediante una línea negra gruesa."
#: 07080000.xhp
-#, fuzzy
msgctxt ""
"07080000.xhp\n"
"par_id3149263\n"
"help.text"
msgid "A split window has its own scrollbars in each partial section; by contrast, <link href=\"text/scalc/01/07090000.xhp\" name=\"fixed window sections\">fixed window sections</link> are not scrollable."
-msgstr "Una ventana dividida contiene barras de desplazamiento propias en cada área, mientras que un <link href=\"text/scalc/01/07090000.xhp\" name=\"área de ventana fija\">área de ventana fija</link> no dispone de ellas."
+msgstr "Una ventana dividida contiene barras de desplazamiento propias en cada sección, mientras que un <link href=\"text/scalc/01/07090000.xhp\" name=\"área de ventana fija\">área de ventana fija</link> no dispone de ellas."
#: 07090000.xhp
msgctxt ""
@@ -56614,13 +56535,12 @@ msgid "Freeze Rows and Columns"
msgstr ""
#: 07090000.xhp
-#, fuzzy
msgctxt ""
"07090000.xhp\n"
"hd_id3150517\n"
"help.text"
msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Freeze Rows and Columns</link>"
-msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Fijar\">Fijar</link>"
+msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"Inmovilizar\">Inmovilizar filas y columnas</link>"
#: 07090000.xhp
msgctxt ""
@@ -59934,7 +59854,6 @@ msgid "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/val3\" visibility=\"visib
msgstr "<ahelp hid=\"modules/scalc/ui/pivotfilterdialog/val3\" visibility=\"visible\">Seleccione el valor que desea comparar con el campo seleccionado.</ahelp>"
#: 12090103.xhp
-#, fuzzy
msgctxt ""
"12090103.xhp\n"
"hd_id3146980\n"
@@ -60023,7 +59942,6 @@ msgid "If the <emph>Regular Expression</emph> check box is selected, you can use
msgstr "Si se selecciona la casilla de verificación <emph>Expresión regular</emph>, se pueden utilizar en las comparaciones los operadores IGUAL (=) y DISTINTO DE (<>). También pueden utilizarse las funciones siguientes: BDCONTARA, BDEXTRAER, COINCIDIR, CONTAR.SI, SUMAR.SI, BUSCAR, BUSCARV y BUSCARH."
#: 12090104.xhp
-#, fuzzy
msgctxt ""
"12090104.xhp\n"
"hd_id3153379\n"
@@ -60041,7 +59959,6 @@ msgid "<ahelp hid=\".\" visibility=\"visible\">Excludes duplicate rows in the li
msgstr "<ahelp hid=\".\" visibility=\"visible\">Excluye las filas duplicadas en la lista de datos filtrados.</ahelp>"
#: 12090104.xhp
-#, fuzzy
msgctxt ""
"12090104.xhp\n"
"hd_id3156282\n"
@@ -61755,7 +61672,6 @@ msgid "Examples Dataset for a family of the AVERAGE"
msgstr ""
#: ex_data_stat_func.xhp
-#, fuzzy
msgctxt ""
"ex_data_stat_func.xhp\n"
"hd_id2657394931588\n"
@@ -61908,7 +61824,6 @@ msgid "<ahelp hid=\".\">Switches <emph>Edit Points</emph> mode for an inserted f
msgstr "<ahelp hid=\".\">Alterna el modo<emph>Editar puntos</emph> para activar y desactivar una línea a mano alzada insertada.</ahelp>"
#: ful_func.xhp
-#, fuzzy
msgctxt ""
"ful_func.xhp\n"
"hd_id126511265112651\n"
@@ -61917,7 +61832,6 @@ msgid "Syntax"
msgstr "Sintaxis"
#: ful_func.xhp
-#, fuzzy
msgctxt ""
"ful_func.xhp\n"
"hd_id980889808898088\n"
@@ -61982,13 +61896,12 @@ msgid "AGGREGATE function"
msgstr ""
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"bm_id126123001625791\n"
"help.text"
msgid "<bookmark_value>AGGREGATE function</bookmark_value>"
-msgstr "<bookmark_value>ÁREAS</bookmark_value>"
+msgstr "<bookmark_value>función AGREGAR</bookmark_value>"
#: func_aggregate.xhp
msgctxt ""
@@ -62015,7 +61928,6 @@ msgid "AGGREGATE function is applied to vertical ranges of data with activated A
msgstr ""
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"hd_id239693194826384\n"
@@ -62056,7 +61968,6 @@ msgid "<emph>Function</emph> – obligatory argument. A function index or a refe
msgstr "<emph>Función</emph> (argumento obligatorio): un índice de función o una referencia a una celda cuyo valor esté entre 1 y 19, conforme a la tabla siguiente."
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511454963\n"
@@ -62073,7 +61984,6 @@ msgid "Function applied"
msgstr "Función aplicada"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360043\n"
@@ -62082,7 +61992,6 @@ msgid "AVERAGE"
msgstr "PROMEDIO"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id230920151136007\n"
@@ -62091,7 +62000,6 @@ msgid "COUNT"
msgstr "CONTAR"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360018\n"
@@ -62100,7 +62008,6 @@ msgid "COUNTA"
msgstr "CONTARA"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360026\n"
@@ -62109,7 +62016,6 @@ msgid "MAX"
msgstr "MÁX"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360078\n"
@@ -62118,7 +62024,6 @@ msgid "MIN"
msgstr "MÍN"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360087\n"
@@ -62145,7 +62050,6 @@ msgid "STDEV.P"
msgstr "DESVESTP"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360199\n"
@@ -62154,25 +62058,22 @@ msgid "SUM"
msgstr "SUMA"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360174\n"
"help.text"
msgid "VAR.S"
-msgstr "VARP"
+msgstr "VAR.S"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360120\n"
"help.text"
msgid "VAR.P"
-msgstr "VARP"
+msgstr "VAR.P"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360122\n"
@@ -62189,7 +62090,6 @@ msgid "MODE.SNGL"
msgstr ""
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360180\n"
@@ -62198,7 +62098,6 @@ msgid "LARGE"
msgstr "K.ESIMO.MAYOR"
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id2309201511360150\n"
@@ -62375,7 +62274,6 @@ msgid "If the second argument is necessary, but not specified, the function retu
msgstr ""
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"hd_id198071265128228\n"
@@ -62408,7 +62306,6 @@ msgid "<emph>ColumnThree</emph>"
msgstr ""
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"par_id27530261624700\n"
@@ -62425,7 +62322,6 @@ msgid "3"
msgstr ""
#: func_aggregate.xhp
-#, fuzzy
msgctxt ""
"func_aggregate.xhp\n"
"id_par29987248418152\n"
@@ -62514,13 +62410,12 @@ msgid "AVERAGEIF function"
msgstr "Función PROMEDIO.SI"
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"bm_id237812197829662\n"
"help.text"
msgid "<bookmark_value>AVERAGEIF function</bookmark_value> <bookmark_value>arithmetic mean;satisfying condition</bookmark_value>"
-msgstr "<bookmark_value>DESVPROM</bookmark_value><bookmark_value>promedios;funciones estadísticas</bookmark_value>"
+msgstr "<bookmark_value>función PROMEDIO.SI</bookmark_value> <bookmark_value>media aritmética;satisfacer condiciones</bookmark_value>"
#: func_averageif.xhp
msgctxt ""
@@ -62539,7 +62434,6 @@ msgid "<ahelp hid=\".\"><variable id=\"averageif_des\">Returns the arithmetic me
msgstr "<ahelp hid=\".\"><variable id=\"averageif_des\">Devuelve la media aritmática de todas las celdas en un intervalo que satisfaga una condición dada. La función PROMEDIO.SI suma todos los resultados que coincidan con la prueba lógica y divide esta suma por la cantidad de valores seleccionados.</variable></ahelp>"
#: func_averageif.xhp
-#, fuzzy
msgctxt ""
"func_averageif.xhp\n"
"hd_id210572014129502\n"
@@ -62836,13 +62730,12 @@ msgid "AVERAGEIFS function"
msgstr "Función PROMEDIO.SI.CONJUNTO"
#: func_averageifs.xhp
-#, fuzzy
msgctxt ""
"func_averageifs.xhp\n"
"bm_id536715367153671\n"
"help.text"
msgid "<bookmark_value>AVERAGEIFS function</bookmark_value> <bookmark_value>arithmetic mean;satisfying conditions</bookmark_value>"
-msgstr "<bookmark_value>DESVPROM</bookmark_value><bookmark_value>promedios;funciones estadísticas</bookmark_value>"
+msgstr "<bookmark_value>función PROMEDIO.SI.CONJUNTO</bookmark_value> <bookmark_value>media aritmética;satisfacer condiciones</bookmark_value>"
#: func_averageifs.xhp
msgctxt ""
@@ -62861,7 +62754,6 @@ msgid "<ahelp hid=\".\"><variable id=\"averageifs_des\">Returns the arithmetic m
msgstr "<ahelp hid=\".\"><variable id=\"averageifs_des\">Devuelve la media aritmética de todas las celdas en un intervalo que satisfagan varios criterios. La función PROMEDIO.SI.CONJUNTO suma todos los resultados que coincidan con comprobaciones lógicas y divide esta suma por la cantidad de valores seleccionados.</variable></ahelp>"
#: func_averageifs.xhp
-#, fuzzy
msgctxt ""
"func_averageifs.xhp\n"
"hd_id538895388953889\n"
@@ -63096,7 +62988,6 @@ msgid "<ahelp hid=\".\"><variable id=\"countifs_des\">Returns the count of rows
msgstr ""
#: func_countifs.xhp
-#, fuzzy
msgctxt ""
"func_countifs.xhp\n"
"hd_id465746574657\n"
@@ -64346,13 +64237,12 @@ msgid "ERROR.TYPE function"
msgstr ""
#: func_error_type.xhp
-#, fuzzy
msgctxt ""
"func_error_type.xhp\n"
"bm_id346793467934679\n"
"help.text"
msgid "<bookmark_value>ERROR.TYPE function</bookmark_value> <bookmark_value>index of the Error type</bookmark_value>"
-msgstr "<bookmark_value>MINVERSA</bookmark_value><bookmark_value>matrices inversas</bookmark_value>"
+msgstr "<bookmark_value>función TIPO.DE.ERROR</bookmark_value> <bookmark_value>índice del tipo de error</bookmark_value>"
#: func_error_type.xhp
msgctxt ""
@@ -64371,7 +64261,6 @@ msgid "<ahelp hid=\".\"><variable id=\"error_type_des\">Returns a number represe
msgstr ""
#: func_error_type.xhp
-#, fuzzy
msgctxt ""
"func_error_type.xhp\n"
"hd_id351323513235132\n"
@@ -64420,7 +64309,6 @@ msgid "Err:511"
msgstr ""
#: func_error_type.xhp
-#, fuzzy
msgctxt ""
"func_error_type.xhp\n"
"par_id121020152053148760\n"
@@ -64429,7 +64317,6 @@ msgid "#DIV/0!"
msgstr "#DIV/0!"
#: func_error_type.xhp
-#, fuzzy
msgctxt ""
"func_error_type.xhp\n"
"par_id121020152053296785\n"
@@ -64462,7 +64349,6 @@ msgid "#NUM!"
msgstr ""
#: func_error_type.xhp
-#, fuzzy
msgctxt ""
"func_error_type.xhp\n"
"par_id121020152054007072\n"
@@ -64479,7 +64365,6 @@ msgid "Anything else"
msgstr ""
#: func_error_type.xhp
-#, fuzzy
msgctxt ""
"func_error_type.xhp\n"
"par_id121020152054075192\n"
@@ -64488,7 +64373,6 @@ msgid "#N/A"
msgstr "#N/D"
#: func_error_type.xhp
-#, fuzzy
msgctxt ""
"func_error_type.xhp\n"
"hd_id352113521135211\n"
@@ -64690,13 +64574,12 @@ msgid "IMCOS function"
msgstr "Función IM.COS"
#: func_imcos.xhp
-#, fuzzy
msgctxt ""
"func_imcos.xhp\n"
"bm_id262410558824\n"
"help.text"
msgid "<bookmark_value>IMCOS function</bookmark_value><bookmark_value>cosine;complex number</bookmark_value>"
-msgstr "<bookmark_value>SUMAR.SI</bookmark_value><bookmark_value>agregar;números especificados</bookmark_value>"
+msgstr "<bookmark_value>función IM.COS</bookmark_value><bookmark_value>coseno;número complejo</bookmark_value>"
#: func_imcos.xhp
msgctxt ""
@@ -64755,13 +64638,12 @@ msgid "IMCOSH function"
msgstr "Función IM.COSH"
#: func_imcosh.xhp
-#, fuzzy
msgctxt ""
"func_imcosh.xhp\n"
"bm_id123771237712377\n"
"help.text"
msgid "<bookmark_value>IMCOSH function</bookmark_value><bookmark_value>hyperbolic cosine;complex number</bookmark_value>"
-msgstr "<bookmark_value>DELTA</bookmark_value><bookmark_value>reconocer;números equivalentes</bookmark_value>"
+msgstr "<bookmark_value>función IM.COSH</bookmark_value><bookmark_value>coseno hiperbólico;número complejo</bookmark_value>"
#: func_imcosh.xhp
msgctxt ""
@@ -64820,13 +64702,12 @@ msgid "IMCOT function"
msgstr "Función IM.COT"
#: func_imcot.xhp
-#, fuzzy
msgctxt ""
"func_imcot.xhp\n"
"bm_id762757627576275\n"
"help.text"
msgid "<bookmark_value>IMCOT function</bookmark_value><bookmark_value>cotangent;complex number</bookmark_value>"
-msgstr "<bookmark_value>FACT</bookmark_value><bookmark_value>factoriales;números</bookmark_value>"
+msgstr "<bookmark_value>función IM.COT</bookmark_value><bookmark_value>cotangente;número complejo</bookmark_value>"
#: func_imcot.xhp
msgctxt ""
@@ -64893,13 +64774,12 @@ msgid "IMCSC function"
msgstr "Función IM.CSC"
#: func_imcsc.xhp
-#, fuzzy
msgctxt ""
"func_imcsc.xhp\n"
"bm_id931179311793117\n"
"help.text"
msgid "<bookmark_value>IMCSC function</bookmark_value><bookmark_value>cosecant;complex number</bookmark_value>"
-msgstr "<bookmark_value>MODA</bookmark_value><bookmark_value>valor más común</bookmark_value>"
+msgstr "<bookmark_value>función IM.CSC</bookmark_value><bookmark_value>cosecante;número complejo</bookmark_value>"
#: func_imcsc.xhp
msgctxt ""
@@ -64966,13 +64846,12 @@ msgid "IMCSCH function"
msgstr "Función IM.CSCH"
#: func_imcsch.xhp
-#, fuzzy
msgctxt ""
"func_imcsch.xhp\n"
"bm_id976559765597655\n"
"help.text"
msgid "<bookmark_value>IMCSCH function</bookmark_value><bookmark_value>hyperbolic cosecant;complex number</bookmark_value>"
-msgstr "<bookmark_value>ESERR</bookmark_value><bookmark_value>códigos de error;controlar</bookmark_value>"
+msgstr "<bookmark_value>función IM.CSCH</bookmark_value><bookmark_value>cosecante hiperbólica;número complejo</bookmark_value>"
#: func_imcsch.xhp
msgctxt ""
@@ -65039,13 +64918,12 @@ msgid "IMSEC function"
msgstr "Función IM.SEC"
#: func_imsec.xhp
-#, fuzzy
msgctxt ""
"func_imsec.xhp\n"
"bm_id101862404332680\n"
"help.text"
msgid "<bookmark_value>IMSEC function</bookmark_value><bookmark_value>secant;complex number</bookmark_value>"
-msgstr "<bookmark_value>FACT</bookmark_value><bookmark_value>factoriales;números</bookmark_value>"
+msgstr "<bookmark_value>función IM.SEC</bookmark_value><bookmark_value>secante;número complejo</bookmark_value>"
#: func_imsec.xhp
msgctxt ""
@@ -65112,13 +64990,12 @@ msgid "IMSECH function"
msgstr "Función IM.SECH"
#: func_imsech.xhp
-#, fuzzy
msgctxt ""
"func_imsech.xhp\n"
"bm_id220201324724579\n"
"help.text"
msgid "<bookmark_value>IMSECH function</bookmark_value><bookmark_value>hyperbolic secant;complex number</bookmark_value>"
-msgstr "<bookmark_value>ESERR</bookmark_value><bookmark_value>códigos de error;controlar</bookmark_value>"
+msgstr "<bookmark_value>función IM.SECH</bookmark_value><bookmark_value>secante hiperbólica;número complejo</bookmark_value>"
#: func_imsech.xhp
msgctxt ""
@@ -65185,13 +65062,12 @@ msgid "IMSIN function"
msgstr "Función IM.SENO"
#: func_imsin.xhp
-#, fuzzy
msgctxt ""
"func_imsin.xhp\n"
"bm_id79322063230162\n"
"help.text"
msgid "<bookmark_value>IMSIN function</bookmark_value><bookmark_value>sine;complex number</bookmark_value>"
-msgstr "<bookmark_value>SUMAR.SI</bookmark_value><bookmark_value>agregar;números especificados</bookmark_value>"
+msgstr "<bookmark_value>función IM.SENO</bookmark_value><bookmark_value>seno;número complejo</bookmark_value>"
#: func_imsin.xhp
msgctxt ""
@@ -65258,13 +65134,12 @@ msgid "IMSINH function"
msgstr "Función IM.SENOH"
#: func_imsinh.xhp
-#, fuzzy
msgctxt ""
"func_imsinh.xhp\n"
"bm_id79322063230162\n"
"help.text"
msgid "<bookmark_value>IMSINH function</bookmark_value><bookmark_value>hyperbolic sine;complex number</bookmark_value>"
-msgstr "<bookmark_value>DELTA</bookmark_value><bookmark_value>reconocer;números equivalentes</bookmark_value>"
+msgstr "<bookmark_value>función IM.SENOH</bookmark_value><bookmark_value>seno hiperbólico;número complejo</bookmark_value>"
#: func_imsinh.xhp
msgctxt ""
@@ -66438,7 +66313,6 @@ msgid "<ahelp hid=\"HID_FUNC_ZEITWERT\">TIMEVALUE returns the internal time numb
msgstr "<ahelp hid=\"HID_FUNC_ZEITWERT\">HORANÚMERO devuelve el número de tiempo interno a partir de un texto entre comillas y puede mostrar un posible formato de entrada de tiempo.</ahelp>"
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"par_id3150794\n"
@@ -66455,7 +66329,6 @@ msgid "If the text string also includes a year, month, or day, TIMEVALUE only re
msgstr "Si la cadena de texto también incluye un año, mes o día, FECHANÚMERO sólo devuelve la parte fraccional de la conversión."
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"hd_id3150810\n"
@@ -66482,7 +66355,6 @@ msgid "<emph>Text</emph> is a valid time expression and must be entered in quota
msgstr "<emph>Texto</emph> es una expresión de hora válida y debe ir entre comillas."
#: func_timevalue.xhp
-#, fuzzy
msgctxt ""
"func_timevalue.xhp\n"
"hd_id3146815\n"
@@ -68068,7 +67940,6 @@ msgid "Data"
msgstr "Datos"
#: stat_data.xhp
-#, fuzzy
msgctxt ""
"stat_data.xhp\n"
"par_id1000010\n"
@@ -68149,7 +68020,6 @@ msgid "Example"
msgstr "Ejemplo"
#: stat_data.xhp
-#, fuzzy
msgctxt ""
"stat_data.xhp\n"
"par_id1000550\n"
@@ -68206,13 +68076,12 @@ msgid "To work on a complex statistical or engineering analysis, you can save st
msgstr ""
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"bm_id2764278\n"
"help.text"
msgid "<bookmark_value>Analysis toolpack;sampling</bookmark_value><bookmark_value>sampling;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;sampling</bookmark_value>"
-msgstr "<bookmark_value>Herramientas de análisis;covarianza</bookmark_value><bookmark_value>covarianza;Herramientas de análisis</bookmark_value><bookmark_value>Estadísticas de datos;covarianza</bookmark_value>"
+msgstr "<bookmark_value>Herramientas de análisis;muestreo</bookmark_value><bookmark_value>muestreo;Herramientas de análisis</bookmark_value><bookmark_value>Estadísticas de datos;muestreo</bookmark_value>"
#: statistics.xhp
msgctxt ""
@@ -68231,7 +68100,6 @@ msgid "<ahelp hid=\"modules/scalc/ui/samplingdialog/SamplingDialog\">Create a ta
msgstr "<ahelp hid=\"modules/scalc/ui/samplingdialog/SamplingDialog\">Crea una tabla con datos tomados de otra tabla.</ahelp>"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1000040\n"
@@ -68240,16 +68108,14 @@ msgid "<variable id=\"sam01\">Menu <emph>Data - Statistics - Sampling...</emph><
msgstr "<variable id=\"sam01\">Vaya a <emph>Datos ▸ Estadísticas ▸ Muestreo</emph></variable>"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1000050\n"
"help.text"
msgid "Sampling allows you to pick data from a <emph>source</emph> table to fill a <emph>target</emph> table. The sampling can be random or in a periodic basis."
-msgstr "El muestreo le permite seleccionar datos de una tabla de <emph>origen</emph> para rellenar una tabla de <emph>destino</emph>. El muestreo puede ser al azar o de base periódica."
+msgstr "El muestreo le permite seleccionar datos de una tabla de <emph>origen</emph> para rellenar una tabla de <emph>destino</emph>. El muestreo puede ser al azar o periódico."
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1000060\n"
@@ -68306,7 +68172,6 @@ msgid "Example"
msgstr "Ejemplo"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1000110\n"
@@ -68323,13 +68188,12 @@ msgid "Sampling with a period of 2 will result in the following table:"
msgstr "El muestreo con un periodo de 2 producirá la tabla siguiente:"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"bm_id01001\n"
"help.text"
msgid "<bookmark_value>Analysis toolpack;descriptive statistics</bookmark_value><bookmark_value>descriptive statistics;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;descriptive statistics</bookmark_value>"
-msgstr "<bookmark_value>Herramientas de análisis;covarianza</bookmark_value><bookmark_value>covarianza;Herramientas de análisis</bookmark_value><bookmark_value>Estadísticas de datos;covarianza</bookmark_value>"
+msgstr "<bookmark_value>Herramientas de análisis;estadísticas descriptivas</bookmark_value><bookmark_value>estadísticas descriptivas;Herramientas de análisis</bookmark_value><bookmark_value>Estadísticas de datos;estadísticas descriptivas</bookmark_value>"
#: statistics.xhp
msgctxt ""
@@ -68340,7 +68204,6 @@ msgid "Descriptive Statistics"
msgstr "Estadísticas descriptivas"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1000640\n"
@@ -68349,7 +68212,6 @@ msgid "<ahelp hid=\"modules/scalc/ui/descriptivestatisticsdialog/DescriptiveStat
msgstr "<ahelp hid=\"modules/scalc/ui/descriptivestatisticsdialog/DescriptiveStatisticsDialog\">Rellene una tabla en la hoja de cálculo con las propiedades estadísticas principales del conjunto de datos.</ahelp>"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1000650\n"
@@ -68358,7 +68220,6 @@ msgid "<variable id=\"sam01\">Menu <emph>Data - Statistics - Descriptive Statist
msgstr "<variable id=\"sam01\">Vaya a <emph>Datos ▸ Estadísticas ▸ Estadísticas descriptivas</emph></variable>"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1000660\n"
@@ -68375,7 +68236,6 @@ msgid "For more information, please visit the Wikipedia: <link href=\"http://en.
msgstr "Para obtener más información, refiérase al <link href=\"http://en.wikipedia.org/wiki/Descriptive_statistics\">artículo correspondiente de la Wikipedia</link>."
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1000680\n"
@@ -68528,7 +68388,6 @@ msgid "Analysis of Variance (ANOVA)"
msgstr "Análisis de varianza (ANOVA)"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001240\n"
@@ -68537,7 +68396,6 @@ msgid "<ahelp hid=\"modules/scalc/ui/analysisofvariancedialog/AnalysisOfVariance
msgstr "<ahelp hid=\"modules/scalc/ui/analysisofvariancedialog/AnalysisOfVarianceDialog\">Efectúa el análisis de varianza (ANOVA) de un conjunto de datos especificado</ahelp>"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001250\n"
@@ -68570,7 +68428,6 @@ msgid "Type"
msgstr "Tipo"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001280\n"
@@ -68603,7 +68460,6 @@ msgid "<emph>Rows per sample</emph>: Define how many rows a sample has."
msgstr "<emph>Filas por muestra</emph>: define cuántas filas contiene una muestra."
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001310\n"
@@ -68764,13 +68620,12 @@ msgid "Total"
msgstr "Total"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"bm_id1464278\n"
"help.text"
msgid "<bookmark_value>Analysis toolpack;correlation</bookmark_value><bookmark_value>correlation;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;correlation</bookmark_value>"
-msgstr "<bookmark_value>Herramientas de análisis;covarianza</bookmark_value><bookmark_value>covarianza;Herramientas de análisis</bookmark_value><bookmark_value>Estadísticas de datos;covarianza</bookmark_value>"
+msgstr "<bookmark_value>Herramientas de análisis;correlación</bookmark_value><bookmark_value>correlación;Herramientas de análisis</bookmark_value><bookmark_value>Estadísticas de datos;correlación</bookmark_value>"
#: statistics.xhp
msgctxt ""
@@ -68781,7 +68636,6 @@ msgid "Correlation"
msgstr "Correlación"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001740\n"
@@ -68790,7 +68644,6 @@ msgid "<ahelp hid=\"modules/scalc/ui/correlationdialog/CorrelationDialog\">Calcu
msgstr "<ahelp hid=\"modules/scalc/ui/correlationdialog/CorrelationDialog\">Calcula la correlación entre dos conjuntos de datos numéricos.</ahelp>"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001750\n"
@@ -68799,31 +68652,28 @@ msgid "<variable id=\"corr01\">Menu <emph>Data - Statistics - Correlation...</em
msgstr "<variable id=\"corr01\">Vaya a <emph>Datos ▸ Estadísticas ▸ Correlación</emph></variable>"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001760\n"
"help.text"
msgid "The correlation coefficient (a value between -1 and +1) means how strongly two variables are related to each other. You can use the CORREL function or the Data Statistics to find the correlation coefficient between two variables."
-msgstr "El coeficiente de correlación (un valor entre −1 y +1) indica la fuerza de la relación entre dos variables. Es posible utilizar la función CORREL o las estadísticas de datos para determinar el coeficiente de correlación entre dos variables."
+msgstr "El coeficiente de correlación (un valor entre −1 y +1) indica la fuerza de la relación entre dos variables. Es posible utilizar la función COEF.DE.CORREL o las Estadísticas de datos para determinar el coeficiente de correlación entre dos variables."
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001770\n"
"help.text"
msgid "A correlation coefficient of +1 indicates a perfect positive correlation."
-msgstr "Un coeficiente de +1 indica una correlación positiva perfecta."
+msgstr "Un coeficiente de correlación de +1 indica una correlación positiva perfecta."
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001780\n"
"help.text"
msgid "A correlation coefficient of -1 indicates a perfect negative correlation"
-msgstr "Un coeficiente de −1 indica una correlación negativa perfecta."
+msgstr "Un coeficiente de correlación de −1 indica una correlación negativa perfecta."
#: statistics.xhp
msgctxt ""
@@ -68834,7 +68684,6 @@ msgid "For more information on statistical correlation, refer to <link href=\"ht
msgstr "Para obtener más información acerca de la correlación estadística, refiérase al <link href=\"http://en.wikipedia.org/wiki/Correlation\">artículo correspondiente de la Wikipedia</link>."
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001800\n"
@@ -68915,7 +68764,6 @@ msgid "Covariance"
msgstr "Covarianza"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001940\n"
@@ -68924,7 +68772,6 @@ msgid "<ahelp hid=\"modules/scalc/ui/covariancedialog/CovarianceDialog\">Calcula
msgstr "<ahelp hid=\"modules/scalc/ui/covariancedialog/CovarianceDialog\">Calcula la covarianza entre dos conjuntos de datos numéricos.</ahelp>"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001950\n"
@@ -68949,7 +68796,6 @@ msgid "For more information on statistical covariance, refer to <link href=\"htt
msgstr "Para obtener más información acerca de la covarianza estadística, refiérase al <link href=\"http://en.wikipedia.org/wiki/Covariance\">artículo correspondiente de la Wikipedia</link>."
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1001980\n"
@@ -69030,7 +68876,6 @@ msgid "Exponential Smoothing"
msgstr "Suavizamiento exponencial"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002120\n"
@@ -69039,7 +68884,6 @@ msgid "<ahelp hid=\"modules/scalc/ui/exponentialsmoothingdialog/ExponentialSmoot
msgstr "<ahelp hid=\"modules/scalc/ui/exponentialsmoothingdialog/ExponentialSmoothingDialog\">Resulta en una serie de datos suavizada</ahelp>"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002130\n"
@@ -69072,7 +68916,6 @@ msgid "Parameters"
msgstr "Parámetros"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002160\n"
@@ -69113,13 +68956,12 @@ msgid "Column 2"
msgstr "Columna 2"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"bm_id04001\n"
"help.text"
msgid "<bookmark_value>Analysis toolpack;moving average</bookmark_value><bookmark_value>moving average;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;moving average</bookmark_value>"
-msgstr "<bookmark_value>Herramientas de análisis;covarianza</bookmark_value><bookmark_value>covarianza;Herramientas de análisis</bookmark_value><bookmark_value>Estadísticas de datos;covarianza</bookmark_value>"
+msgstr "<bookmark_value>Herramientas de análisis;media móvil</bookmark_value><bookmark_value>media móvil;Herramientas de análisis</bookmark_value><bookmark_value>Estadísticas de datos;media móvil</bookmark_value>"
#: statistics.xhp
msgctxt ""
@@ -69130,22 +68972,20 @@ msgid "Moving Average"
msgstr "Media móvil"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002500\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/movingaveragedialog/MovingAverageDialog\">Calculates the moving average of a time series</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/movingaveragedialog/MovingAverageDialog\">Calcula la media móvil de una serie temporal.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/movingaveragedialog/MovingAverageDialog\">Calcula la media móvil de una serie temporal</ahelp>"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002510\n"
"help.text"
msgid "<variable id=\"sam01\">Menu <emph>Data - Statistics - Moving Average...</emph></variable>"
-msgstr "<variable id=\"sam01\">Vaya a <emph>Datos ▸ Estadísticas ▸ Media móvil</emph>"
+msgstr "<variable id=\"sam01\">Vaya a <emph>Datos ▸ Estadísticas ▸ Media móvil</emph></variable>"
#: statistics.xhp
msgctxt ""
@@ -69164,7 +69004,6 @@ msgid "Parameters"
msgstr "Parámetros"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002530\n"
@@ -69229,13 +69068,12 @@ msgid "#N/A"
msgstr "#N/D"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"bm_id05001\n"
"help.text"
msgid "<bookmark_value>Analysis toolpack;t-test</bookmark_value><bookmark_value>t-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;t-test</bookmark_value>"
-msgstr "<bookmark_value>Herramientas de análisis;covarianza</bookmark_value><bookmark_value>covarianza;Herramientas de análisis</bookmark_value><bookmark_value>Estadísticas de datos;covarianza</bookmark_value>"
+msgstr "<bookmark_value>Herramientas de análisis;prueba t</bookmark_value><bookmark_value>prueba t;Herramientas de análisis</bookmark_value><bookmark_value>Estadísticas de datos;prueba t</bookmark_value>"
#: statistics.xhp
msgctxt ""
@@ -69254,7 +69092,6 @@ msgid "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\">Calculates the t-
msgstr ""
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002830\n"
@@ -69303,7 +69140,6 @@ msgid "<emph>Variable 2 range</emph>: The reference of the range of the second d
msgstr "<emph>Intervalo de 2.ª variable</emph>: la referencia del intervalo de la segunda serie de datos que se analizará."
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002880\n"
@@ -69320,7 +69156,6 @@ msgid "Results for t-Test:"
msgstr "Resultados para la prueba t:"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1002890\n"
@@ -69441,13 +69276,12 @@ msgid "P (T<=t) one-tail"
msgstr ""
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1003180\n"
"help.text"
msgid "t Critical one-tail"
-msgstr "F crítica bilateral"
+msgstr "t crítica unilateral"
#: statistics.xhp
msgctxt ""
@@ -69458,22 +69292,20 @@ msgid "P (T<=t) two-tail"
msgstr ""
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1003220\n"
"help.text"
msgid "t Critical two-tail"
-msgstr "F crítica bilateral"
+msgstr "t crítica bilateral"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"bm_id05002\n"
"help.text"
msgid "<bookmark_value>Analysis toolpack;F-test</bookmark_value><bookmark_value>F-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;F-test</bookmark_value>"
-msgstr "<bookmark_value>Herramientas de análisis;covarianza</bookmark_value><bookmark_value>covarianza;Herramientas de análisis</bookmark_value><bookmark_value>Estadísticas de datos;covarianza</bookmark_value>"
+msgstr "<bookmark_value>Herramientas de análisis;prueba F</bookmark_value><bookmark_value>prueba F;Herramientas de análisis</bookmark_value><bookmark_value>Estadísticas de datos;prueba F</bookmark_value>"
#: statistics.xhp
msgctxt ""
@@ -69492,7 +69324,6 @@ msgid "<ahelp hid=\"modules/scalc/ui/ttestdialog/TTestDialog\">Calculates the F-
msgstr ""
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1003250\n"
@@ -69541,7 +69372,6 @@ msgid "<emph>Variable 2 range</emph>: The reference of the range of the second d
msgstr "<emph>Intervalo de 2.ª variable</emph>: la referencia del intervalo de la segunda serie de datos que se analizará."
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1003300\n"
@@ -69550,25 +69380,22 @@ msgid "<emph>Results to</emph>: The reference of the top left cell of the range
msgstr "<emph>Resultados en</emph>: la referencia de la celda superior izquierda del intervalo donde se mostrará la prueba."
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"hd_id1000200\n"
"help.text"
msgid "Results for F-Test:"
-msgstr "Resultados para la prueba t:"
+msgstr "Resultados de la prueba F:"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1003310\n"
"help.text"
msgid "The following table shows the <emph>F-Test</emph> for the data series above:"
-msgstr "La tabla siguiente muestra la <emph>prueba t</emph> de la serie de datos anterior:"
+msgstr "La tabla siguiente muestra la <emph>prueba F</emph> de la serie de datos anterior:"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1003320\n"
@@ -69649,13 +69476,12 @@ msgid "P (F<=f) right-tail"
msgstr ""
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1003530\n"
"help.text"
msgid "F Critical right-tail"
-msgstr "F crítica bilateral"
+msgstr "F crítica, lateral derecha"
#: statistics.xhp
msgctxt ""
@@ -69666,13 +69492,12 @@ msgid "P (F<=f) left-tail"
msgstr ""
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1003570\n"
"help.text"
msgid "F Critical left-tail"
-msgstr "F crítica bilateral"
+msgstr "F crítica, lateral izquierda"
#: statistics.xhp
msgctxt ""
@@ -69691,13 +69516,12 @@ msgid "F Critical two-tail"
msgstr "F crítica bilateral"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"bm_id05003\n"
"help.text"
msgid "<bookmark_value>Analysis toolpack;Z-test</bookmark_value><bookmark_value>Z-test;Analysis toolpack</bookmark_value><bookmark_value>Data statistics;Z-test</bookmark_value>"
-msgstr "<bookmark_value>Herramientas de análisis;covarianza</bookmark_value><bookmark_value>covarianza;Herramientas de análisis</bookmark_value><bookmark_value>Estadísticas de datos;covarianza</bookmark_value>"
+msgstr "<bookmark_value>Herramientas de análisis;prueba z</bookmark_value><bookmark_value>prueba z;Herramientas de análisis</bookmark_value><bookmark_value>Estadísticas de datos;prueba z</bookmark_value>"
#: statistics.xhp
msgctxt ""
@@ -69756,7 +69580,6 @@ msgid "<emph>Variable 2 range</emph>: The reference of the range of the second d
msgstr "<emph>Intervalo de 2.ª variable</emph>: la referencia del intervalo de la segunda serie de datos que se analizará."
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1003690\n"
@@ -69765,31 +69588,28 @@ msgid "<emph>Results to</emph>: The reference of the top left cell of the range
msgstr "<emph>Resultados en</emph>: la referencia de la celda superior izquierda del intervalo donde se mostrará la prueba."
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"hd_id1000230\n"
"help.text"
msgid "Results for z-Test:"
-msgstr "Resultados para la prueba t:"
+msgstr "Resultados de la prueba z:"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1003700\n"
"help.text"
msgid "The following table shows the <emph>z-Test</emph> for the data series above:"
-msgstr "La tabla siguiente muestra la <emph>prueba t</emph> de la serie de datos anterior:"
+msgstr "La tabla siguiente muestra la <emph>prueba z</emph> de la serie de datos anterior:"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1003710\n"
"help.text"
msgid "z-test"
-msgstr "Prueba t"
+msgstr "Prueba z"
#: statistics.xhp
msgctxt ""
@@ -69864,7 +69684,6 @@ msgid "z"
msgstr "z"
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1003900\n"
@@ -69881,7 +69700,6 @@ msgid "P (Z<=z) one-tail"
msgstr ""
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1003920\n"
@@ -69949,13 +69767,12 @@ msgid "<ahelp hid=\"modules/scalc/ui/chisquaretestdialog/ChiSquareTestDialog\">C
msgstr ""
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1003990\n"
"help.text"
msgid "<variable id=\"sam02\">Menu <emph>Data - Statistics - Chi-square Test...</emph></variable>"
-msgstr "<variable id=\"sam02\">Vaya a <emph>Datos ▸ Estadísticas ▸ Prueba Z…</emph></variable>"
+msgstr "<variable id=\"sam02\">Vaya a <emph>Datos ▸ Estadísticas ▸ Prueba ji cuadrado</emph></variable>"
#: statistics.xhp
msgctxt ""
@@ -69983,7 +69800,6 @@ msgid "<emph>Input range</emph>: The reference of the range of the data series t
msgstr "<emph>Intervalo de entrada</emph>: la referencia al área que contiene los datos que se analizarán."
#: statistics.xhp
-#, fuzzy
msgctxt ""
"statistics.xhp\n"
"par_id1004020\n"
@@ -70069,7 +69885,7 @@ msgctxt ""
"hd_id2300180\n"
"help.text"
msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
-msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Texto a Columnas</link>"
+msgstr "<link href=\"text/scalc/01/text2columns.xhp\">Texto a columnas</link>"
#: text2columns.xhp
msgctxt ""
@@ -70077,7 +69893,7 @@ msgctxt ""
"par_id655232\n"
"help.text"
msgid "<variable id=\"text2columns\">Opens the Text to Columns dialog, where you enter settings to expand the contents of selected cells to multiple cells. </variable>"
-msgstr "<variable id=\"text2columns\">Abre el dialogo, Texto a Columnas, donde puede entrar configuraciones para expandir el contenido de celdas seleccionadas a celdas múltiples. </variable>"
+msgstr "<variable id=\"text2columns\">Abre el cuadro de diálogo Texto a columnas, que permite establecer opciones para expandir el contenido de las celdas seleccionadas en varias celdas más.</variable>"
#: text2columns.xhp
msgctxt ""
@@ -70133,7 +69949,7 @@ msgctxt ""
"par_id9276406\n"
"help.text"
msgid "Select the separator options. The preview shows how the current cell contents will be transformed into multiple cells."
-msgstr "Seleccione las opciones de separadores. La prevista muestra como los contenidos de la celda corriente será transformado en celdas múltiples."
+msgstr "Seleccione las opciones de separación. La previsualización mostrará cómo se transformará el contenido actual de la celda en varias celdas."
#: text2columns.xhp
msgctxt ""
@@ -70149,7 +69965,7 @@ msgctxt ""
"par_id1517380\n"
"help.text"
msgid "You can select or enter separator characters to define the positions of breaking points. The separator characters are removed from the resulting cell contents."
-msgstr "Puede seleccionar o entrar caracteres de separación para definir los posiciones de puntos de saltos. Los caracteres de separación están quitado de los contenidos de celdas resultantes."
+msgstr "Es posible seleccionar o añadir caracteres de separación para definir las posiciones de los puntos de interrupción. Los caracteres de separación se eliminarán del contenido de las celdas resultante."
#: text2columns.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc/guide.po b/source/es/helpcontent2/source/text/scalc/guide.po
index 7cae2b9fd43..63bc62a9cff 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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-01-12 12:35+0000\n"
+"PO-Revision-Date: 2016-03-13 10:06+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452602112.000000\n"
+"X-POOTLE-MTIME: 1457863615.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -2480,7 +2480,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Assigning Formats by Formula"
-msgstr "Asignar formato mediante fórmulas"
+msgstr "Asignar formatos mediante fórmulas"
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2497,7 +2497,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Assigning Formats by Formula\">Assigning Formats by Formula</link> </variable>"
-msgstr "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Assigning Formats by Formula\">Asignar Formatos mediante Formula</link> </variable>"
+msgstr "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Asignar formatos mediante fórmulas\">Asignar formatos mediante fórmulas</link></variable>"
#: cellstyle_by_formula.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/sdraw/guide.po b/source/es/helpcontent2/source/text/sdraw/guide.po
index d1bdff26bcb..2f7901f2d7a 100644
--- a/source/es/helpcontent2/source/text/sdraw/guide.po
+++ b/source/es/helpcontent2/source/text/sdraw/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2016-01-12 12:36+0000\n"
+"PO-Revision-Date: 2016-03-13 10:14+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452602165.000000\n"
+"X-POOTLE-MTIME: 1457864044.000000\n"
#: align_arrange.xhp
msgctxt ""
@@ -383,7 +383,7 @@ msgctxt ""
"19\n"
"help.text"
msgid "Do one of the following:"
-msgstr "Realice uno de los siguientes procedimientos:"
+msgstr "Siga uno de estos procedimientos:"
#: color_define.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/01.po b/source/es/helpcontent2/source/text/shared/01.po
index f6105c5785d..106697e8fda 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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-02-25 14:09+0000\n"
+"PO-Revision-Date: 2016-03-13 08:54+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456409399.000000\n"
+"X-POOTLE-MTIME: 1457859263.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -5449,7 +5449,7 @@ msgctxt ""
"par_id0807200809553672\n"
"help.text"
msgid "If the document is in HTML format, any embedded or linked images will not be sent with the e-mail."
-msgstr "Si el documento está en formato HTML, y tiene imágenes embebidas o vinculadas no se enviará con el mensaje de correo electrónico."
+msgstr "Si el formato del documento es HTML, no se enviará ninguna imagen incrustada o enlazada en el mensaje de correo electrónico."
#: 01160300.xhp
msgctxt ""
@@ -12342,7 +12342,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"litdattext\"><ahelp hid=\"HID_BIB_DB_TBX\">Insert, delete, edit, and organize records in the bibliography database.</ahelp></variable>"
-msgstr "<variable id=\"litdattext\"><ahelp hid=\"HID_BIB_DB_TBX\">Inserta, borra, edita y organiza registros en la base de datos bibliográfíca.</ahelp></variable>"
+msgstr "<variable id=\"litdattext\"><ahelp hid=\"HID_BIB_DB_TBX\">Inserte, elimine, edite y organice registros en la base de datos bibliográfíca.</ahelp></variable>"
#: 02250000.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/simpress/guide.po b/source/es/helpcontent2/source/text/simpress/guide.po
index 5305de4e23d..cc7443f6519 100644
--- a/source/es/helpcontent2/source/text/simpress/guide.po
+++ b/source/es/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: 2015-05-11 16:11+0200\n"
-"PO-Revision-Date: 2015-12-06 03:17+0000\n"
+"PO-Revision-Date: 2016-03-13 10:15+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449371833.000000\n"
+"X-POOTLE-MTIME: 1457864103.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -347,7 +347,7 @@ msgctxt ""
"60\n"
"help.text"
msgid "Do one of the following:"
-msgstr "Realice uno de los siguientes pasos:"
+msgstr "Siga uno de estos procedimientos:"
#: animated_gif_create.xhp
msgctxt ""
@@ -898,7 +898,7 @@ msgctxt ""
"44\n"
"help.text"
msgid "Do one of the following:"
-msgstr "Realice uno de los siguientes pasos:"
+msgstr "Siga uno de estos procedimientos:"
#: arrange_slides.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"61\n"
"help.text"
msgid "Do one of the following:"
-msgstr "Realice uno de los siguientes pasos:"
+msgstr "Siga uno de estos procedimientos:"
#: background.xhp
msgctxt ""
@@ -3145,7 +3145,7 @@ msgctxt ""
"par_id1556443\n"
"help.text"
msgid "Do one of the following:"
-msgstr "Realice uno de los siguientes pasos:"
+msgstr "Siga uno de estos procedimientos:"
#: line_draw.xhp
msgctxt ""
@@ -3307,7 +3307,7 @@ msgctxt ""
"56\n"
"help.text"
msgid "Do one of the following:"
-msgstr "Realice uno de los siguientes pasos:"
+msgstr "Siga uno de estos procedimientos:"
#: line_edit.xhp
msgctxt ""
@@ -3690,7 +3690,7 @@ msgctxt ""
"28\n"
"help.text"
msgid "Do one of the following:"
-msgstr "Realice uno de los siguientes pasos:"
+msgstr "Siga uno de estos procedimientos:"
#: masterpage.xhp
msgctxt ""
@@ -3884,7 +3884,7 @@ msgctxt ""
"49\n"
"help.text"
msgid "Do one of the following:"
-msgstr "Realice uno de los siguientes pasos:"
+msgstr "Siga uno de estos procedimientos:"
#: orgchart.xhp
msgctxt ""
@@ -5587,7 +5587,7 @@ msgctxt ""
"29\n"
"help.text"
msgid "Do one of the following:"
-msgstr "Realice uno de los siguientes pasos:"
+msgstr "Siga uno de estos procedimientos:"
#: vectorize.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/swriter/00.po b/source/es/helpcontent2/source/text/swriter/00.po
index 90b2fb5042e..3136b5b43d9 100644
--- a/source/es/helpcontent2/source/text/swriter/00.po
+++ b/source/es/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-12-13 22:44+0000\n"
+"PO-Revision-Date: 2016-03-13 09:12+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1450046664.000000\n"
+"X-POOTLE-MTIME: 1457860327.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -389,13 +389,12 @@ msgid "<variable id=\"textbegrenzungen\">Choose <emph>View - Text Boundaries</em
msgstr "<variable id=\"textbegrenzungen\">Vaya a <emph>Ver ▸ Límites del texto</emph></variable>"
#: 00000403.xhp
-#, fuzzy
msgctxt ""
"00000403.xhp\n"
"par_id3153248\n"
"help.text"
msgid "Choose <emph>View - Field Shadings</emph>"
-msgstr "Elija <emph>Ver ▸ Sombreado de campos</emph>"
+msgstr "Vaya a <emph>Ver ▸ Marcar campos</emph>"
#: 00000403.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/swriter/01.po b/source/es/helpcontent2/source/text/swriter/01.po
index c2302183f74..cb3a8935e13 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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2016-01-28 16:38+0000\n"
+"PO-Revision-Date: 2016-03-14 23: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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1453999114.000000\n"
+"X-POOTLE-MTIME: 1457998395.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -2250,7 +2250,7 @@ msgctxt ""
"45\n"
"help.text"
msgid "Save links relative to"
-msgstr "Guardar enlaces relativamente"
+msgstr "Guardar enlaces relativos a"
#: 02120000.xhp
msgctxt ""
@@ -2268,7 +2268,7 @@ msgctxt ""
"47\n"
"help.text"
msgid "File system"
-msgstr "En el sistema de archivos"
+msgstr "Sistema de archivos"
#: 02120000.xhp
msgctxt ""
@@ -2277,7 +2277,7 @@ msgctxt ""
"48\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/autotext/relfile\">Links to AutoText directories on your computer are relative.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/autotext/relfile\">Los vínculos con los directorios de AutoTexto en el equipo son relativos.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/autotext/relfile\">Los enlaces con los directorios de texto automático en el equipo son relativos.</ahelp>"
#: 02120000.xhp
msgctxt ""
@@ -2286,7 +2286,7 @@ msgctxt ""
"49\n"
"help.text"
msgid "Internet"
-msgstr "En Internet"
+msgstr "Internet"
#: 02120000.xhp
msgctxt ""
@@ -2295,7 +2295,7 @@ msgctxt ""
"50\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/autotext/relnet\">Links to files on the Internet are relative.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/autotext/relnet\">Los vínculos con los archivos en Internet son relativos.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/autotext/relnet\">Los enlaces con los archivos en Internet son relativos.</ahelp>"
#: 02120100.xhp
msgctxt ""
@@ -3584,16 +3584,15 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Field Shadings"
-msgstr "Marcas"
+msgstr "Marcar campos"
#: 03080000.xhp
-#, fuzzy
msgctxt ""
"03080000.xhp\n"
"hd_id3151177\n"
"help.text"
msgid "<link href=\"text/swriter/01/03080000.xhp\" name=\"Field Shadings\">Field Shadings</link>"
-msgstr "<link href=\"text/swriter/01/03080000.xhp\" name=\"Marcas\">Marcas</link>"
+msgstr "<link href=\"text/swriter/01/03080000.xhp\" name=\"Marcar campos\">Marcar campos</link>"
#: 03080000.xhp
msgctxt ""
@@ -23606,7 +23605,7 @@ msgctxt ""
"55\n"
"help.text"
msgid "To highlight the screen display of outline numbers, choose <emph>View -</emph><emph>Field Shadings</emph>."
-msgstr "Para destacar la visualización en la pantalla de los números de capítulos, elija <emph>Ver -</emph><emph> Marcas</emph>."
+msgstr "Para destacar la visualización en la pantalla de los números de capítulos, vaya a <emph>Ver ▸</emph><emph> Marcar campos</emph>."
#: 06060000.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/swriter/04.po b/source/es/helpcontent2/source/text/swriter/04.po
index b6ca2d8e78f..33a7d2bfb3b 100644
--- a/source/es/helpcontent2/source/text/swriter/04.po
+++ b/source/es/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-01-08 13:42+0100\n"
-"PO-Revision-Date: 2016-01-12 03:57+0000\n"
+"PO-Revision-Date: 2016-03-13 09:02+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452571030.000000\n"
+"X-POOTLE-MTIME: 1457859750.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -298,7 +298,7 @@ msgctxt ""
"31\n"
"help.text"
msgid "Field shadings on / off"
-msgstr "Activar/desactivar marcas"
+msgstr "Activar o desactivar marcas de campos"
#: 01020000.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/swriter/guide.po b/source/es/helpcontent2/source/text/swriter/guide.po
index b10e78517ee..888194dddcc 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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2016-01-28 18:14+0000\n"
+"PO-Revision-Date: 2016-03-13 09:13+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1454004873.000000\n"
+"X-POOTLE-MTIME: 1457860428.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -4017,7 +4017,7 @@ msgctxt ""
"195\n"
"help.text"
msgid "To display or hide field highlighting in a document, choose <emph>View - Field Shadings</emph>. To permanently disable this feature, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Application Colors</emph>, and clear the check box in front of <emph>Field shadings</emph>."
-msgstr "Para mostrar u ocultar el resalte de los campos de un documento, vaya a <emph>Ver ▸ Marcar campos</emph>. Para desactivar esta función permanentemente, vaya a <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferencias</caseinline><defaultinline>Herramientas ▸ Opciones</defaultinline></switchinline> ▸ $[officename] ▸ Colores de la aplicación</emph> y desactive la casilla <emph>Sombreado de los campos</emph>."
+msgstr "Para mostrar u ocultar el resalte de los campos de un documento, vaya a <emph>Ver ▸ Marcar campos</emph>. Para desactivar esta función permanentemente, vaya a <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferencias</caseinline><defaultinline>Herramientas ▸ Opciones</defaultinline></switchinline> ▸ $[officename] ▸ Colores de la aplicación</emph> y desmarque la casilla <emph>Marcas de campos</emph>."
#: fields.xhp
msgctxt ""
@@ -4026,7 +4026,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "To change the color of field shadings, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01012000.xhp\" name=\"$[officename] - Application Colors\"><item type=\"menuitem\">$[officename] - Application Colors</item></link></emph>, locate the <item type=\"menuitem\">Field shadings</item> option, and then select a different color in the <item type=\"menuitem\">Color setting</item> box."
-msgstr "Para cambiar el color del sombreado de los campos, vaya a <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferencias</caseinline><defaultinline>Herramientas ▸ Opciones</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01012000.xhp\" name=\"$[officename] - Colores de la aplicación\"><item type=\"menuitem\">$[officename] ▸ Colores de la aplicación</item></link></emph>, ubique la opción <item type=\"menuitem\">Sombreado de los campos</item> y seleccione un color diferente en el cuadro bajo la columna <item type=\"menuitem\">Configuración de color</item>."
+msgstr "Para cambiar el color del sombreado de los campos, vaya a <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME ▸ Preferencias</caseinline><defaultinline>Herramientas ▸ Opciones</defaultinline></switchinline> ▸ <link href=\"text/shared/optionen/01012000.xhp\" name=\"$[officename] - Colores de la aplicación\"><item type=\"menuitem\">$[officename] ▸ Colores de la aplicación</item></link></emph>, ubique la opción <item type=\"menuitem\">Marcas de campos</item> y seleccione un color diferente en el cuadro bajo la columna <item type=\"menuitem\">Configuración de color</item>."
#: fields.xhp
msgctxt ""
@@ -5714,7 +5714,7 @@ msgctxt ""
"par_id0805200801132382\n"
"help.text"
msgid "If the document is in HTML format, any embedded or linked images will not be sent with the e-mail."
-msgstr "Si el documento está en formato HTML, no se enviarán las imágenes incrustadas o enlazadas en el mensaje de correo electrónico."
+msgstr "Si el formato del documento es HTML, no se enviará ninguna imagen incrustada o enlazada en el mensaje de correo electrónico."
#: form_letters_main.xhp
msgctxt ""
@@ -7573,7 +7573,7 @@ msgctxt ""
"12\n"
"help.text"
msgid "Index entries are inserted as fields into your document. To view fields in your document, choose <item type=\"menuitem\">View</item> and ensure that <item type=\"menuitem\">Field Shadings</item> is selected."
-msgstr "Las entradas de índice se insertan como campos en el documento. Para ver los campos de su documento, seleccione <item type=\"menuitem\">Ver</item> y asegúrese de que <item type=\"menuitem\">Sombreado de campo</item> esté seleccionado."
+msgstr "Las entradas de índice se insertan como campos en el documento. Para visualizar los campos del documento, abra el menú <item type=\"menuitem\">Ver</item> y asegúrese de que <item type=\"menuitem\">Marcar campos</item> esté seleccionado."
#: indices_delete.xhp
msgctxt ""
@@ -12690,7 +12690,7 @@ msgctxt ""
"3\n"
"help.text"
msgid "If you cannot see the field shading of the cross-reference, choose <emph>View - Field Shadings</emph> or press <emph>Ctrl+F8</emph>."
-msgstr "Si no puede ver el sombreado del campo de la referencia cruzada, seleccione <emph>Ver - Marcas</emph> o pulse <emph>Control + F8</emph>."
+msgstr "Si no puede ver el sombreado del campo de la referencia cruzada, vaya a <emph>Ver ▸ Marcar campos</emph> u oprima <emph>Ctrl + F8</emph>."
#: references_modify.xhp
msgctxt ""
diff --git a/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po
index f1e544e80e0..18fdae37c85 100644
--- a/source/es/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/es/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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2016-01-18 09:45+0000\n"
+"PO-Revision-Date: 2016-03-13 14:44+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1453110314.000000\n"
+"X-POOTLE-MTIME: 1457880282.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -3214,7 +3214,7 @@ msgctxt ""
"OOO_ERROR_54\n"
"LngText.text"
msgid "Could not create key [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel."
-msgstr "No se puede crear la clave [2]. {{ Error del sistema [3].}} Compruebe que dispone de suficientes derechos de acceso a esa clave o póngase en contacto con el personal de soporte técnico."
+msgstr "No se puede crear la clave [2]. {{ Error del sistema [3].}} Compruebe que dispone de suficientes derechos de acceso a esa clave o póngase en contacto con el personal de asistencia técnica."
#: Error.ulf
msgctxt ""
@@ -3222,7 +3222,7 @@ msgctxt ""
"OOO_ERROR_55\n"
"LngText.text"
msgid "Could not open key: [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel."
-msgstr "No se puede abrir la clave [2]. {{ Error del sistema [3].}} Compruebe que dispone de suficientes derechos de acceso a esa clave o póngase en contacto con el personal de soporte técnico."
+msgstr "No se puede abrir la clave [2]. {{ Error del sistema [3].}} Compruebe que dispone de suficientes derechos de acceso a esa clave o póngase en contacto con el personal de asistencia técnica."
#: Error.ulf
msgctxt ""
@@ -3230,7 +3230,7 @@ msgctxt ""
"OOO_ERROR_56\n"
"LngText.text"
msgid "Could not delete value [2] from key [3]. {{ System error [4].}} Verify that you have sufficient access to that key, or contact your support personnel."
-msgstr "No se puede eliminar el valor [2] de la clave [3]. {{Error del sistema [4].}} Compruebe que dispone de suficientes derechos de acceso a esa clave o póngase en contacto con el personal de soporte técnico."
+msgstr "No se puede eliminar el valor [2] de la clave [3]. {{Error del sistema [4].}} Compruebe que dispone de suficientes derechos de acceso a esa clave o póngase en contacto con el personal de asistencia técnica."
#: Error.ulf
msgctxt ""
@@ -3238,7 +3238,7 @@ msgctxt ""
"OOO_ERROR_57\n"
"LngText.text"
msgid "Could not delete key [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel."
-msgstr "No se puede eliminar la clave [2]. {{Error del sistema [3].}} Compruebe que dispone de suficientes derechos de acceso a esa clave o póngase en contacto con el personal de soporte técnico."
+msgstr "No se puede eliminar la clave [2]. {{Error del sistema [3].}} Compruebe que dispone de suficientes derechos de acceso a esa clave o póngase en contacto con el personal de asistencia técnica."
#: Error.ulf
msgctxt ""
@@ -3246,7 +3246,7 @@ msgctxt ""
"OOO_ERROR_58\n"
"LngText.text"
msgid "Could not read value [2] from key [3]. {{ System error [4].}} Verify that you have sufficient access to that key, or contact your support personnel."
-msgstr "No se puede leer el valor [2] de la clave [3]. {{Error del sistema [4].}} Compruebe que dispone de suficientes derechos de acceso a esa clave o póngase en contacto con el personal de soporte técnico."
+msgstr "No se puede leer el valor [2] de la clave [3]. {{Error del sistema [4].}} Compruebe que dispone de suficientes derechos de acceso a esa clave o póngase en contacto con el personal de asistencia técnica."
#: Error.ulf
msgctxt ""
@@ -3254,7 +3254,7 @@ msgctxt ""
"OOO_ERROR_59\n"
"LngText.text"
msgid "Could not write value [2] to key [3]. {{ System error [4].}} Verify that you have sufficient access to that key, or contact your support personnel."
-msgstr "No se puede escribir el valor [2] en la clave [3]. {{Error del sistema [4].}} Compruebe que dispone de suficientes derechos de acceso a esa clave o póngase en contacto con el personal de soporte técnico."
+msgstr "No se puede escribir el valor [2] en la clave [3]. {{Error del sistema [4].}} Compruebe que dispone de suficientes derechos de acceso a esa clave o póngase en contacto con el personal de asistencia técnica."
#: Error.ulf
msgctxt ""
@@ -3262,7 +3262,7 @@ msgctxt ""
"OOO_ERROR_60\n"
"LngText.text"
msgid "Could not get value names for key [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel."
-msgstr "No se pueden obtener los nombres de los valores para la clave [2]. {{Error del sistema [3].}} Compruebe que dispone de suficientes derechos de acceso a esa clave o póngase en contacto con el personal de soporte técnico."
+msgstr "No se pueden obtener los nombres de los valores para la clave [2]. {{Error del sistema [3].}} Compruebe que dispone de suficientes derechos de acceso a esa clave o póngase en contacto con el personal de asistencia técnica."
#: Error.ulf
msgctxt ""
@@ -3270,7 +3270,7 @@ msgctxt ""
"OOO_ERROR_61\n"
"LngText.text"
msgid "Could not get sub key names for key [2]. {{ System error [3].}} Verify that you have sufficient access to that key, or contact your support personnel."
-msgstr "No se pueden obtener los nombres de las subclaves de la clave [2]. {{Error del sistema [3].}} Compruebe que dispone de suficientes derechos de acceso a esa clave o póngase en contacto con el personal de soporte técnico."
+msgstr "No se pueden obtener los nombres de las subclaves de la clave [2]. {{Error del sistema [3].}} Compruebe que dispone de suficientes derechos de acceso a esa clave o póngase en contacto con el personal de asistencia técnica."
#: Error.ulf
msgctxt ""
diff --git a/source/es/officecfg/registry/data/org/openoffice/Office/UI.po b/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
index d3e9f2bcb1c..573dc70cd0a 100644
--- a/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/es/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-01-08 13:42+0100\n"
-"PO-Revision-Date: 2016-02-10 09:45+0000\n"
+"PO-Revision-Date: 2016-03-13 09:16+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1455097559.000000\n"
+"X-POOTLE-MTIME: 1457860617.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -3632,7 +3632,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Formato del cuadro de texto"
+msgstr "Formato de cuadro de texto"
#: CalcWindowState.xcu
msgctxt ""
@@ -8807,7 +8807,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Formato del cuadro de texto"
+msgstr "Formato de cuadro de texto"
#: DrawWindowState.xcu
msgctxt ""
@@ -20266,7 +20266,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Formato del cuadro de texto"
+msgstr "Formato de cuadro de texto"
#: ImpressWindowState.xcu
msgctxt ""
@@ -25540,7 +25540,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fie~ld Shadings"
-msgstr "~Marcas"
+msgstr "~Marcar campos"
#: WriterCommands.xcu
msgctxt ""
@@ -26098,7 +26098,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Formato del cuadro de texto"
+msgstr "Formato de cuadro de texto"
#: WriterFormWindowState.xcu
msgctxt ""
@@ -26440,7 +26440,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Formato del cuadro de texto"
+msgstr "Formato de cuadro de texto"
#: WriterGlobalWindowState.xcu
msgctxt ""
@@ -26773,7 +26773,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Formato del cuadro de texto"
+msgstr "Formato de cuadro de texto"
#: WriterReportWindowState.xcu
msgctxt ""
@@ -27142,7 +27142,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Formato del cuadro de texto"
+msgstr "Formato de cuadro de texto"
#: WriterWebWindowState.xcu
msgctxt ""
@@ -27412,7 +27412,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Formato del cuadro de texto"
+msgstr "Formato de cuadro de texto"
#: WriterWindowState.xcu
msgctxt ""
@@ -27772,7 +27772,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Text Box Formatting"
-msgstr "Formato del cuadro de texto"
+msgstr "Formato de cuadro de texto"
#: XFormsWindowState.xcu
msgctxt ""
diff --git a/source/es/sc/source/ui/src.po b/source/es/sc/source/ui/src.po
index af6050a9fb2..adabefc2628 100644
--- a/source/es/sc/source/ui/src.po
+++ b/source/es/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: 2015-12-11 12:57+0100\n"
-"PO-Revision-Date: 2016-01-31 17:34+0000\n"
-"Last-Translator: Juan C. Sanz <juancsanzc@hotmail.com>\n"
+"PO-Revision-Date: 2016-03-12 03:33+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"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1454261681.000000\n"
+"X-POOTLE-MTIME: 1457753598.000000\n"
#: condformatdlg.src
msgctxt ""
@@ -6105,7 +6105,7 @@ msgctxt ""
"FID_TAB_MENU_SET_TAB_BG_COLOR\n"
"menuitem.text"
msgid "~Tab Color..."
-msgstr "Color de la ~pestaña..."
+msgstr "Co~lor de pestaña…"
#: popup.src
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/scalc/01.po b/source/et/helpcontent2/source/text/scalc/01.po
index a300f2cb98f..fb475a4aa02 100644
--- a/source/et/helpcontent2/source/text/scalc/01.po
+++ b/source/et/helpcontent2/source/text/scalc/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-07-30 22:58+0000\n"
+"PO-Revision-Date: 2016-03-03 20:52+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Estonian <none>\n"
"Language: et\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438297084.000000\n"
+"X-POOTLE-MTIME: 1457038376.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -66791,12 +66791,13 @@ msgid "<item type=\"input\"><br/>=<embedvar href=\"text/scalc/01/func_imsinh.xhp
msgstr ""
#: func_imsinh.xhp
+#, fuzzy
msgctxt ""
"func_imsinh.xhp\n"
"par_id2773214341302\n"
"help.text"
msgid "<embedvar href=\"text/scalc/01/func_imsin.xhp#imsin_head\"/>,<embedvar href=\"text/scalc/01/func_imcos.xhp#imcos_head\"/>,<embedvar href=\"text/scalc/01/func_imcosh.xhp#imcosh_head\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/scalc/01/func_imsin.xhp#imsin_head\"/>,<embedvar href=\"text/scalc/01/func_imcos.xhp#imcos_head\"/>,<embedvar href=\"text/scalc/01/func_imcosh.xhp#imcosh_head\"/>"
#: func_imtan.xhp
#, fuzzy
diff --git a/source/eu/cui/source/dialogs.po b/source/eu/cui/source/dialogs.po
index 671bedad6a7..6ae615aaac1 100644
--- a/source/eu/cui/source/dialogs.po
+++ b/source/eu/cui/source/dialogs.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: 2016-02-26 21:10+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 01:29+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456521013.000000\n"
+"X-POOTLE-MTIME: 1457400595.000000\n"
#: cuires.src
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"RID_SVXSTR_SELECTOR_RUN\n"
"string.text"
msgid "Run"
-msgstr "E~xekutatu"
+msgstr "Exekutatu"
#: cuires.src
msgctxt ""
@@ -87,7 +87,7 @@ msgctxt ""
"RID_SVXSTR_COL\n"
"string.text"
msgid "Insert Columns"
-msgstr "~Txertatu zutabeak"
+msgstr "Txertatu zutabeak"
#: cuires.src
msgctxt ""
diff --git a/source/eu/cui/uiconfig/ui.po b/source/eu/cui/uiconfig/ui.po
index 7993aee3888..df8dab29b27 100644
--- a/source/eu/cui/uiconfig/ui.po
+++ b/source/eu/cui/uiconfig/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-02-26 21:40+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 01:43+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456522818.000000\n"
+"X-POOTLE-MTIME: 1457401392.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -3443,7 +3443,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "H_ue:"
-msgstr "_Ñabardura:"
+msgstr "Ñabard_ura:"
#: colorpickerdialog.ui
msgctxt ""
@@ -4388,7 +4388,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Get more dictionaries online..."
-msgstr "_Lortu lineako hiztegi gehiago..."
+msgstr "Lortu lineako hiztegi gehiago..."
#: editmodulesdialog.ui
msgctxt ""
@@ -7062,7 +7062,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create new"
-msgstr "~Sortu berria"
+msgstr "Sortu berria"
#: insertoleobject.ui
msgctxt ""
@@ -7071,7 +7071,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create from file"
-msgstr "Sortu ~fitxategitik"
+msgstr "Sortu fitxategitik"
#: insertoleobject.ui
msgctxt ""
@@ -7188,7 +7188,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Before"
-msgstr "Aurretik"
+msgstr "_Aurretik"
#: insertrowcolumn.ui
msgctxt ""
@@ -7197,7 +7197,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "A_fter"
-msgstr "Ondoren"
+msgstr "O_ndoren"
#: insertrowcolumn.ui
msgctxt ""
@@ -11089,7 +11089,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Get more dictionaries online..."
-msgstr "_Lortu lineako hiztegi gehiago..."
+msgstr "Lortu lineako hiztegi gehiago..."
#: optlingupage.ui
msgctxt ""
@@ -14188,7 +14188,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Raise/lower by"
-msgstr "~Goi/Azpindizea:"
+msgstr "Goi/Azpindizea:"
#: positionpage.ui
msgctxt ""
@@ -14260,7 +14260,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Scale width"
-msgstr "Eskalatu ~zabalera"
+msgstr "Eskalatu zabalera"
#: positionpage.ui
msgctxt ""
@@ -14296,7 +14296,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pair kerning"
-msgstr "~Pareko karaktere-tartea doitu"
+msgstr "Pareko karaktere-tartea doitu"
#: positionpage.ui
msgctxt ""
@@ -17050,7 +17050,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Write in double lines"
-msgstr "~Idatzi marra bikoitzetan"
+msgstr "Idatzi marra bikoitzetan"
#: twolinespage.ui
msgctxt ""
@@ -17068,7 +17068,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Initial character"
-msgstr "Ha~sierako karakterea"
+msgstr "Hasierako karakterea"
#: twolinespage.ui
msgctxt ""
@@ -17077,7 +17077,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Final character"
-msgstr "Azken karakte~rea"
+msgstr "Azken karakt~rea"
#: twolinespage.ui
msgctxt ""
@@ -17311,7 +17311,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fit width and height"
-msgstr "~Doitu zabalera eta altuera"
+msgstr "Doitu zabalera eta altuera"
#: zoomdialog.ui
msgctxt ""
@@ -17320,7 +17320,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fit width"
-msgstr "Doitu ~zabalera"
+msgstr "Doitu zabalera"
#: zoomdialog.ui
msgctxt ""
@@ -17365,7 +17365,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Single page"
-msgstr "~Orrialde bakarra"
+msgstr "Orrialde bakarra"
#: zoomdialog.ui
msgctxt ""
@@ -17383,7 +17383,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Book mode"
-msgstr "~Liburu modua"
+msgstr "Liburu modua"
#: zoomdialog.ui
msgctxt ""
diff --git a/source/eu/desktop/uiconfig/ui.po b/source/eu/desktop/uiconfig/ui.po
index 7ebb1649e5d..354af91d5ff 100644
--- a/source/eu/desktop/uiconfig/ui.po
+++ b/source/eu/desktop/uiconfig/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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2016-02-24 18:19+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 01:49+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456337944.000000\n"
+"X-POOTLE-MTIME: 1457401787.000000\n"
#: cmdlinehelp.ui
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Check for updates..."
-msgstr "Bilatu ~eguneratzeak..."
+msgstr "Bilatu eguneratzeak..."
#: extensionmanager.ui
msgctxt ""
@@ -401,7 +401,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Check for _Updates..."
-msgstr "Bilatu ~eguneratzeak..."
+msgstr "Bilatu _eguneratzeak..."
#: updaterequireddialog.ui
msgctxt ""
diff --git a/source/eu/extensions/uiconfig/sabpilot/ui.po b/source/eu/extensions/uiconfig/sabpilot/ui.po
index 8a6e63411d2..598c5f67659 100644
--- a/source/eu/extensions/uiconfig/sabpilot/ui.po
+++ b/source/eu/extensions/uiconfig/sabpilot/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-02-24 20:11+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 01:56+0000\n"
+"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456344672.000000\n"
+"X-POOTLE-MTIME: 1457402178.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -416,7 +416,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Which _names do you want to give the option fields?"
-msgstr "Zein ~izen eman nahi diezu aukera-eremuei?"
+msgstr "Zein izen eman nahi diezu aukera-eremuei?"
#: groupradioselectionpage.ui
msgctxt ""
diff --git a/source/eu/extras/source/autocorr/emoji.po b/source/eu/extras/source/autocorr/emoji.po
index f8f4a99f6d0..9392345b103 100644
--- a/source/eu/extras/source/autocorr/emoji.po
+++ b/source/eu/extras/source/autocorr/emoji.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-02-28 21:31+0000\n"
+"PO-Revision-Date: 2016-03-13 09:13+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456695098.000000\n"
+"X-POOTLE-MTIME: 1457860401.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -626,7 +626,7 @@ msgctxt ""
"TRIANGULAR_BULLET\n"
"LngText.text"
msgid "bullet2"
-msgstr "bala2"
+msgstr "buleta2"
#. … (U+02026), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1013,7 +1013,7 @@ msgctxt ""
"ELEMENT_OF\n"
"LngText.text"
msgid "in"
-msgstr ""
+msgstr "barne"
#. ∉ (U+02209), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1022,7 +1022,7 @@ msgctxt ""
"NOT_AN_ELEMENT_OF\n"
"LngText.text"
msgid "not in"
-msgstr ""
+msgstr "ez-barne"
#. ∊ (U+0220A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1031,7 +1031,7 @@ msgctxt ""
"SMALL_ELEMENT_OF\n"
"LngText.text"
msgid "small in"
-msgstr ""
+msgstr "barne txikia"
#. ∋ (U+0220B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1067,7 +1067,7 @@ msgctxt ""
"END_OF_PROOF\n"
"LngText.text"
msgid "end of proof"
-msgstr ""
+msgstr "Q.E.D."
#. ∏ (U+0220F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1139,7 +1139,7 @@ msgctxt ""
"CUBE_ROOT\n"
"LngText.text"
msgid "cube root"
-msgstr ""
+msgstr "erro kubikoa"
#. ∜ (U+0221C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1247,7 +1247,7 @@ msgctxt ""
"UNION\n"
"LngText.text"
msgid "union"
-msgstr ""
+msgstr "bilketa"
#. ∫ (U+0222B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1391,7 +1391,7 @@ msgctxt ""
"RIGHT_TRIANGLE\n"
"LngText.text"
msgid "right triangle"
-msgstr ""
+msgstr "angelu zuzena"
#. ⌚ (U+0231A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1778,7 +1778,7 @@ msgctxt ""
"SALTIRE\n"
"LngText.text"
msgid "saltire"
-msgstr ""
+msgstr "San Andres gurutzea"
#. ☔ (U+02614), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1895,7 +1895,7 @@ msgctxt ""
"CADUCEUS\n"
"LngText.text"
msgid "caduceus"
-msgstr ""
+msgstr "kaduzeoa"
#. ☥ (U+02625), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1904,7 +1904,7 @@ msgctxt ""
"ANKH\n"
"LngText.text"
msgid "ankh"
-msgstr ""
+msgstr "ankh"
#. ☦ (U+02626), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1922,7 +1922,7 @@ msgctxt ""
"CHI_RHO\n"
"LngText.text"
msgid "chi rho"
-msgstr ""
+msgstr "kristograma"
#. ☨ (U+02628), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1931,7 +1931,7 @@ msgctxt ""
"CROSS_OF_LORRAINE\n"
"LngText.text"
msgid "cross of Lorraine"
-msgstr ""
+msgstr "Lorrenako gurutzea"
#. ☩ (U+02629), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1949,7 +1949,7 @@ msgctxt ""
"STAR_AND_CRESCENT\n"
"LngText.text"
msgid "star and crescent"
-msgstr ""
+msgstr "izarra eta ilgora"
#. ☫ (U+0262B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1967,7 +1967,7 @@ msgctxt ""
"ADI_SHAKTI\n"
"LngText.text"
msgid "Adi Shakti"
-msgstr ""
+msgstr "Adi Sakti"
#. ☭ (U+0262D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2426,7 +2426,7 @@ msgctxt ""
"HOT_SPRINGS\n"
"LngText.text"
msgid "hot springs"
-msgstr ""
+msgstr "ur termalak"
#. ♩ (U+02669), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2525,7 +2525,7 @@ msgctxt ""
"PERMANENT_PAPER\n"
"LngText.text"
msgid "permanent paper"
-msgstr ""
+msgstr "azido gabeko papera"
#. ♿ (U+0267F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2840,7 +2840,7 @@ msgctxt ""
"OPHIUCHUS\n"
"LngText.text"
msgid "ophiuchus"
-msgstr ""
+msgstr "ofiuko"
#. ⛏ (U+026CF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2858,7 +2858,7 @@ msgctxt ""
"CAR_SLIDING\n"
"LngText.text"
msgid "sliding car"
-msgstr ""
+msgstr "kotxea derrapatzen"
#. ⛑ (U+026D1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3533,7 +3533,7 @@ msgctxt ""
"WHOLE_REST\n"
"LngText.text"
msgid "whole rest"
-msgstr ""
+msgstr "isilune borobila"
#. 𝄼 (U+1D13C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3542,7 +3542,7 @@ msgctxt ""
"HALF_REST\n"
"LngText.text"
msgid "half rest"
-msgstr ""
+msgstr "isilune zuria"
#. 𝄽 (U+1D13D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3551,7 +3551,7 @@ msgctxt ""
"QUARTER_REST\n"
"LngText.text"
msgid "quarter rest"
-msgstr ""
+msgstr "isilune beltza"
#. 𝄾 (U+1D13E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3560,7 +3560,7 @@ msgctxt ""
"EIGHTH_REST\n"
"LngText.text"
msgid "eighth rest"
-msgstr ""
+msgstr "isilune borobila"
#. 𝅝 (U+1D15D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3569,7 +3569,7 @@ msgctxt ""
"MUSICAL_SYMBOL_WHOLE_NOTE\n"
"LngText.text"
msgid "whole note"
-msgstr ""
+msgstr "nota borobila"
#. 𝅗𝅥 (U+1D15E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3578,7 +3578,7 @@ msgctxt ""
"MUSICAL_SYMBOL_HALF_NOTE\n"
"LngText.text"
msgid "half note"
-msgstr ""
+msgstr "nota zuria"
#. 𝅘𝅥 (U+1D15F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3587,7 +3587,7 @@ msgctxt ""
"MUSICAL_SYMBOL_QUARTER_NOTE\n"
"LngText.text"
msgid "quarter note"
-msgstr ""
+msgstr "nota beltza"
#. 𝅘𝅥𝅮 (U+1D160), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3596,7 +3596,7 @@ msgctxt ""
"MUSICAL_SYMBOL_EIGHTH_NOTE\n"
"LngText.text"
msgid "eighth note"
-msgstr ""
+msgstr "kortxea"
#. 𝅘𝅥𝅯 (U+1D161), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3605,7 +3605,7 @@ msgctxt ""
"MUSICAL_SYMBOL_SIXTEENTH_NOTE\n"
"LngText.text"
msgid "sixteenth note"
-msgstr ""
+msgstr "semikortxea"
#. 🀄 (U+1F004), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3902,7 +3902,7 @@ msgctxt ""
"CRESCENT_MOON\n"
"LngText.text"
msgid "crescent moon"
-msgstr ""
+msgstr "ilgora"
#. 🌚 (U+1F31A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4109,7 +4109,7 @@ msgctxt ""
"FOUR_LEAF_CLOVER\n"
"LngText.text"
msgid "clover"
-msgstr ""
+msgstr "hirusta"
#. 🍁 (U+1F341), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4163,7 +4163,7 @@ msgctxt ""
"AUBERGINE\n"
"LngText.text"
msgid "eggplant"
-msgstr ""
+msgstr "alberjinia"
#. 🍇 (U+1F347), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4181,7 +4181,7 @@ msgctxt ""
"MELON\n"
"LngText.text"
msgid "melon"
-msgstr ""
+msgstr "meloia"
#. 🍉 (U+1F349), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4190,7 +4190,7 @@ msgctxt ""
"WATERMELON\n"
"LngText.text"
msgid "watermelon"
-msgstr ""
+msgstr "angurria"
#. 🍊 (U+1F34A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4226,7 +4226,7 @@ msgctxt ""
"PINEAPPLE\n"
"LngText.text"
msgid "pineapple"
-msgstr ""
+msgstr "anana"
#. 🍎 (U+1F34E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4253,7 +4253,7 @@ msgctxt ""
"PEAR\n"
"LngText.text"
msgid "pear"
-msgstr ""
+msgstr "madaria"
#. 🍑 (U+1F351), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4316,7 +4316,7 @@ msgctxt ""
"POULTRY_LEG\n"
"LngText.text"
msgid "poultry leg"
-msgstr ""
+msgstr "oilasko hanka"
#. 🍘 (U+1F358), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4325,7 +4325,7 @@ msgctxt ""
"RICE_CRACKER\n"
"LngText.text"
msgid "rice cracker"
-msgstr ""
+msgstr "arroz-torta"
#. 🍙 (U+1F359), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4334,7 +4334,7 @@ msgctxt ""
"RICE_BALL\n"
"LngText.text"
msgid "rice ball"
-msgstr ""
+msgstr "arroz-bola"
#. 🍚 (U+1F35A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4388,7 +4388,7 @@ msgctxt ""
"FRENCH_FRIES\n"
"LngText.text"
msgid "fries"
-msgstr ""
+msgstr "patata frijituak"
#. 🍠 (U+1F360), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4397,7 +4397,7 @@ msgctxt ""
"ROASTED_SWEET_POTATO\n"
"LngText.text"
msgid "sweet potato"
-msgstr ""
+msgstr "batata"
#. 🍡 (U+1F361), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4406,7 +4406,7 @@ msgctxt ""
"DANGO\n"
"LngText.text"
msgid "dango"
-msgstr ""
+msgstr "dangoa"
#. 🍢 (U+1F362), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4415,7 +4415,7 @@ msgctxt ""
"ODEN\n"
"LngText.text"
msgid "oden"
-msgstr ""
+msgstr "odena"
#. 🍣 (U+1F363), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4433,7 +4433,7 @@ msgctxt ""
"FRIED_SHRIMP\n"
"LngText.text"
msgid "fried shrimp"
-msgstr ""
+msgstr "izkira frijitua"
#. 🍥 (U+1F365), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4460,7 +4460,7 @@ msgctxt ""
"SHAVED_ICE\n"
"LngText.text"
msgid "shaved ice"
-msgstr ""
+msgstr "txingorkia"
#. 🍨 (U+1F368), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4487,7 +4487,7 @@ msgctxt ""
"COOKIE\n"
"LngText.text"
msgid "cookie"
-msgstr ""
+msgstr "gaileta"
#. 🍫 (U+1F36B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4523,7 +4523,7 @@ msgctxt ""
"CUSTARD\n"
"LngText.text"
msgid "custard"
-msgstr ""
+msgstr "krema"
#. 🍯 (U+1F36F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4550,7 +4550,7 @@ msgctxt ""
"BENTO_BOX\n"
"LngText.text"
msgid "bento"
-msgstr ""
+msgstr "bentoa"
#. 🍲 (U+1F372), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4559,7 +4559,7 @@ msgctxt ""
"POT_OF_FOOD\n"
"LngText.text"
msgid "stew"
-msgstr ""
+msgstr "lapikokoa"
#. 🍳 (U+1F373), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4658,7 +4658,7 @@ msgctxt ""
"RIBBON\n"
"LngText.text"
msgid "ribbon"
-msgstr ""
+msgstr "xingola"
#. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4721,7 +4721,7 @@ msgctxt ""
"FIREWORK_SPARKLER\n"
"LngText.text"
msgid "sparkler"
-msgstr ""
+msgstr "bengala"
#. 🎈 (U+1F388), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4748,7 +4748,7 @@ msgctxt ""
"CONFETTI_BALL\n"
"LngText.text"
msgid "confetti ball"
-msgstr ""
+msgstr "konfeti-bola"
#. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4757,7 +4757,7 @@ msgctxt ""
"TANABATA_TREE\n"
"LngText.text"
msgid "tanabata tree"
-msgstr ""
+msgstr "tanabata zuhaitza"
#. 🎌 (U+1F38C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4775,7 +4775,7 @@ msgctxt ""
"PINE_DECORATION\n"
"LngText.text"
msgid "bamboo"
-msgstr ""
+msgstr "banbu"
#. 🎎 (U+1F38E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4802,7 +4802,7 @@ msgctxt ""
"WIND_CHIME\n"
"LngText.text"
msgid "wind chime"
-msgstr ""
+msgstr "fuurin"
#. 🎑 (U+1F391), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4811,7 +4811,7 @@ msgctxt ""
"MOON_VIEWING_CEREMONY\n"
"LngText.text"
msgid "rice scene"
-msgstr ""
+msgstr "arrozaren eszena"
#. 🎒 (U+1F392), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4820,7 +4820,7 @@ msgctxt ""
"SCHOOL_SATCHEL\n"
"LngText.text"
msgid "school satchel"
-msgstr ""
+msgstr "eskolako zakutoa"
#. 🎓 (U+1F393), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4838,7 +4838,7 @@ msgctxt ""
"CAROUSEL_HORSE\n"
"LngText.text"
msgid "carousel horse"
-msgstr ""
+msgstr "zaldiko-maldiko"
#. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4847,7 +4847,7 @@ msgctxt ""
"FERRIS_WHEEL\n"
"LngText.text"
msgid "ferris wheel"
-msgstr ""
+msgstr "ferri-gurpila"
#. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4856,7 +4856,7 @@ msgctxt ""
"ROLLER_COASTER\n"
"LngText.text"
msgid "roller coaster"
-msgstr ""
+msgstr "mendi errusiarra"
#. 🎣 (U+1F3A3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4901,7 +4901,7 @@ msgctxt ""
"HEADPHONE\n"
"LngText.text"
msgid "headphone"
-msgstr ""
+msgstr "entzungailuak"
#. 🎨 (U+1F3A8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4919,7 +4919,7 @@ msgctxt ""
"TOP_HAT\n"
"LngText.text"
msgid "top hat"
-msgstr ""
+msgstr "kapela luze"
#. 🎪 (U+1F3AA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4928,7 +4928,7 @@ msgctxt ""
"CIRCUS_TENT\n"
"LngText.text"
msgid "circus tent"
-msgstr ""
+msgstr "zirko-karpa"
#. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4946,7 +4946,7 @@ msgctxt ""
"CLAPPER_BOARD\n"
"LngText.text"
msgid "clapper"
-msgstr ""
+msgstr "klaketa"
#. 🎭 (U+1F3AD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4982,7 +4982,7 @@ msgctxt ""
"SLOT_MACHINE\n"
"LngText.text"
msgid "slot machine"
-msgstr ""
+msgstr "txanpon-makina"
#. 🎱 (U+1F3B1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5144,7 +5144,7 @@ msgctxt ""
"SNOWBOARDER\n"
"LngText.text"
msgid "snowboarder"
-msgstr ""
+msgstr "snowboarder"
#. 🏃 (U+1F3C3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5342,7 +5342,7 @@ msgctxt ""
"IZAKAYA_LANTERN\n"
"LngText.text"
msgid "lantern"
-msgstr ""
+msgstr "argiontzia"
#. 🏯 (U+1F3EF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5387,7 +5387,7 @@ msgctxt ""
"OX\n"
"LngText.text"
msgid "ox"
-msgstr ""
+msgstr "idia"
#. 🐃 (U+1F403), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5396,7 +5396,7 @@ msgctxt ""
"WATER_BUFFALO\n"
"LngText.text"
msgid "water buffalo"
-msgstr ""
+msgstr "asiar bufaloa"
#. 🐄 (U+1F404), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5423,7 +5423,7 @@ msgctxt ""
"LEOPARD\n"
"LngText.text"
msgid "leopard"
-msgstr ""
+msgstr "lehoinabar"
#. 🐇 (U+1F407), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5504,7 +5504,7 @@ msgctxt ""
"RAM\n"
"LngText.text"
msgid "ram"
-msgstr ""
+msgstr "ahari"
#. 🐐 (U+1F410), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5540,7 +5540,7 @@ msgctxt ""
"ROOSTER\n"
"LngText.text"
msgid "rooster"
-msgstr ""
+msgstr "oilar"
#. 🐔 (U+1F414), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5576,7 +5576,7 @@ msgctxt ""
"BOAR\n"
"LngText.text"
msgid "boar"
-msgstr ""
+msgstr "aketz"
#. 🐘 (U+1F418), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5684,7 +5684,7 @@ msgctxt ""
"HATCHING_CHICK\n"
"LngText.text"
msgid "chick"
-msgstr ""
+msgstr "txita"
#. 🐤 (U+1F424), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5693,7 +5693,7 @@ msgctxt ""
"BABY_CHICK\n"
"LngText.text"
msgid "chick2"
-msgstr ""
+msgstr "txita2"
#. 🐥 (U+1F425), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5702,7 +5702,7 @@ msgctxt ""
"FRONT-FACING_BABY_CHICK\n"
"LngText.text"
msgid "chick3"
-msgstr ""
+msgstr "txita3"
#. 🐦 (U+1F426), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5738,7 +5738,7 @@ msgctxt ""
"POODLE\n"
"LngText.text"
msgid "poodle"
-msgstr ""
+msgstr "kanitxea"
#. 🐪 (U+1F42A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5882,7 +5882,7 @@ msgctxt ""
"HAMSTER_FACE\n"
"LngText.text"
msgid "hamster"
-msgstr ""
+msgstr "hamster"
#. 🐺 (U+1F43A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5918,7 +5918,7 @@ msgctxt ""
"PIG_NOSE\n"
"LngText.text"
msgid "pig nose"
-msgstr ""
+msgstr "txerri sudurra"
#. 🐾 (U+1F43E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6071,7 +6071,7 @@ msgctxt ""
"OPEN_HANDS_SIGN\n"
"LngText.text"
msgid "open hands"
-msgstr ""
+msgstr "esku irekiak"
#. 👑 (U+1F451), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6089,7 +6089,7 @@ msgctxt ""
"WOMANS_HAT\n"
"LngText.text"
msgid "hat"
-msgstr "txanoa"
+msgstr "kapela"
#. 👓 (U+1F453), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6251,7 +6251,7 @@ msgctxt ""
"BUST_IN_SILHOUETTE\n"
"LngText.text"
msgid "bust"
-msgstr ""
+msgstr "bular"
#. 👥 (U+1F465), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6260,7 +6260,7 @@ msgctxt ""
"BUSTS_IN_SILHOUETTE\n"
"LngText.text"
msgid "busts"
-msgstr ""
+msgstr "bularrak"
#. 👦 (U+1F466), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6377,7 +6377,7 @@ msgctxt ""
"MAN_WITH_GUA_PI_MAO\n"
"LngText.text"
msgid "hat2"
-msgstr "txanoa2"
+msgstr "kapela2"
#. 👳 (U+1F473), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6395,7 +6395,7 @@ msgctxt ""
"OLDER_MAN\n"
"LngText.text"
msgid "older man"
-msgstr ""
+msgstr "adineko gizona"
#. 👵 (U+1F475), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6404,7 +6404,7 @@ msgctxt ""
"OLDER_WOMAN\n"
"LngText.text"
msgid "older woman"
-msgstr ""
+msgstr "adineko emakumea"
#. 👶 (U+1F476), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6494,7 +6494,7 @@ msgctxt ""
"IMP\n"
"LngText.text"
msgid "imp"
-msgstr ""
+msgstr "iratxo"
#. 💀 (U+1F480), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6539,7 +6539,7 @@ msgctxt ""
"LIPSTICK\n"
"LngText.text"
msgid "lipstick"
-msgstr ""
+msgstr "ezpainetako"
#. 💅 (U+1F485), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6548,7 +6548,7 @@ msgctxt ""
"NAIL_POLISH\n"
"LngText.text"
msgid "nail care"
-msgstr ""
+msgstr "azazkalen zaintza"
#. 💆 (U+1F486), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6566,7 +6566,7 @@ msgctxt ""
"HAIRCUT\n"
"LngText.text"
msgid "haircut"
-msgstr ""
+msgstr "orrazkera"
#. 💈 (U+1F488), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6575,7 +6575,7 @@ msgctxt ""
"BARBER_POLE\n"
"LngText.text"
msgid "barber"
-msgstr ""
+msgstr "bizargin"
#. 💉 (U+1F489), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6584,7 +6584,7 @@ msgctxt ""
"SYRINGE\n"
"LngText.text"
msgid "syringe"
-msgstr ""
+msgstr "xiringa"
#. 💊 (U+1F48A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6647,7 +6647,7 @@ msgctxt ""
"BOUQUET\n"
"LngText.text"
msgid "bouquet"
-msgstr ""
+msgstr "lore-sorta"
#. 💑 (U+1F491), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6683,7 +6683,7 @@ msgctxt ""
"BROKEN_HEART\n"
"LngText.text"
msgid "broken heart"
-msgstr ""
+msgstr "bihotz hautsia"
#. 💕 (U+1F495), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6701,7 +6701,7 @@ msgctxt ""
"SPARKLING_HEART\n"
"LngText.text"
msgid "sparkling heart"
-msgstr ""
+msgstr "bihotz dirdiratsua"
#. 💗 (U+1F497), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6710,7 +6710,7 @@ msgctxt ""
"GROWING_HEART\n"
"LngText.text"
msgid "heartpulse"
-msgstr ""
+msgstr "bihotz-pultsua"
#. 💘 (U+1F498), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6737,7 +6737,7 @@ msgctxt ""
"REVOLVING_HEARTS\n"
"LngText.text"
msgid "revolving hearts"
-msgstr ""
+msgstr "bihotzak biraka"
#. 💟 (U+1F49F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6755,7 +6755,7 @@ msgctxt ""
"DIAMOND_SHAPE_WITH_A_DOT_INSIDE\n"
"LngText.text"
msgid "cuteness"
-msgstr ""
+msgstr "poxpolin"
#. 💡 (U+1F4A1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6764,7 +6764,7 @@ msgctxt ""
"ELECTRIC_LIGHT_BULB\n"
"LngText.text"
msgid "bulb"
-msgstr ""
+msgstr "bonbilla"
#. 💢 (U+1F4A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6800,7 +6800,7 @@ msgctxt ""
"COLLISION_SYMBOL\n"
"LngText.text"
msgid "boom"
-msgstr ""
+msgstr "danba"
#. 💦 (U+1F4A6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6863,7 +6863,7 @@ msgctxt ""
"SPEECH_BALLOON\n"
"LngText.text"
msgid "speech balloon"
-msgstr ""
+msgstr "hizketa globoa"
#. 💭 (U+1F4AD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6872,7 +6872,7 @@ msgctxt ""
"THOUGHT_BALLOON\n"
"LngText.text"
msgid "thought balloon"
-msgstr ""
+msgstr "pentsamendu globoa"
#. 💮 (U+1F4AE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6917,7 +6917,7 @@ msgctxt ""
"HEAVY_DOLLAR_SIGN\n"
"LngText.text"
msgid "heavy dollar sign"
-msgstr ""
+msgstr "dolar ikur pisutsua"
#. 💳 (U+1F4B3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6980,7 +6980,7 @@ msgctxt ""
"CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n"
"LngText.text"
msgid "chart"
-msgstr ""
+msgstr "diagrama"
#. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7007,7 +7007,7 @@ msgctxt ""
"BRIEFCASE\n"
"LngText.text"
msgid "briefcase"
-msgstr ""
+msgstr "maleta"
#. 💽 (U+1F4BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7016,7 +7016,7 @@ msgctxt ""
"MINIDISC\n"
"LngText.text"
msgid "md"
-msgstr ""
+msgstr "md"
#. 💾 (U+1F4BE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7070,7 +7070,7 @@ msgctxt ""
"PAGE_WITH_CURL\n"
"LngText.text"
msgid "page with curl"
-msgstr ""
+msgstr "kizkurtutako orria"
#. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7079,7 +7079,7 @@ msgctxt ""
"PAGE_FACING_UP\n"
"LngText.text"
msgid "page facing up"
-msgstr ""
+msgstr "orria buruz gora"
#. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7115,7 +7115,7 @@ msgctxt ""
"CHART_WITH_UPWARDS_TREND\n"
"LngText.text"
msgid "char"
-msgstr ""
+msgstr "diag"
#. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7124,7 +7124,7 @@ msgctxt ""
"CHART_WITH_DOWNWARDS_TREND\n"
"LngText.text"
msgid "chart2"
-msgstr ""
+msgstr "diagrama2"
#. 📊 (U+1F4CA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7133,7 +7133,7 @@ msgctxt ""
"BAR_CHART\n"
"LngText.text"
msgid "chart3"
-msgstr ""
+msgstr "diagrama3"
#. 📋 (U+1F4CB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7151,7 +7151,7 @@ msgctxt ""
"PUSHPIN\n"
"LngText.text"
msgid "pushpin"
-msgstr ""
+msgstr "paper-orratza"
#. 📍 (U+1F4CD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7160,7 +7160,7 @@ msgctxt ""
"ROUND_PUSHPIN\n"
"LngText.text"
msgid "round pushpin"
-msgstr ""
+msgstr "paper-orratz borobila"
#. 📎 (U+1F4CE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7169,7 +7169,7 @@ msgctxt ""
"PAPERCLIP\n"
"LngText.text"
msgid "paperclip"
-msgstr ""
+msgstr "klip"
#. 📏 (U+1F4CF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7196,7 +7196,7 @@ msgctxt ""
"BOOKMARK_TABS\n"
"LngText.text"
msgid "bookmark"
-msgstr ""
+msgstr "laster-marka"
#. 📒 (U+1F4D2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7205,7 +7205,7 @@ msgctxt ""
"LEDGER\n"
"LngText.text"
msgid "ledger"
-msgstr ""
+msgstr "kontabilitate liburua"
#. 📓 (U+1F4D3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7277,7 +7277,7 @@ msgctxt ""
"MEMO\n"
"LngText.text"
msgid "memo"
-msgstr ""
+msgstr "oharra"
#. 📞 (U+1F4DE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7286,7 +7286,7 @@ msgctxt ""
"TELEPHONE_RECEIVER\n"
"LngText.text"
msgid "receiver"
-msgstr ""
+msgstr "telefonoa"
#. 📟 (U+1F4DF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7295,7 +7295,7 @@ msgctxt ""
"PAGER\n"
"LngText.text"
msgid "pager"
-msgstr ""
+msgstr "bilagailua"
#. 📠 (U+1F4E0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7331,7 +7331,7 @@ msgctxt ""
"CHEERING_MEGAPHONE\n"
"LngText.text"
msgid "mega"
-msgstr ""
+msgstr "megafonoa"
#. 📤 (U+1F4E4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7340,7 +7340,7 @@ msgctxt ""
"OUTBOX_TRAY\n"
"LngText.text"
msgid "tray"
-msgstr ""
+msgstr "erretilua"
#. 📥 (U+1F4E5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7349,7 +7349,7 @@ msgctxt ""
"INBOX_TRAY\n"
"LngText.text"
msgid "tray2"
-msgstr ""
+msgstr "erretilua2"
#. 📦 (U+1F4E6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7367,7 +7367,7 @@ msgctxt ""
"E-MAIL_SYMBOL\n"
"LngText.text"
msgid "e-mail"
-msgstr ""
+msgstr "e-posta"
#. 📨 (U+1F4E8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7583,7 +7583,7 @@ msgctxt ""
"SPEAKER\n"
"LngText.text"
msgid "speaker"
-msgstr ""
+msgstr "bozgorailua"
#. 🔉 (U+1F509), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7628,7 +7628,7 @@ msgctxt ""
"LEFT-POINTING_MAGNIFYING_GLASS\n"
"LngText.text"
msgid "mag"
-msgstr ""
+msgstr "lupa"
#. 🔎 (U+1F50E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7637,7 +7637,7 @@ msgctxt ""
"RIGHT-POINTING_MAGNIFYING_GLASS\n"
"LngText.text"
msgid "mag2"
-msgstr ""
+msgstr "lupa2"
#. 🔏 (U+1F50F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7646,7 +7646,7 @@ msgctxt ""
"LOCK_WITH_INK_PEN\n"
"LngText.text"
msgid "lock2"
-msgstr ""
+msgstr "giltzarrapoa2"
#. 🔐 (U+1F510), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7655,7 +7655,7 @@ msgctxt ""
"CLOSED_LOCK_WITH_KEY\n"
"LngText.text"
msgid "lock3"
-msgstr ""
+msgstr "giltzarrapoa3"
#. 🔑 (U+1F511), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7673,7 +7673,7 @@ msgctxt ""
"LOCK\n"
"LngText.text"
msgid "lock"
-msgstr ""
+msgstr "giltzarrapoa"
#. 🔓 (U+1F513), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7682,7 +7682,7 @@ msgctxt ""
"OPEN_LOCK\n"
"LngText.text"
msgid "unlock"
-msgstr ""
+msgstr "giltzez ireki"
#. 🔔 (U+1F514), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7709,7 +7709,7 @@ msgctxt ""
"BOOKMARK\n"
"LngText.text"
msgid "bookmark2"
-msgstr ""
+msgstr "laster-marka2"
#. 🔗 (U+1F517), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7718,7 +7718,7 @@ msgctxt ""
"LINK_SYMBOL\n"
"LngText.text"
msgid "link"
-msgstr ""
+msgstr "esteka"
#. 🔘 (U+1F518), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7727,7 +7727,7 @@ msgctxt ""
"RADIO_BUTTON\n"
"LngText.text"
msgid "radio button"
-msgstr ""
+msgstr "aukera-botoi"
#. 🔞 (U+1F51E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7772,7 +7772,7 @@ msgctxt ""
"WRENCH\n"
"LngText.text"
msgid "wrench"
-msgstr ""
+msgstr "giltza ingelesa"
#. 🔨 (U+1F528), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8141,7 +8141,7 @@ msgctxt ""
"GRINNING_FACE\n"
"LngText.text"
msgid "grinning"
-msgstr ""
+msgstr "irribarretsu"
#. 😁 (U+1F601), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8150,7 +8150,7 @@ msgctxt ""
"GRINNING_FACE_WITH_SMILING_EYES\n"
"LngText.text"
msgid "grin"
-msgstr ""
+msgstr "irribarrea"
#. 😂 (U+1F602), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8186,7 +8186,7 @@ msgctxt ""
"SMILING_FACE_WITH_OPEN_MOUTH_AND_COLD_SWEAT\n"
"LngText.text"
msgid "sweat smile"
-msgstr ""
+msgstr "izerdi irribarre"
#. 😆 (U+1F606), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8213,7 +8213,7 @@ msgctxt ""
"SMILING_FACE_WITH_HORNS\n"
"LngText.text"
msgid "smiling imp"
-msgstr ""
+msgstr "deabrutxoa"
#. 😉 (U+1F609), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8222,7 +8222,7 @@ msgctxt ""
"WINKING_FACE\n"
"LngText.text"
msgid "wink"
-msgstr ""
+msgstr "begi-keinu"
#. 😊 (U+1F60A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8231,7 +8231,7 @@ msgctxt ""
"SMILING_FACE_WITH_SMILING_EYES\n"
"LngText.text"
msgid "blush"
-msgstr ""
+msgstr "gorritu"
#. 😋 (U+1F60B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8240,7 +8240,7 @@ msgctxt ""
"FACE_SAVOURING_DELICIOUS_FOOD\n"
"LngText.text"
msgid "yum"
-msgstr ""
+msgstr "mauka-mauka"
#. 😌 (U+1F60C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8249,7 +8249,7 @@ msgctxt ""
"RELIEVED_FACE\n"
"LngText.text"
msgid "relieved"
-msgstr ""
+msgstr "lasaitua"
#. 😍 (U+1F60D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8276,7 +8276,7 @@ msgctxt ""
"SMIRKING_FACE\n"
"LngText.text"
msgid "smirk"
-msgstr ""
+msgstr "irribarretxo"
#. 😐 (U+1F610), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8303,7 +8303,7 @@ msgctxt ""
"UNAMUSED_FACE\n"
"LngText.text"
msgid "unamused"
-msgstr ""
+msgstr "aspertuta"
#. 😓 (U+1F613), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8339,7 +8339,7 @@ msgctxt ""
"CONFOUNDED_FACE\n"
"LngText.text"
msgid "confounded"
-msgstr ""
+msgstr "nahastuta"
#. 😗 (U+1F617), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8411,7 +8411,7 @@ msgctxt ""
"DISAPPOINTED_FACE\n"
"LngText.text"
msgid "disappointed"
-msgstr ""
+msgstr "desengainatuta"
#. 😟 (U+1F61F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8456,7 +8456,7 @@ msgctxt ""
"PERSEVERING_FACE\n"
"LngText.text"
msgid "persevere"
-msgstr ""
+msgstr "ekin"
#. 😤 (U+1F624), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8474,7 +8474,7 @@ msgctxt ""
"DISAPPOINTED_BUT_RELIEVED_FACE\n"
"LngText.text"
msgid "disappointed relieved"
-msgstr ""
+msgstr "desengainatuta lasaituta"
#. 😦 (U+1F626), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8483,7 +8483,7 @@ msgctxt ""
"FROWNING_FACE_WITH_OPEN_MOUTH\n"
"LngText.text"
msgid "frowning"
-msgstr ""
+msgstr "kopetilun"
#. 😧 (U+1F627), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8492,7 +8492,7 @@ msgctxt ""
"ANGUISHED_FACE\n"
"LngText.text"
msgid "anguished"
-msgstr ""
+msgstr "itolarrian"
#. 😨 (U+1F628), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8510,7 +8510,7 @@ msgctxt ""
"WEARY_FACE\n"
"LngText.text"
msgid "weary"
-msgstr ""
+msgstr "nazkatuta"
#. 😪 (U+1F62A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8537,7 +8537,7 @@ msgctxt ""
"GRIMACING_FACE\n"
"LngText.text"
msgid "grimacing"
-msgstr ""
+msgstr "imintzioka"
#. 😭 (U+1F62D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8546,7 +8546,7 @@ msgctxt ""
"LOUDLY_CRYING_FACE\n"
"LngText.text"
msgid "sob"
-msgstr ""
+msgstr "negar"
#. 😮 (U+1F62E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8564,7 +8564,7 @@ msgctxt ""
"HUSHED_FACE\n"
"LngText.text"
msgid "hushed"
-msgstr ""
+msgstr "ixo"
#. 😰 (U+1F630), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8591,7 +8591,7 @@ msgctxt ""
"ASTONISHED_FACE\n"
"LngText.text"
msgid "astonished"
-msgstr ""
+msgstr "txundituta"
#. 😳 (U+1F633), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8600,7 +8600,7 @@ msgctxt ""
"FLUSHED_FACE\n"
"LngText.text"
msgid "flushed"
-msgstr ""
+msgstr "gorrituta"
#. 😴 (U+1F634), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8618,7 +8618,7 @@ msgctxt ""
"DIZZY_FACE\n"
"LngText.text"
msgid "dizzy face"
-msgstr ""
+msgstr "zorabiatuta"
#. 😶 (U+1F636), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8681,7 +8681,7 @@ msgctxt ""
"CAT_FACE_WITH_WRY_SMILE\n"
"LngText.text"
msgid "smirk cat"
-msgstr ""
+msgstr "katu irribarretxoa"
#. 😽 (U+1F63D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8699,7 +8699,7 @@ msgctxt ""
"POUTING_CAT_FACE\n"
"LngText.text"
msgid "pouting cat"
-msgstr ""
+msgstr "katua muturka"
#. 😿 (U+1F63F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8744,7 +8744,7 @@ msgctxt ""
"PERSON_BOWING_DEEPLY\n"
"LngText.text"
msgid "bow"
-msgstr ""
+msgstr "makur"
#. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8798,7 +8798,7 @@ msgctxt ""
"PERSON_FROWNING\n"
"LngText.text"
msgid "person frowning"
-msgstr ""
+msgstr "pertsona kopetilun"
#. 🙎 (U+1F64E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8807,7 +8807,7 @@ msgctxt ""
"PERSON_WITH_POUTING_FACE\n"
"LngText.text"
msgid "person pouting"
-msgstr ""
+msgstr "pertsona muturka"
#. 🙏 (U+1F64F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8843,7 +8843,7 @@ msgctxt ""
"STEAM_LOCOMOTIVE\n"
"LngText.text"
msgid "steam locomotive"
-msgstr ""
+msgstr "lurrunezko tren-makina"
#. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8852,7 +8852,7 @@ msgctxt ""
"RAILWAY_CAR\n"
"LngText.text"
msgid "railway car"
-msgstr ""
+msgstr "bagoia"
#. 🚄 (U+1F684), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8897,7 +8897,7 @@ msgctxt ""
"LIGHT_RAIL\n"
"LngText.text"
msgid "light rail"
-msgstr ""
+msgstr "tranbia"
#. 🚉 (U+1F689), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8987,7 +8987,7 @@ msgctxt ""
"FIRE_ENGINE\n"
"LngText.text"
msgid "fire engine"
-msgstr ""
+msgstr "suhiltzaile-kamioia"
#. 🚓 (U+1F693), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9068,7 +9068,7 @@ msgctxt ""
"ARTICULATED_LORRY\n"
"LngText.text"
msgid "lorry"
-msgstr ""
+msgstr "kamioia"
#. 🚜 (U+1F69C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9086,7 +9086,7 @@ msgctxt ""
"MONORAIL\n"
"LngText.text"
msgid "monorail"
-msgstr ""
+msgstr "monorraila"
#. 🚞 (U+1F69E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9095,7 +9095,7 @@ msgctxt ""
"MOUNTAIN_RAILWAY\n"
"LngText.text"
msgid "mountain railway"
-msgstr ""
+msgstr "funikularra"
#. 🚟 (U+1F69F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9104,7 +9104,7 @@ msgctxt ""
"SUSPENSION_RAILWAY\n"
"LngText.text"
msgid "suspension railway"
-msgstr ""
+msgstr "zintzilikatutako trenbidea"
#. 🚠 (U+1F6A0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9113,7 +9113,7 @@ msgctxt ""
"MOUNTAIN_CABLEWAY\n"
"LngText.text"
msgid "mountain cableway"
-msgstr ""
+msgstr "teleferikoa"
#. 🚡 (U+1F6A1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9122,7 +9122,7 @@ msgctxt ""
"AERIAL_TRAMWAY\n"
"LngText.text"
msgid "aerial tramway"
-msgstr ""
+msgstr "teleferikoa"
#. 🚢 (U+1F6A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9140,7 +9140,7 @@ msgctxt ""
"ROWBOAT\n"
"LngText.text"
msgid "rowboat"
-msgstr ""
+msgstr "batela"
#. 🚤 (U+1F6A4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9149,7 +9149,7 @@ msgctxt ""
"SPEEDBOAT\n"
"LngText.text"
msgid "speedboat"
-msgstr ""
+msgstr "txalupa bizkorra"
#. 🚥 (U+1F6A5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9185,7 +9185,7 @@ msgctxt ""
"POLICE_CARS_REVOLVING_LIGHT\n"
"LngText.text"
msgid "rotating light"
-msgstr ""
+msgstr "argi biragarria"
#. 🚩 (U+1F6A9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9212,7 +9212,7 @@ msgctxt ""
"NO_ENTRY_SIGN\n"
"LngText.text"
msgid "no entry sign"
-msgstr ""
+msgstr "sarrera debekatua seinalea"
#. 🚬 (U+1F6AC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9329,7 +9329,7 @@ msgctxt ""
"CHILDREN_CROSSING\n"
"LngText.text"
msgid "children crossing"
-msgstr ""
+msgstr "umeak gurutzatzen"
#. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9374,7 +9374,7 @@ msgctxt ""
"TOILET\n"
"LngText.text"
msgid "toilet"
-msgstr ""
+msgstr "komuna"
#. 🚾 (U+1F6BE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9383,7 +9383,7 @@ msgctxt ""
"WATER_CLOSET\n"
"LngText.text"
msgid "toilet2"
-msgstr ""
+msgstr "komuna2"
#. 🚿 (U+1F6BF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9428,7 +9428,7 @@ msgctxt ""
"CUSTOMS\n"
"LngText.text"
msgid "customs"
-msgstr ""
+msgstr "mozorroak"
#. 🛄 (U+1F6C4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9446,7 +9446,7 @@ msgctxt ""
"LEFT_LUGGAGE\n"
"LngText.text"
msgid "left luggage"
-msgstr ""
+msgstr "utzitako maletak"
#. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
diff --git a/source/eu/helpcontent2/source/text/sbasic/shared.po b/source/eu/helpcontent2/source/text/sbasic/shared.po
index b3d32671e2d..c04611d467f 100644
--- a/source/eu/helpcontent2/source/text/sbasic/shared.po
+++ b/source/eu/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: 2015-09-01 20:20+0200\n"
-"PO-Revision-Date: 2016-02-27 19:17+0000\n"
+"PO-Revision-Date: 2016-03-13 10:03+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456600672.000000\n"
+"X-POOTLE-MTIME: 1457863437.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -667,7 +667,7 @@ msgctxt ""
"51\n"
"help.text"
msgid "<variable id=\"err18\">18 Process interrupted by user</variable>"
-msgstr "<variable id=\"err18\">18 Erabiltzaileak eten egin du </variable>"
+msgstr "<variable id=\"err18\">18 Erabiltzaileak prozesua eten du</variable>"
#: 00000003.xhp
msgctxt ""
@@ -847,7 +847,7 @@ msgctxt ""
"71\n"
"help.text"
msgid "<variable id=\"err71\">71 Disk not ready</variable>"
-msgstr "<variable id=\"err71\">71 Diskoa ez dago prest </variable>"
+msgstr "<variable id=\"err71\">71 Diskoa ez dago prest</variable>"
#: 00000003.xhp
msgctxt ""
@@ -883,7 +883,7 @@ msgctxt ""
"75\n"
"help.text"
msgid "<variable id=\"err76\">76 Path not found</variable>"
-msgstr "<variable id=\"err76\">76 Bide-izena ez da aurkitu </variable>"
+msgstr "<variable id=\"err76\">76 Bide-izena ez da aurkitu</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"par_id31469418\n"
"help.text"
msgid "<variable id=\"err290\">290 Data are in wrong format</variable>"
-msgstr "<variable id=\"err10\">10 Definizioa bikoiztuta </variable>"
+msgstr "<variable id=\"err290\">290 Datuak okerreko formatuan daude</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"par_id31469416\n"
"help.text"
msgid "<variable id=\"err292\">292 DDE connection interrupted or modified</variable>"
-msgstr "<variable id=\"err18\">18 Erabiltzaileak eten egin du </variable>"
+msgstr "<variable id=\"err292\">292 DDE konexioa eten edo aldatu da</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1030,7 +1030,7 @@ msgctxt ""
"par_id31469415\n"
"help.text"
msgid "<variable id=\"err293\">293 DDE method invoked with no channel open</variable>"
-msgstr "<variable id=\"err423\">423 Propietatea edo metodoa ez da aurkitu </variable>"
+msgstr "<variable id=\"err293\">293 DDE metodoa deitu da kanalik ireki gabe</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1054,7 +1054,7 @@ msgctxt ""
"par_id31469412\n"
"help.text"
msgid "<variable id=\"err296\">296 Paste link already performed</variable>"
-msgstr "<variable id=\"err76\">76 Bide-izena ez da aurkitu </variable>"
+msgstr "<variable id=\"err296\">296 esteka dagoeneko itsatsi da</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1062,7 +1062,7 @@ msgctxt ""
"par_id31469411\n"
"help.text"
msgid "<variable id=\"err297\">297 Link mode cannot be set due to invalid link topic</variable>"
-msgstr "<variable id=\"err71\">71 Diskoa ez dago prest </variable>"
+msgstr "<variable id=\"err297\">297 Ezin da esteka modua ezarri esteka gaia baliogabea delako</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1070,7 +1070,7 @@ msgctxt ""
"par_id31469410\n"
"help.text"
msgid "<variable id=\"err298\">298 DDE requires the DDEML.DLL file</variable>"
-msgstr "<variable id=\"err424\">424 Objektua behar da </variable>"
+msgstr "<variable id=\"err298\">298 DDEk DDEML.DLL fitxategia behar du</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1097,7 +1097,7 @@ msgctxt ""
"81\n"
"help.text"
msgid "<variable id=\"err366\">366 Object is not available</variable>"
-msgstr "<variable id=\"err68\">68 Gailua ez dago erabilgarri </variable>"
+msgstr "<variable id=\"err366\">366 Objektua ez dago erabilgarri</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1151,7 +1151,7 @@ msgctxt ""
"87\n"
"help.text"
msgid "<variable id=\"err424\">424 Object required</variable>"
-msgstr "<variable id=\"err424\">424 Objektua behar da </variable>"
+msgstr "<variable id=\"err424\">424 Objektua behar da</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1169,7 +1169,7 @@ msgctxt ""
"89\n"
"help.text"
msgid "<variable id=\"err430\">430 OLE Automation is not supported by this object</variable>"
-msgstr "<variable id=\"err440\">440 OLE automatizazio-errorea </variable>"
+msgstr "<variable id=\"err430\">430 OLE Automatizazioa ez dago jasanda objektu honetan</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1178,7 +1178,7 @@ msgctxt ""
"90\n"
"help.text"
msgid "<variable id=\"err438\">438 This property or method is not supported by the object</variable>"
-msgstr "<variable id=\"err423\">423 Propietatea edo metodoa ez da aurkitu </variable>"
+msgstr "<variable id=\"err438\">438 objektuak ez du euskarririk propietate edo metodo honentzat</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1205,7 +1205,7 @@ msgctxt ""
"93\n"
"help.text"
msgid "<variable id=\"err446\">446 Named arguments are not supported by given object</variable>"
-msgstr "<variable id=\"err448\">448 Zehaztutako argumentua ez da aurkitu </variable>"
+msgstr "<variable id=\"err446\">446 emandako objektuak ez du euskarririk izendatutako argumentuentzat</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"94\n"
"help.text"
msgid "<variable id=\"err447\">447 The current locale setting is not supported by the given object</variable>"
-msgstr "<variable id=\"err445\">445 Objektuak ez du ekintza hori onartzen </variable>"
+msgstr "<variable id=\"err447\">447 Objektuak ez du uneko ezarpen lokalarentzat euskarririk</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1285,7 +1285,7 @@ msgctxt ""
"par_id31455951\n"
"help.text"
msgid "<variable id=\"err951\">951 Unexpected symbol:</variable>"
-msgstr "<variable id=\"err51\">51 Barneko errorea </variable>"
+msgstr "<variable id=\"err951\">951 Ustekabeko sinboloa:</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1293,7 +1293,7 @@ msgctxt ""
"par_id31455952\n"
"help.text"
msgid "<variable id=\"err952\">952 Expected:</variable>"
-msgstr "<variable id=\"err424\">424 Objektua behar da </variable>"
+msgstr "<variable id=\"err952\">952 Espero zena:</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1309,7 +1309,7 @@ msgctxt ""
"par_id31455954\n"
"help.text"
msgid "<variable id=\"err954\">954 Variable expected</variable>"
-msgstr "<variable id=\"err12\">12 Aldagaia definitu gabe </variable>"
+msgstr "<variable id=\"err954\">954 Aldagaia espero zen</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1341,7 +1341,7 @@ msgctxt ""
"par_id31455958\n"
"help.text"
msgid "<variable id=\"err958\">958 Sub procedure or function procedure already defined</variable>"
-msgstr "<variable id=\"err35\">35 Sub edo Function zehaztu gabe </variable>"
+msgstr "<variable id=\"err958\">958 Azpi prozedura edo funtzio prozedura badago zehaztuta</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1365,7 +1365,7 @@ msgctxt ""
"par_id31455961\n"
"help.text"
msgid "<variable id=\"err961\">961 Array or procedure not found</variable>"
-msgstr "<variable id=\"err76\">76 Bide-izena ez da aurkitu </variable>"
+msgstr "<variable id=\"err961\">961 Matrizea edo prozedura ez da aurkitu</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1373,7 +1373,7 @@ msgctxt ""
"par_id31455962\n"
"help.text"
msgid "<variable id=\"err962\">962 Procedure not found</variable>"
-msgstr "<variable id=\"err76\">76 Bide-izena ez da aurkitu </variable>"
+msgstr "<variable id=\"err962\">962 Prozedura ez da aurkitu</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1381,7 +1381,7 @@ msgctxt ""
"par_id31455963\n"
"help.text"
msgid "<variable id=\"err963\">963 Label undefined</variable>"
-msgstr "<variable id=\"err12\">12 Aldagaia definitu gabe </variable>"
+msgstr "<variable id=\"err963\">963 Etiketa ez dago definituta</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1389,7 +1389,7 @@ msgctxt ""
"par_id31455964\n"
"help.text"
msgid "<variable id=\"err964\">964 Unknown data type</variable>"
-msgstr "<variable id=\"err6\">6 Gainkezkatzea </variable>"
+msgstr "<variable id=\"err964\">964 Datu mota ezezaguna</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1400,6 +1400,7 @@ msgid "<variable id=\"err965\">965 Exit expected</variable>"
msgstr "<variable id=\"err965\">965 Exit espero zen</variable>"
#: 00000003.xhp
+#, fuzzy
msgctxt ""
"00000003.xhp\n"
"par_id31455966\n"
@@ -1413,7 +1414,7 @@ msgctxt ""
"par_id31455967\n"
"help.text"
msgid "<variable id=\"err967\">967 Parentheses do not match</variable>"
-msgstr "<variable id=\"err76\">76 Bide-izena ez da aurkitu </variable>"
+msgstr "<variable id=\"err967\">967 Parentesiak ez datoz bat</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1421,7 +1422,7 @@ msgctxt ""
"par_id31455968\n"
"help.text"
msgid "<variable id=\"err968\">968 Symbol already defined differently</variable>"
-msgstr "<variable id=\"err8\">8 Taulak baditu neurriak lehendik </variable>"
+msgstr "<variable id=\"err968\">968 Sinboloa aurretik definitu da desberdin</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1429,7 +1430,7 @@ msgctxt ""
"par_id31455969\n"
"help.text"
msgid "<variable id=\"err969\">969 Parameters do not correspond to procedure</variable>"
-msgstr "<variable id=\"err76\">76 Bide-izena ez da aurkitu </variable>"
+msgstr "<variable id=\"err969\">969 Parametroak ez datoz bat prozedurarekin</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1445,7 +1446,7 @@ msgctxt ""
"par_id31455971\n"
"help.text"
msgid "<variable id=\"err971\">971 Array must be dimensioned</variable>"
-msgstr "<variable id=\"err8\">8 Taulak baditu neurriak lehendik </variable>"
+msgstr "<variable id=\"err971\">971 Matrizeak neurriak behar ditu</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1453,7 +1454,7 @@ msgctxt ""
"par_id31455972\n"
"help.text"
msgid "<variable id=\"err972\">972 Else/Endif without If</variable>"
-msgstr "<variable id=\"err20\">20 Berrekin errorerik gabe </variable>"
+msgstr "<variable id=\"err972\">972 Else/Endif If gabe</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1461,7 +1462,7 @@ msgctxt ""
"par_id31455973\n"
"help.text"
msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
-msgstr "<variable id=\"err5\">5 Baliogabeko prozedura-deia </variable>"
+msgstr "<variable id=\"err973\">973 ez da onartzen prozedura batean</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1469,7 +1470,7 @@ msgctxt ""
"par_id31455974\n"
"help.text"
msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
-msgstr "<variable id=\"err94\">94 Null-aren baliogabeko erabilera </variable>"
+msgstr "<variable id=\"err974\">974 ez da onartzen prozedura batetik kanpo</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1485,7 +1486,7 @@ msgctxt ""
"par_id31455976\n"
"help.text"
msgid "<variable id=\"err976\">976 Unknown option:</variable>"
-msgstr "<variable id=\"err76\">76 Bide-izena ez da aurkitu </variable>"
+msgstr "<variable id=\"err976\">976 Aukera ezezaguna:</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1493,7 +1494,7 @@ msgctxt ""
"par_id31455977\n"
"help.text"
msgid "<variable id=\"err977\">977 Constant redefined</variable>"
-msgstr "<variable id=\"err67\">67 Fitxategi gehiegi </variable>"
+msgstr "<variable id=\"err977\">977 Konstantea birdefinitu da</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1501,7 +1502,7 @@ msgctxt ""
"par_id31455978\n"
"help.text"
msgid "<variable id=\"err978\">978 Program too large</variable>"
-msgstr "<variable id=\"err76\">76 Bide-izena ez da aurkitu </variable>"
+msgstr "<variable id=\"err978\">978 Programa handiegia da</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1509,7 +1510,7 @@ msgctxt ""
"par_id31455979\n"
"help.text"
msgid "<variable id=\"err979\">979 Strings or arrays not permitted</variable>"
-msgstr "<variable id=\"err71\">71 Diskoa ez dago prest </variable>"
+msgstr "<variable id=\"err979\">979 Ez dira onartzen kateak eta matrizeak</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1517,7 +1518,7 @@ msgctxt ""
"par_id31455980\n"
"help.text"
msgid "<variable id=\"err1000\">1000 Object does not have this property</variable>"
-msgstr "<variable id=\"err91\">91 Objektu-aldagaia ez da ezarri </variable>"
+msgstr "<variable id=\"err1000\">1000 Objektuak ez du propietate hau</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1525,7 +1526,7 @@ msgctxt ""
"par_id31455981\n"
"help.text"
msgid "<variable id=\"err1001\">1001 Object does not have this method</variable>"
-msgstr "<variable id=\"err438\">438 Objektuak ez du metodoa onartzen </variable>"
+msgstr "<variable id=\"err1001\">1001 Objektuak ez du metodo hau</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1533,7 +1534,7 @@ msgctxt ""
"par_id31455982\n"
"help.text"
msgid "<variable id=\"err1002\">1002 Required argument lacking</variable>"
-msgstr "<variable id=\"err10\">10 Definizioa bikoiztuta </variable>"
+msgstr "<variable id=\"err1002\">1002 Ezinbesteko argumentua falta da</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1541,7 +1542,7 @@ msgctxt ""
"par_id31455983\n"
"help.text"
msgid "<variable id=\"err1003\">1003 Invalid number of arguments</variable>"
-msgstr "<variable id=\"err450\">450 Okerreko argumentu kopurua </variable>"
+msgstr "<variable id=\"err1003\">1003 argumentu kopuru baliogabea</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1549,7 +1550,7 @@ msgctxt ""
"par_id31455984\n"
"help.text"
msgid "<variable id=\"err1004\">1004 Error executing a method</variable>"
-msgstr "<variable id=\"err48\">48 Errorea DLL kargatzean </variable>"
+msgstr "<variable id=\"err1004\">1004 Errorea metodo bat exekutatzean</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1557,7 +1558,7 @@ msgctxt ""
"par_id31455985\n"
"help.text"
msgid "<variable id=\"err1005\">1005 Unable to set property</variable>"
-msgstr "<variable id=\"err51\">51 Barneko errorea </variable>"
+msgstr "<variable id=\"err1005\">1005 Ezin izan da propietatea ezarri</variable>"
#: 00000003.xhp
msgctxt ""
@@ -1565,7 +1566,7 @@ msgctxt ""
"par_id31455986\n"
"help.text"
msgid "<variable id=\"err1006\">1006 Unable to determine property</variable>"
-msgstr "<variable id=\"err12\">12 Aldagaia definitu gabe </variable>"
+msgstr "<variable id=\"err1006\">1006 ezin izan da propietatea zehaztu</variable>"
#: 01000000.xhp
msgctxt ""
@@ -2718,7 +2719,7 @@ msgctxt ""
"60\n"
"help.text"
msgid "Public VarName As TYPENAME"
-msgstr "PUBLIC AldagaiIzena As MotaIzena"
+msgstr "Public AldagaiIzena As MOTAIZENA"
#: 01020300.xhp
msgctxt ""
@@ -2736,7 +2737,7 @@ msgctxt ""
"62\n"
"help.text"
msgid "Private VarName As TYPENAME"
-msgstr "PUBLIC AldagaiIzena As MotaIzena"
+msgstr "Private AldagaiIzena As MOTAIZENA"
#: 01020300.xhp
msgctxt ""
@@ -2748,14 +2749,13 @@ msgid "The variable is only valid in this module."
msgstr "Aldagaia modulu honetan bakarrik da baliozkoa."
#: 01020300.xhp
-#, fuzzy
msgctxt ""
"01020300.xhp\n"
"par_id3150886\n"
"64\n"
"help.text"
msgid "Dim VarName As TYPENAME"
-msgstr "PUBLIC AldagaiIzena As MotaIzena"
+msgstr "Dim AldagaiIzena As MOTAIZENA"
#: 01020300.xhp
msgctxt ""
@@ -2838,7 +2838,7 @@ msgctxt ""
"67\n"
"help.text"
msgid "Static VarName As TYPENAME"
-msgstr "STATIC AldagaiIzena As MotaIzena"
+msgstr "Static AldagaiIzena As MOTAIZENA"
#: 01020300.xhp
msgctxt ""
@@ -14205,13 +14205,12 @@ msgid "Example:"
msgstr "Adibidea:"
#: 03030112.xhp
-#, fuzzy
msgctxt ""
"03030112.xhp\n"
"tit\n"
"help.text"
msgid "CDateFromUnoDate Function [Runtime]"
-msgstr "CDateFromIso funtzioa [exekuzio-garaia]"
+msgstr "CDateFromUnoDate funtzioa [exekuzio-garaia]"
#: 03030112.xhp
#, fuzzy
@@ -14223,14 +14222,13 @@ msgid "<bookmark_value>CDateFromUnoDate function</bookmark_value>"
msgstr "<bookmark_value>CdateFromIso funtzioa</bookmark_value>"
#: 03030112.xhp
-#, fuzzy
msgctxt ""
"03030112.xhp\n"
"hd_id3150620\n"
"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030112.xhp\" name=\"CDateFromUnoDate Function [Runtime]\">CDateFromUnoDate Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso funtzioa [exekuzio-garaia]\">CDateFromIso funtzioa [exekuzio-garaia]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030112.xhp\" name=\"CDateFromUnoDate funtzioa [exekuzio-garaia]\">CDateFromUnoDate funtzioa [exekuzio-garaia]</link>"
#: 03030112.xhp
msgctxt ""
@@ -14403,13 +14401,12 @@ msgid "Example:"
msgstr "Adibidea:"
#: 03030114.xhp
-#, fuzzy
msgctxt ""
"03030114.xhp\n"
"tit\n"
"help.text"
msgid "CDateFromUnoTime Function [Runtime]"
-msgstr "CDateFromIso funtzioa [exekuzio-garaia]"
+msgstr "CDateFromUnoTime funtzioa [exekuzio-garaia]"
#: 03030114.xhp
#, fuzzy
@@ -14421,14 +14418,13 @@ msgid "<bookmark_value>CDateFromUnoTime function</bookmark_value>"
msgstr "<bookmark_value>CdateFromIso funtzioa</bookmark_value>"
#: 03030114.xhp
-#, fuzzy
msgctxt ""
"03030114.xhp\n"
"hd_id3150620\n"
"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030114.xhp\" name=\"CDateFromUnoTime Function [Runtime]\">CDateFromUnoTime Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso funtzioa [exekuzio-garaia]\">CDateFromIso funtzioa [exekuzio-garaia]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030114.xhp\" name=\"CDateFromUnoTime funtzioa [exekuzio-garaia]\">CDateFromUnoTime funtzioa [exekuzio-garaia]</link>"
#: 03030114.xhp
msgctxt ""
@@ -14503,13 +14499,12 @@ msgid "Example:"
msgstr "Adibidea:"
#: 03030115.xhp
-#, fuzzy
msgctxt ""
"03030115.xhp\n"
"tit\n"
"help.text"
msgid "CDateToUnoDateTime Function [Runtime]"
-msgstr "FileDateTime funtzioa [Runtime]"
+msgstr "CDateToUnoDateTime funtzioa [Runtime]"
#: 03030115.xhp
#, fuzzy
@@ -14602,13 +14597,12 @@ msgid "Example:"
msgstr "Adibidea:"
#: 03030116.xhp
-#, fuzzy
msgctxt ""
"03030116.xhp\n"
"tit\n"
"help.text"
msgid "CDateFromUnoDateTime Function [Runtime]"
-msgstr "FileDateTime funtzioa [Runtime]"
+msgstr "CDateFromUnoDateTime funtzioa [Runtime]"
#: 03030116.xhp
#, fuzzy
@@ -14620,14 +14614,13 @@ msgid "<bookmark_value>CDateFromUnoDateTime function</bookmark_value>"
msgstr "<bookmark_value>FileDateTime funtzioa</bookmark_value>"
#: 03030116.xhp
-#, fuzzy
msgctxt ""
"03030116.xhp\n"
"hd_id3150620\n"
"1\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030116.xhp\" name=\"CDateFromUnoDateTime Function [Runtime]\">CDateFromUnoDateTime Function [Runtime]</link>"
-msgstr "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso funtzioa [exekuzio-garaia]\">CDateFromIso funtzioa [exekuzio-garaia]</link>"
+msgstr "<link href=\"text/sbasic/shared/03030116.xhp\" name=\"CDateFromUnoDateTime funtzioa [exekuzio-garaia]\">CDateFromUnoDateTime funtzioa [exekuzio-garaia]</link>"
#: 03030116.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/scalc.po b/source/eu/helpcontent2/source/text/scalc.po
index 13abd5393a7..127f1b87123 100644
--- a/source/eu/helpcontent2/source/text/scalc.po
+++ b/source/eu/helpcontent2/source/text/scalc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-02-26 11:22+0000\n"
+"PO-Revision-Date: 2016-03-06 19:50+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456485774.000000\n"
+"X-POOTLE-MTIME: 1457293817.000000\n"
#: main0000.xhp
msgctxt ""
@@ -166,13 +166,12 @@ msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</li
msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">Irudi-mapa</link>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"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=\"Open\">Ireki</link>"
+msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Objektua</link>"
#: main0103.xhp
msgctxt ""
@@ -192,13 +191,12 @@ msgid "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
msgstr "<link href=\"text/scalc/main0103.xhp\" name=\"View\">Ikusi</link>"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"par_id3149456\n"
"help.text"
msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
-msgstr "<ahelp hid=\".\">Dokumentuaren pantailaren gainean erakuztea kontrolatzeko komandoak ditu menu honek.</ahelp>"
+msgstr "<ahelp hid=\".\">Menu honetan dokumentuaren pantailako bistaratzea kontrolatzeko komandoak daude.</ahelp>"
#: main0103.xhp
msgctxt ""
@@ -209,22 +207,20 @@ msgid "Normal"
msgstr "Normala"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"par_idN105AF\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the normal layout view of the sheet.</ahelp>"
-msgstr "<ahelp hid=\".\">Orriaren ikuspegi normala erakusten du.</ahelp>"
+msgstr "<ahelp hid=\".\">Orriaren diseinu ikuspegi normala erakusten du.</ahelp>"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id102720151109097115\n"
"help.text"
msgid "<link href=\"text/shared/01/03100000.xhp\">Page Break</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Ireki</link>"
+msgstr "<link href=\"text/shared/01/03100000.xhp\">Orrialde-jauzia</link>"
#: main0103.xhp
msgctxt ""
@@ -383,13 +379,12 @@ msgid "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Format</link>"
msgstr "<link href=\"text/scalc/main0105.xhp\" name=\"Format\">Formatua</link>"
#: main0105.xhp
-#, fuzzy
msgctxt ""
"main0105.xhp\n"
"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\"> <emph>Formatua</emph> menuko komandoekin formatua eman ahal izango diezu dokumentuko gelaxkei, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objektuei</link> eta gelaxka-edukiei.</ahelp>"
+msgstr "<ahelp hid=\".\"><emph>Formatua</emph> menuko komandoekin formatua eman ahal izango diezu dokumentuko gelaxkei, <link href=\"text/shared/00/00000005.xhp#objekt\" name=\"objects\">objektuei</link>, eta gelaxka-edukiei.</ahelp>"
#: main0105.xhp
#, fuzzy
@@ -552,13 +547,12 @@ msgid "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Window</link>"
msgstr "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Leihoa</link>"
#: main0107.xhp
-#, fuzzy
msgctxt ""
"main0107.xhp\n"
"par_id3150398\n"
"help.text"
msgid "<ahelp hid=\".\">Contains commands for manipulating and displaying document windows.</ahelp>"
-msgstr "<ahelp hid=\".uno:WindowList\">Dokumentuen leihoak bistaratzeko eta kudeatzeko komandoak ditu.</ahelp>"
+msgstr "<ahelp hid=\".\">Dokumentu-leihoak manipulatzeko eta bistaratzeko komandoak ditu.</ahelp>"
#: main0112.xhp
msgctxt ""
@@ -675,13 +669,12 @@ msgid "Sheet"
msgstr ""
#: main0116.xhp
-#, fuzzy
msgctxt ""
"main0116.xhp\n"
"hd_id0906201507390173\n"
"help.text"
msgid "<link href=\"text/scalc/main0116.xhp\">Sheet</link>"
-msgstr "<link href=\"text/scalc/01/12090100.xhp\">Hasi</link>"
+msgstr "<link href=\"text/scalc/main0116.xhp\">Orria</link>"
#: main0116.xhp
msgctxt ""
@@ -700,31 +693,28 @@ msgid "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Move or Copy
msgstr ""
#: main0116.xhp
-#, fuzzy
msgctxt ""
"main0116.xhp\n"
"hd_id3153968\n"
"help.text"
msgid "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">Show Sheet</link>"
-msgstr "<link href=\"text/scalc/01/04050000.xhp\" name=\"Sheet\">Orria</link>"
+msgstr "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">Erakutsi orria</link>"
#: main0116.xhp
-#, fuzzy
msgctxt ""
"main0116.xhp\n"
"hd_id3163708\n"
"help.text"
msgid "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Delete Sheet</link>"
-msgstr "<link href=\"text/scalc/01/02160000.xhp\" name=\"Delete Cells\">Ezabatu gelaxkak</link>"
+msgstr "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Ezabatu orria</link>"
#: main0116.xhp
-#, fuzzy
msgctxt ""
"main0116.xhp\n"
"hd_id3163733308\n"
"help.text"
msgid "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Sheet Events</link>"
-msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Gorde honela</link>"
+msgstr "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Orriaren gertaerak</link>"
#: main0200.xhp
msgctxt ""
@@ -1243,33 +1233,30 @@ msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital
msgstr "Ikus hau ere: <link href=\"text/shared/guide/digital_signatures.xhp\">Sinadura digitalak</link>."
#: main0210.xhp
-#, fuzzy
msgctxt ""
"main0210.xhp\n"
"tit\n"
"help.text"
msgid "Print Preview Bar"
-msgstr "Orrialdearen aurrebista-barra"
+msgstr "Inprimatzeko aurrebistaren barra"
#: main0210.xhp
-#, fuzzy
msgctxt ""
"main0210.xhp\n"
"hd_id3156023\n"
"1\n"
"help.text"
msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Print Preview Bar\">Print Preview Bar</link>"
-msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Page Preview Bar\">Orrialdearen aurrebista-barra</link>"
+msgstr "<link href=\"text/scalc/main0210.xhp\" name=\"Print Preview Bar\">Inprimatzeko aurrebistaren barra</link>"
#: main0210.xhp
-#, fuzzy
msgctxt ""
"main0210.xhp\n"
"par_id3148663\n"
"2\n"
"help.text"
msgid "<ahelp hid=\"HID_SC_WIN_PREVIEW\">The <emph>Print Preview</emph> Bar is displayed when you choose <emph>File - Print Preview</emph>.</ahelp>"
-msgstr "<ahelp hid=\"HID_SC_WIN_PREVIEW\"><emph>Orrialdearen aurrebista</emph> barra bistaratzeko, hautatu <emph>Fitxategia - Orrialdearen aurrebista</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_SC_WIN_PREVIEW\"><emph>Inprimatzeko aurrebistaren</emph> barra bistaratzeko, hautatu <emph>Fitxategia - Inprimatzeko aurrebista</emph>.</ahelp>"
#: main0210.xhp
msgctxt ""
@@ -1341,13 +1328,12 @@ msgid "Close Preview"
msgstr "Itxi aurrebista"
#: main0210.xhp
-#, fuzzy
msgctxt ""
"main0210.xhp\n"
"par_id460829\n"
"help.text"
msgid "To exit the print preview, click the <emph>Close Preview</emph> button."
-msgstr "Orrialdearen aurrebistatik irteteko, egin klik <emph>Itxi aurrebista</emph> botoian."
+msgstr "Inprimatzeko aurrebistatik irteteko, egin klik <emph>Itxi aurrebista</emph> botoian."
#: main0214.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/scalc/01.po b/source/eu/helpcontent2/source/text/scalc/01.po
index 16ded1b637a..fb1ace860a6 100644
--- a/source/eu/helpcontent2/source/text/scalc/01.po
+++ b/source/eu/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-12 13:40+0100\n"
-"PO-Revision-Date: 2016-02-27 19:03+0000\n"
+"PO-Revision-Date: 2016-03-13 12:36+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456599825.000000\n"
+"X-POOTLE-MTIME: 1457872588.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -22,16 +22,15 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Print Preview"
-msgstr ""
+msgstr "Inprimatzeko aurrebista"
#: 01120000.xhp
-#, fuzzy
msgctxt ""
"01120000.xhp\n"
"hd_id1918698\n"
"help.text"
msgid "<link href=\"text/scalc/01/01120000.xhp\">Print Preview</link>"
-msgstr "<link href=\"text/scalc/01/01120000.xhp\">Orrialdearen aurrebista</link>"
+msgstr "<link href=\"text/scalc/01/01120000.xhp\">Inprimatzeko aurrebista</link>"
#: 01120000.xhp
msgctxt ""
@@ -47,7 +46,7 @@ msgctxt ""
"par_id3145847\n"
"help.text"
msgid "Use the icons on the <emph>Print Preview Bar</emph> to scroll through the pages of the document or to print the document."
-msgstr ""
+msgstr "Erabili <emph>Inprimatzeko aurrebistaren barrako</emph> ikonoak dokumentuaren orrialdeetan korritzeko edo dokumentua inprimatzeko ."
#: 01120000.xhp
msgctxt ""
@@ -58,13 +57,12 @@ msgid "You can also press <switchinline select=\"sys\"><caseinline select=\"MAC\
msgstr ""
#: 01120000.xhp
-#, fuzzy
msgctxt ""
"01120000.xhp\n"
"par_id7211828\n"
"help.text"
msgid "You cannot edit your document while you are in the print preview."
-msgstr "Orrialdearen aurrebistan zaudenean ezin duzu dokumentua editatu."
+msgstr "Ezin duzu dokumentua editatu inprimatzeko aurrebistan zaudenean."
#: 01120000.xhp
msgctxt ""
@@ -72,7 +70,7 @@ msgctxt ""
"par_id460829\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">To exit the print preview, click the <emph>Close Preview</emph> button.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inprimatzeko aurrebistatik irteteko, egin klik <emph>Itxi aurrebista</emph> botoian.</ahelp>"
#: 01120000.xhp
msgctxt ""
@@ -185,7 +183,7 @@ msgctxt ""
"par_id3159264\n"
"help.text"
msgid "<image id=\"img_id3147338\" src=\"cmd/sc_grid.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147338\">Icon</alt></image>"
-msgstr "<image id=\"img_id3154738\" src=\"sw/imglst/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Ikonoa</alt></image>"
+msgstr "<image id=\"img_id3147338\" src=\"cmd/sc_grid.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147338\">Icon</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -290,7 +288,7 @@ msgctxt ""
"par_id3152869\n"
"help.text"
msgid "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Ikonoa</alt></image>"
+msgstr "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Icon</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -355,13 +353,12 @@ msgid "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Displays all available scenarios. Doubl
msgstr "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Erabilgarri dauden agertoki guztiak bistaratzen ditu. Agertoki bat aplikatzeko, egin klik bikoitza bere izenean.</ahelp> Orrian ikusiko duzu emaitza. Informazio gehiago nahi izanez gero, aukeratu <link href=\"text/scalc/01/06050000.xhp\" name=\"Tresnak - Agertokiak\"><emph>Tresnak - Agertokiak</emph></link>."
#: 02110000.xhp
-#, fuzzy
msgctxt ""
"02110000.xhp\n"
"par_id3148745\n"
"help.text"
msgid "<image id=\"img_id3159256\" src=\"sc/imglst/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Ikonoa</alt></image>"
+msgstr "<image id=\"img_id3159256\" src=\"sc/imglst/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">Icon</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -436,7 +433,7 @@ msgctxt ""
"par_id3149947\n"
"help.text"
msgid "<image id=\"img_id3159119\" src=\"cmd/sc_chainframes.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159119\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Ikonoa</alt></image>"
+msgstr "<image id=\"img_id3159119\" src=\"cmd/sc_chainframes.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159119\">Icon</alt></image>"
#: 02110000.xhp
msgctxt ""
@@ -554,22 +551,20 @@ msgid "Headers & Footers"
msgstr "Goiburukoak eta orri-oinak"
#: 02120000.xhp
-#, fuzzy
msgctxt ""
"02120000.xhp\n"
"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=\"Goiburukoa/orri-oina\">Goiburukoa/orri-oina</link>"
+msgstr "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Goiburukoak eta orri-oinak</link>"
#: 02120000.xhp
-#, fuzzy
msgctxt ""
"02120000.xhp\n"
"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\"><ahelp hid=\".uno:EditHeaderAndFooter\">Goiburuak eta orri-oinak definitzeko eta formateatzeko aukera ematen du.</ahelp></variable>"
+msgstr "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".\">Goiburuak eta orri-oinak definitzeko eta formateatzeko aukera ematen du.</ahelp></variable>"
#: 02120000.xhp
#, fuzzy
@@ -708,7 +703,7 @@ msgctxt ""
"par_id3159266\n"
"help.text"
msgid "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.1874in\" height=\"0.1665in\"><alt id=\"alt_id3156386\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Ikonoa</alt></image>"
+msgstr "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.1874in\" height=\"0.1665in\"><alt id=\"alt_id3156386\">Icon</alt></image>"
#: 02120100.xhp
msgctxt ""
@@ -743,7 +738,7 @@ msgctxt ""
"par_id3150369\n"
"help.text"
msgid "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.1665in\" height=\"0.1252in\"><alt id=\"alt_id3150518\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Ikonoa</alt></image>"
+msgstr "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.1665in\" height=\"0.1252in\"><alt id=\"alt_id3150518\">Icon</alt></image>"
#: 02120100.xhp
msgctxt ""
@@ -778,7 +773,7 @@ msgctxt ""
"par_id3146870\n"
"help.text"
msgid "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148870\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Ikonoa</alt></image>"
+msgstr "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148870\">Icon</alt></image>"
#: 02120100.xhp
msgctxt ""
@@ -813,7 +808,7 @@ msgctxt ""
"par_id3151304\n"
"help.text"
msgid "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155386\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Ikonoa</alt></image>"
+msgstr "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155386\">Icon</alt></image>"
#: 02120100.xhp
msgctxt ""
@@ -848,7 +843,7 @@ msgctxt ""
"par_id3149315\n"
"help.text"
msgid "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155757\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Ikonoa</alt></image>"
+msgstr "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155757\">Icon</alt></image>"
#: 02120100.xhp
msgctxt ""
@@ -883,7 +878,7 @@ msgctxt ""
"par_id3147299\n"
"help.text"
msgid "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150394\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Ikonoa</alt></image>"
+msgstr "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150394\">Icon</alt></image>"
#: 02120100.xhp
msgctxt ""
@@ -918,7 +913,7 @@ msgctxt ""
"par_id3153122\n"
"help.text"
msgid "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146884\">Icon</alt></image>"
-msgstr "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Ikonoa</alt></image>"
+msgstr "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146884\">Icon</alt></image>"
#: 02120100.xhp
msgctxt ""
@@ -988,7 +983,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Series</link>"
-msgstr "<link href=\"text/scalc/01/02140100.xhp\" name=\"Behera\">Behera</link>"
+msgstr "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Serieak</link>"
#: 02140000.xhp
msgctxt ""
@@ -1866,13 +1861,12 @@ msgid "Bernoulli"
msgstr ""
#: 02140700.xhp
-#, fuzzy
msgctxt ""
"02140700.xhp\n"
"par_id2308201415431994157\n"
"help.text"
msgid "<emph>p Value:</emph> The probability of success."
-msgstr "<emph>SP</emph>: saio bakoitzaren arrakasta-probabilitatea da."
+msgstr "<emph>p balioa:</emph> Saio bakoitzaren arrakasta-probabilitatea."
#: 02140700.xhp
msgctxt ""
@@ -1883,13 +1877,12 @@ msgid "Binomial"
msgstr ""
#: 02140700.xhp
-#, fuzzy
msgctxt ""
"02140700.xhp\n"
"par_id2308201415431958372\n"
"help.text"
msgid "<emph>p Value:</emph> The probability of success of each trial."
-msgstr "<emph>SP</emph>: saio bakoitzaren arrakasta-probabilitatea da."
+msgstr "<emph>p balioa:</emph> Saio bakoitzaren arrakasta-probabilitatea."
#: 02140700.xhp
msgctxt ""
@@ -1924,13 +1917,12 @@ msgid "Geometric"
msgstr ""
#: 02140700.xhp
-#, fuzzy
msgctxt ""
"02140700.xhp\n"
"par_id2308201415431978150\n"
"help.text"
msgid "<emph>p Value:</emph> The probability of success of each trial."
-msgstr "<emph>SP</emph>: saio bakoitzaren arrakasta-probabilitatea da."
+msgstr "<emph>p balioa:</emph> Saio bakoitzaren arrakasta-probabilitatea."
#: 02140700.xhp
msgctxt ""
@@ -1941,13 +1933,12 @@ msgid "Negative Binomial"
msgstr ""
#: 02140700.xhp
-#, fuzzy
msgctxt ""
"02140700.xhp\n"
"par_id2308201415431916718\n"
"help.text"
msgid "<emph>p Value:</emph> The probability of success of each trial."
-msgstr "<emph>SP</emph>: saio bakoitzaren arrakasta-probabilitatea da."
+msgstr "<emph>p balioa:</emph> Saio bakoitzaren arrakasta-probabilitatea."
#: 02140700.xhp
msgctxt ""
@@ -2217,14 +2208,13 @@ msgid "Comments"
msgstr "Iruzkinak"
#: 02150000.xhp
-#, fuzzy
msgctxt ""
"02150000.xhp\n"
"par_id3154658\n"
"16\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/comments\">Deletes comments added to cells. All other elements remain unchanged.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/formats\">Gelaxkei aplikatutako formatu-atributuak ezabatzen ditu. Gelaxken eduki guztia berdin mantenduko da.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/deletecontents/comments\">Gelaxkei gehitutako iruzkinak ezabatzen ditu. Beste elementu guztiak berdin mantenduko dira.</ahelp>"
#: 02150000.xhp
msgctxt ""
@@ -2288,6 +2278,7 @@ msgid "Delete Cells"
msgstr "Ezabatu gelaxkak"
#: 02160000.xhp
+#, fuzzy
msgctxt ""
"02160000.xhp\n"
"par_id3154490\n"
@@ -2743,14 +2734,13 @@ msgid "Selected Sheets"
msgstr "Hautatutako orriak"
#: 02210000.xhp
-#, fuzzy
msgctxt ""
"02210000.xhp\n"
"par_id3153969\n"
"3\n"
"help.text"
msgid "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Lists the sheets in the current document. To select a sheet, press the up or down arrow keys to move to a sheet in the list. To add a sheet to the selection, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while pressing the arrow keys and then press Spacebar. To select a range of sheets, hold down Shift and press the arrow keys. </ahelp>"
-msgstr "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Uneko dokumentuko orriak zerrendatzen ditu. Orri bat hautatzeko, gora edo behera gezi-teklak sakatuz mugi zaitezke zerrendako orrietan. Orri bat gehitzeko hautapenari, mantendu sakatuta Ktrl tekla (Mac: Komandoa tekla) gora eta behera gezi-teklak sakatzean, eta sakatu zuriune-barra. Orrien area bat hautatzeko, sakatuta mantendu Maius tekla eta sakatu gezi-teklak. </ahelp>"
+msgstr "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Uneko dokumentuko orriak zerrendatzen ditu. Orri bat hautatzeko, gora edo behera gezi-teklak sakatuz mugi zaitezke zerrendako orrietan. Orri bat gehitzeko hautapenari, mantendu sakatuta <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline> tekla gezi-teklak sakatzean, eta ondoren sakatu zuriune-barra. Orrien area bat hautatzeko, sakatuta mantendu Maius tekla eta sakatu gezi-teklak. </ahelp>"
#: 03070000.xhp
msgctxt ""
@@ -2830,13 +2820,12 @@ msgid "<link href=\"text/scalc/01/03080000.xhp\" name=\"Value Highlighting\">Val
msgstr "<link href=\"text/scalc/01/03080000.xhp\" name=\"Nabarmendu balioak\">Nabarmendu balioak</link>"
#: 03080000.xhp
-#, fuzzy
msgctxt ""
"03080000.xhp\n"
"par_id3154366\n"
"help.text"
msgid "<ahelp hid=\".\">Displays cell contents in different colors, depending on type.</ahelp>"
-msgstr "<ahelp hid=\".uno:ViewValueHighlighting\">Gelaxkaren edukia kolore desberdinetan bistaratzen du, motaren arabera.</ahelp>"
+msgstr "<ahelp hid=\".\">Gelaxkaren edukia kolore desberdinetan bistaratzen du, motaren arabera.</ahelp>"
#: 03080000.xhp
msgctxt ""
@@ -2889,13 +2878,12 @@ msgid "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">Formula Ba
msgstr "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula-barra\">Formula-barra</link>"
#: 03090000.xhp
-#, fuzzy
msgctxt ""
"03090000.xhp\n"
"par_id3156423\n"
"help.text"
msgid "<ahelp hid=\".\">Shows or hides the Formula Bar, which is used for entering and editing formulas. The Formula Bar is the most important tool when working with spreadsheets.</ahelp>"
-msgstr "<ahelp hid=\".uno:InputLineVisible\">Formula-barra erakusten edo ezkutatzen du; formulak sartzeko eta editatzeko erabiltzen da formula-barra.</ahelp> Kalkulu-orrietan erabiltzen den tresnarik garrantzitsuena da."
+msgstr "<ahelp hid=\".\">Formula-barra erakusten edo ezkutatzen du; formulak sartzeko eta editatzeko erabiltzen da formula-barra. Kalkulu-orrietan erabiltzen den tresnarik garrantzitsuena da.</ahelp>"
#: 03090000.xhp
#, fuzzy
@@ -2960,13 +2948,12 @@ msgid "Delete All Manual Breaks"
msgstr "Ezabatu eskuzko jauzi guztiak"
#: 03100000.xhp
-#, fuzzy
msgctxt ""
"03100000.xhp\n"
"par_id3149400\n"
"help.text"
msgid "<ahelp hid=\".\">Deletes all manual breaks in the current sheet.</ahelp>"
-msgstr "<ahelp hid=\".uno:DeleteAllBreaks\">Uneko orriko eskuzko jauzi guztiak ezabatzen ditu.</ahelp>"
+msgstr "<ahelp hid=\".\">Uneko orriko eskuzko jauzi guztiak ezabatzen ditu.</ahelp>"
#: 03100000.xhp
#, fuzzy
@@ -8355,14 +8342,13 @@ msgid "Information Functions"
msgstr "Informazio-funtzioak"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id3147499\n"
"2\n"
"help.text"
msgid "<variable id=\"informationtext\">This category contains the <emph>Information</emph> functions.</variable>"
-msgstr "<variable id=\"statistiktext\">Kategoria honetan funtzio <emph>estatistikoak</emph> aurkituko dituzu. </variable>"
+msgstr "<variable id=\"informationtext\">Kategoria honetan <emph>Informazio</emph>-funtzioak aurkituko dituzu. </variable>"
#: 04060104.xhp
msgctxt ""
@@ -9143,7 +9129,7 @@ msgctxt ""
"51\n"
"help.text"
msgid "<item type=\"input\">=ISERR(C8)</item> where cell C8 contains <item type=\"input\">=1/0</item> returns TRUE, because 1/0 is an error."
-msgstr "<item type=\"input\">=ISERR(C8)</item> funtzioak EGIAZKOA ematen du C8 gelaxkak =1/0 duenean, 1/0 errore bat baita."
+msgstr "<item type=\"input\">=ISERR(C8)</item> funtzioak EGIAZKOA ematen du C8 gelaxkak <item type=\"input\">=1/0</item> duenean, 1/0 errore bat baita."
#: 04060104.xhp
msgctxt ""
@@ -10149,7 +10135,7 @@ msgctxt ""
"par_id3155345\n"
"help.text"
msgid "<item type=\"input\">=ISODD(33)</item> returns TRUE"
-msgstr "<item type=\"input\">=ISODD_ADD(5)</item> funtzioak 1 ematen du emaitza gisa."
+msgstr "<item type=\"input\">=ISODD(33)</item> funtzioak EGIA ematen du emaitza gisa"
#: 04060104.xhp
msgctxt ""
@@ -10157,7 +10143,7 @@ msgctxt ""
"par_id9392986\n"
"help.text"
msgid "<item type=\"input\">=ISODD(48)</item> returns FALSE"
-msgstr "<item type=\"input\">=ISODD_ADD(5)</item> funtzioak 1 ematen du emaitza gisa."
+msgstr "<item type=\"input\">=ISODD(48)</item> funtzioak FALTSUA ematen du emaitza gisa"
#: 04060104.xhp
msgctxt ""
@@ -10165,7 +10151,7 @@ msgctxt ""
"par_id5971251\n"
"help.text"
msgid "<item type=\"input\">=ISODD(3.999)</item> returns TRUE"
-msgstr "<item type=\"input\">=ISODD_ADD(5)</item> funtzioak 1 ematen du emaitza gisa."
+msgstr "<item type=\"input\">=ISODD(3.999)</item> funtzioak EGIA ematen du emaitza gisa"
#: 04060104.xhp
msgctxt ""
@@ -10173,7 +10159,7 @@ msgctxt ""
"par_id4136478\n"
"help.text"
msgid "<item type=\"input\">=ISODD(-3.1)</item> returns TRUE"
-msgstr "<item type=\"input\">=ISODD_ADD(5)</item> funtzioak 1 ematen du emaitza gisa."
+msgstr "<item type=\"input\">=ISODD(-3.1)</item> funtzioak EGIA ematen du emaitza gisa"
#: 04060104.xhp
msgctxt ""
@@ -12176,7 +12162,7 @@ msgctxt ""
"par_id951567\n"
"help.text"
msgid "<item type=\"input\">=ACOSH(COSH(4))</item> returns 4."
-msgstr "<item type=\"input\">=ISODD_ADD(5)</item> funtzioak 1 ematen du emaitza gisa."
+msgstr "<item type=\"input\">=ACOSH(COSH(4))</item> funtzioak 4 ematen du emaitza gisa."
#: 04060106.xhp
msgctxt ""
@@ -12463,7 +12449,7 @@ msgctxt ""
"101\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ARSINHYP\">Returns the inverse hyperbolic sine of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ARSINHYP\">Zenbaki baten arku sinu hiperbolikoa ematen du.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ARSINHYP\">Zenbaki baten alderantzizko sinu hiperbolikoa ematen du.</ahelp>"
#: 04060106.xhp
msgctxt ""
@@ -12516,7 +12502,7 @@ msgctxt ""
"par_id4808496\n"
"help.text"
msgid "<item type=\"input\">=ASINH(SINH(4))</item> returns 4."
-msgstr "<item type=\"input\">=ISODD_ADD(5)</item> funtzioak 1 ematen du emaitza gisa."
+msgstr "<item type=\"input\">=ASINH(SINH(4))</item> funtzioak 4 ematen du emaitza gisa."
#: 04060106.xhp
msgctxt ""
@@ -13220,6 +13206,7 @@ msgid "CSCH"
msgstr ""
#: 04060106.xhp
+#, fuzzy
msgctxt ""
"04060106.xhp\n"
"par_id579916\n"
@@ -14588,7 +14575,7 @@ msgctxt ""
"559\n"
"help.text"
msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
-msgstr "<emph>Modua</emph>: aukerako balioa da. <emph>Modua</emph>ren balioa adierazi eta zero ez bada, eta <emph>Zenbakia</emph> eta <emph>Zk. esanguratsua</emph> negatiboak badira, zenbakiaren balio absolutuan oinarrituta egingo da biribiltzea. Parametro honi ez ikusi egiten zaio MS Excel-era esportatzean, Excel-ek ez baitu ezagutzen hirugarren parametrorik."
+msgstr "<emph>Modua</emph>: aukerako balioa da. Moduaren balioa adierazi eta zero ez bada, eta Zenbakia eta Zk. esanguratsua negatiboak badira, zenbakiaren balio absolutuan oinarrituta egingo da biribiltzea. Parametro honi ez ikusi egiten zaio MS Excel-era esportatzean, Excel-ek ez baitu ezagutzen hirugarren parametrorik."
#: 04060106.xhp
msgctxt ""
@@ -15640,7 +15627,7 @@ msgctxt ""
"25\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Rounds a number down, toward zero, to a certain precision.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Zenbakia behera biribiltzen du, hau da, zerorantz.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Zenbakia behera biribiltzen du, zerorantz, zehaztutako prezisioarekin.</ahelp>"
#: 04060106.xhp
msgctxt ""
@@ -15743,7 +15730,7 @@ msgctxt ""
"141\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Rounds a number up, away from zero, to a certain precision.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Zenbakia behera biribiltzen du, hau da, zerorantz.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Zenbakia gora biribiltzen du, hau da, zerotik urrunduz, zehaztutako prezisioarekin.</ahelp>"
#: 04060106.xhp
msgctxt ""
@@ -15942,7 +15929,7 @@ msgctxt ""
"160\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_SECANTHYP\">Returns the hyperbolic secant of a number.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_SINHYP\">Zenbaki baten sinu hiperbolikoa ematen du.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_SECANTHYP\">Zenbaki baten sekante hiperbolikoa ematen du.</ahelp>"
#: 04060106.xhp
msgctxt ""
@@ -17120,7 +17107,7 @@ msgctxt ""
"par_id8746910\n"
"help.text"
msgid "<item type=\"input\">=ODD(1)</item> returns 1."
-msgstr "<item type=\"input\">=ISODD_ADD(5)</item> funtzioak 1 ematen du emaitza gisa."
+msgstr "<item type=\"input\">=ODD(1)</item> funtzioak 1 ematen du emaitza gisa."
#: 04060106.xhp
msgctxt ""
@@ -17128,7 +17115,7 @@ msgctxt ""
"par_id9636524\n"
"help.text"
msgid "<item type=\"input\">=ODD(0)</item> returns 1."
-msgstr "<item type=\"input\">=ISODD_ADD(5)</item> funtzioak 1 ematen du emaitza gisa."
+msgstr "<item type=\"input\">=ODD(0)</item> funtzioak 1 ematen du emaitza gisa."
#: 04060106.xhp
msgctxt ""
@@ -17136,7 +17123,7 @@ msgctxt ""
"par_id5675527\n"
"help.text"
msgid "<item type=\"input\">=ODD(-3.1)</item> returns -5."
-msgstr "<item type=\"input\">=ISODD_ADD(5)</item> funtzioak 1 ematen du emaitza gisa."
+msgstr "<item type=\"input\">=ODD(-3.1)</item> funtzioak -5 ematen du emaitza gisa."
#: 04060106.xhp
#, fuzzy
@@ -17415,7 +17402,7 @@ msgctxt ""
"530\n"
"help.text"
msgid "<item type=\"input\">=SIGN(-4.5)</item> returns -1."
-msgstr "<item type=\"input\">=ISODD_ADD(5)</item> funtzioak 1 ematen du emaitza gisa."
+msgstr "<item type=\"input\">=SIGN(-4.5)</item> funtzioak -1 ematen du emaitza gisa."
#: 04060106.xhp
msgctxt ""
@@ -25166,13 +25153,12 @@ msgid "<item type=\"input\">=LEFT(\"output\";3)</item> returns “out”."
msgstr "<item type=\"input\">=LEFT(\"irteera\";3)</item>: “irt” ematen du."
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"bm_id2947083\n"
"help.text"
msgid "<bookmark_value>LEFTB function</bookmark_value>"
-msgstr "<bookmark_value>LEFT funtzioa</bookmark_value>"
+msgstr "<bookmark_value>LEFTB funtzioa</bookmark_value>"
#: 04060110.xhp
#, fuzzy
@@ -26149,23 +26135,21 @@ msgid "<item type=\"input\">=RIGHT(\"Sun\";2)</item> returns un."
msgstr "<item type=\"input\">=RIGHT(\"Eguzkia\";2)</item>: ia ematen du."
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"bm_id2949805\n"
"help.text"
msgid "<bookmark_value>RIGHTB function</bookmark_value>"
-msgstr "<bookmark_value>RIGHT funtzioa</bookmark_value>"
+msgstr "<bookmark_value>RIGHTB funtzioa</bookmark_value>"
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"hd_id2949805\n"
"113\n"
"help.text"
msgid "RIGHTB"
-msgstr "RIGHT"
+msgstr "RIGHTB"
#: 04060110.xhp
msgctxt ""
@@ -26186,14 +26170,13 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id2954344\n"
"116\n"
"help.text"
msgid "RIGHTB(\"Text\"; Number_bytes)"
-msgstr "RIGHT(testua; kopurua)"
+msgstr "RIGHTB(\"Testua\"; kopurua_bytetan)"
#: 04060110.xhp
#, fuzzy
@@ -26897,7 +26880,7 @@ msgctxt ""
"par_id0907200904022594\n"
"help.text"
msgid "<ahelp hid=\".\">Returns the numeric code for the first Unicode character in a text string.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_CODE\">Testu-kate bateko lehen karakterearen zenbakizko kodea ematen du.</ahelp>"
+msgstr "<ahelp hid=\".\">Testu-kate bateko lehen Unicode karakterearen zenbakizko kodea ematen du.</ahelp>"
#: 04060110.xhp
msgctxt ""
@@ -39355,13 +39338,12 @@ msgid "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item>- this returns 4"
msgstr "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> - honek 1 itzultzen du"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2118594\n"
"help.text"
msgid "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - when B1 contains <item type=\"input\">2006</item>, this returns 6"
-msgstr "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - B1 gelaxkak 2006 balioa duenean, honek 6 itzultzen du"
+msgstr "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - B1 gelaxkak <item type=\"input\">2006 </item>balioa duenean, honek 6 itzultzen du"
#: 04060181.xhp
#, fuzzy
@@ -39441,7 +39423,7 @@ msgctxt ""
"36\n"
"help.text"
msgid "<emph>SP</emph> is the probability of success on each trial."
-msgstr "<emph>SP</emph>: saio bakoitzaren arrakasta-probabilitatea da."
+msgstr "<emph>SP</emph> saio bakoitzaren arrakasta-probabilitatea da."
#: 04060181.xhp
msgctxt ""
@@ -39695,14 +39677,13 @@ msgid "BETA.INV"
msgstr "BETAINV"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2949825\n"
"53\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BETAINV_MS\">Returns the inverse of the cumulative beta probability density function.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_BETAINV\">Beta probabilitate metatuaren dentsitate-funtzioaren alderantzizkoa ematen du.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BETAINV_MS\">Beta probabilitate metatuaren dentsitate-funtzioaren alderantzizkoa ematen du.</ahelp>"
#: 04060181.xhp
msgctxt ""
@@ -39762,7 +39743,6 @@ msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>.
msgstr "<emph>Hasiera</emph> (aukerakoa): <emph>Zenbakia</emph>ren beheko muga da."
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2951268\n"
@@ -39781,14 +39761,13 @@ msgid "Example"
msgstr "Adibidea"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2946859\n"
"62\n"
"help.text"
msgid "<item type=\"input\">=BETA.INV(0.5;5;10)</item> returns the value 0.3257511553."
-msgstr "<item type=\"input\">=BETAINV(0,5;5;10)</item>: 0,33 ematen du."
+msgstr "<item type=\"input\">=BETAINV(0,5;5;10)</item>: 0,3257511553 ematen du."
#: 04060181.xhp
msgctxt ""
@@ -39814,7 +39793,7 @@ msgctxt ""
"65\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BETAVERT\">Returns the beta function.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TVERT\">T banaketa ematen du.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BETAVERT\">Beta funtzioa ematen du.</ahelp>"
#: 04060181.xhp
msgctxt ""
@@ -39903,7 +39882,7 @@ msgctxt ""
"74\n"
"help.text"
msgid "<item type=\"input\">=BETADIST(0.75;3;4)</item> returns the value 0.96"
-msgstr "<item type=\"input\">=BETADIST(0,75;3;4)</item>: 0,96 ematen du"
+msgstr "<item type=\"input\">=BETADIST(0,75;3;4)</item> 0,96 ematen du"
#: 04060181.xhp
#, fuzzy
@@ -39925,14 +39904,13 @@ msgid "BETA.DIST"
msgstr "BETADIST"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2950880\n"
"65\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BETADIST_MS\">Returns the beta function.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TVERT\">T banaketa ematen du.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_BETADIST_MS\">Beta funtzioa ematen du.</ahelp>"
#: 04060181.xhp
msgctxt ""
@@ -39953,7 +39931,6 @@ msgid "BETA.DIST(Number; Alpha; Beta; Cumulative; Start; End)"
msgstr ""
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2956317\n"
@@ -39963,24 +39940,22 @@ msgid "<emph>Number</emph> (required) is the value between <emph>Start</emph> an
msgstr "<emph>Zenbakia</emph>: funtzioa ebaluatzeko zenbakia da, <emph>hasiera</emph> eta <emph>amaiera</emph> artekoa."
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2956107\n"
"69\n"
"help.text"
msgid "<emph>Alpha</emph> (required) is a parameter to the distribution."
-msgstr "<emph>Alfa</emph>: banaketa-parametroa da."
+msgstr "<emph>Alfa</emph> (ezinbestekoa) banaketaren parametro bat da."
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2953619\n"
"70\n"
"help.text"
msgid "<emph>Beta</emph> (required) is a parameter to the distribution."
-msgstr "<emph>Beta</emph>: banaketa-parametroa da."
+msgstr "<emph>Beta</emph> (ezinbestekoa) banaketaren parametro bat da."
#: 04060181.xhp
#, fuzzy
@@ -39989,10 +39964,9 @@ msgctxt ""
"par_id062920141254453\n"
"help.text"
msgid "<emph>Cumulative</emph> (required) can be 0 or False to calculate the probability density function. It can be any other value or True to calculate the cumulative distribution function."
-msgstr "<emph>Metagarria</emph> (aukerakoa): 0 edo Faltsua izan daiteke probabilitate-dentsitatearen funtzioa kalkulatzeko. Beste edozein balio edo Egiazkoa izan daiteke, edo ez ikusi egin dakioke, probabilitate-dentsitatearen funtzioa kalkulatzeko."
+msgstr "<emph>Metagarria</emph> (ezinbestekoa): 0 edo Faltsua izan daiteke probabilitate-dentsitatearen funtzioa kalkulatzeko. Beste edozein balio edo Egiazkoa izan daiteke, edo ez ikusi egin dakioke, probabilitate-dentsitatearen funtzioa kalkulatzeko."
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2950254\n"
@@ -40002,7 +39976,6 @@ msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>.
msgstr "<emph>Hasiera</emph> (aukerakoa): <emph>Zenbakia</emph>ren beheko muga da."
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2949138\n"
@@ -40021,24 +39994,22 @@ msgid "Examples"
msgstr "Adibideak"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2956118\n"
"74\n"
"help.text"
msgid "<item type=\"input\">=BETA.DIST(2;8;10;1;1;3)</item> returns the value 0.6854706"
-msgstr "<item type=\"input\">=BETADIST(0,75;3;4)</item>: 0,96 ematen du"
+msgstr "<item type=\"input\">=BETA.DIST(2;8;10;1;1;3)</item> 0,6854706 ematen du"
#: 04060181.xhp
-#, fuzzy
msgctxt ""
"04060181.xhp\n"
"par_id2956119\n"
"74\n"
"help.text"
msgid "<item type=\"input\">=BETA.DIST(2;8;10;0;1;3)</item> returns the value 1.4837646"
-msgstr "<item type=\"input\">=BETADIST(0,75;3;4)</item>: 0,96 ematen du"
+msgstr "<item type=\"input\">=BETA.DIST(2;8;10;0;1;3)</item> 1,4837646 ematen du"
#: 04060181.xhp
msgctxt ""
@@ -40109,7 +40080,7 @@ msgctxt ""
"82\n"
"help.text"
msgid "<emph>SP</emph> is the probability of success on each trial."
-msgstr "<emph>SP</emph>: saio bakoitzaren arrakasta-probabilitatea da."
+msgstr "<emph>SP</emph> saio bakoitzaren arrakasta-probabilitatea da."
#: 04060181.xhp
msgctxt ""
@@ -40220,7 +40191,7 @@ msgctxt ""
"82\n"
"help.text"
msgid "<emph>SP</emph> is the probability of success on each trial."
-msgstr "<emph>SP</emph>: saio bakoitzaren arrakasta-probabilitatea da."
+msgstr "<emph>SP</emph> saio bakoitzaren arrakasta-probabilitatea da."
#: 04060181.xhp
#, fuzzy
@@ -40323,7 +40294,7 @@ msgctxt ""
"82\n"
"help.text"
msgid "<emph>SP</emph> is the probability of success on each trial."
-msgstr "<emph>SP</emph>: saio bakoitzaren arrakasta-probabilitatea da."
+msgstr "<emph>SP</emph> saio bakoitzaren arrakasta-probabilitatea da."
#: 04060181.xhp
msgctxt ""
@@ -42384,14 +42355,13 @@ msgid "F.TEST"
msgstr "FTEST"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2950534\n"
"29\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_F_TEST_MS\">Returns the result of an F test.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_FTEST\">F probaren emaitza kalkulatzen du.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_F_TEST_MS\">F probaren emaitza kalkulatzen du.</ahelp>"
#: 04060182.xhp
msgctxt ""
@@ -42636,24 +42606,22 @@ msgid "Example"
msgstr "Adibidea"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2950696\n"
"45\n"
"help.text"
msgid "<item type=\"input\">=F.DIST(0.8;8;12;0)</item> yields 0.7095282499."
-msgstr "<item type=\"input\">=FDIST(0,8;8;12)</item>: 0,61 ematen du."
+msgstr "<item type=\"input\">=F.DIST(0,8;8;12;0)</item> 0,7095282499 ematen du."
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2950697\n"
"45\n"
"help.text"
msgid "<item type=\"input\">=F.DIST(0.8;8;12;1)</item> yields 0.3856603563."
-msgstr "<item type=\"input\">=FDIST(0,8;8;12)</item>: 0,61 ematen du."
+msgstr "<item type=\"input\">=F.DIST(0,8;8;12;1)</item> 0,3856603563 ematen du."
#: 04060182.xhp
#, fuzzy
@@ -43254,13 +43222,12 @@ msgid "GAMMA.DIST"
msgstr "GAMMADIST"
#: 04060182.xhp
-#, fuzzy
msgctxt ""
"04060182.xhp\n"
"par_id2406201422414690\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_GAMMADIST_MS\">Returns the values of a Gamma distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Gamma banaketaren balioak ematen ditu.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_GAMMADIST_MS\">Gamma banaketaren balioak ematen ditu.</ahelp>"
#: 04060182.xhp
msgctxt ""
@@ -45202,14 +45169,13 @@ msgid "LOGNORMDIST"
msgstr "LOGNORMDIST"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id3154953\n"
"77\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Returns the values of a lognormal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Gamma banaketaren balioak ematen ditu.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Banaketa normal logaritmikoaren balioak ematen ditu.</ahelp>"
#: 04060183.xhp
msgctxt ""
@@ -45302,14 +45268,13 @@ msgid "LOGNORM.DIST"
msgstr "LOGNORMDIST"
#: 04060183.xhp
-#, fuzzy
msgctxt ""
"04060183.xhp\n"
"par_id2904953\n"
"77\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_LOGNORMDIST_MS\">Returns the values of a lognormal distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Gamma banaketaren balioak ematen ditu.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_LOGNORMDIST_MS\">Banaketa normal logaritmikoaren balioak ematen ditu.</ahelp>"
#: 04060183.xhp
msgctxt ""
@@ -47287,7 +47252,7 @@ msgctxt ""
"115\n"
"help.text"
msgid "PERCENTILE(Data; Alpha)"
-msgstr "PERCENTILE(datuak;Alfa)"
+msgstr "PERCENTILE(datuak; Alfa)"
#: 04060184.xhp
msgctxt ""
@@ -47379,14 +47344,13 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2848813\n"
"115\n"
"help.text"
msgid "PERCENTILE.EXC(Data; Alpha)"
-msgstr "PERCENTILE(datuak;Alfa)"
+msgstr "PERCENTILE.EXC(datuak; Alfa)"
#: 04060184.xhp
msgctxt ""
@@ -47472,14 +47436,13 @@ msgid "Syntax"
msgstr "Sintaxia"
#: 04060184.xhp
-#, fuzzy
msgctxt ""
"04060184.xhp\n"
"par_id2948813\n"
"115\n"
"help.text"
msgid "PERCENTILE.INC(Data; Alpha)"
-msgstr "PERCENTILE(datuak;Alfa)"
+msgstr "PERCENTILE.INC(datuak; Alfa)"
#: 04060184.xhp
msgctxt ""
@@ -50228,14 +50191,13 @@ msgid "T.DIST"
msgstr "TDIST"
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id2953372\n"
"119\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_TDIST_MS\">Returns the t-distribution.</ahelp>"
-msgstr "<ahelp hid=\"HID_FUNC_TVERT\">T banaketa ematen du.</ahelp>"
+msgstr "<ahelp hid=\"HID_FUNC_TDIST_MS\">T banaketa ematen du.</ahelp>"
#: 04060185.xhp
msgctxt ""
@@ -60134,13 +60096,14 @@ msgid "equal"
msgstr "berdin"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -60152,13 +60115,14 @@ msgid "less than"
msgstr "hau baino txikiagoa da"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
@@ -66926,13 +66890,12 @@ msgid "WEBSERVICE"
msgstr ""
#: func_webservice.xhp
-#, fuzzy
msgctxt ""
"func_webservice.xhp\n"
"bm_id3149012\n"
"help.text"
msgid "<bookmark_value>WEBSERVICE function</bookmark_value>"
-msgstr "<bookmark_value>ODDLPRICE funtzioa</bookmark_value>"
+msgstr "<bookmark_value>WEBSERVICE funtzioa</bookmark_value>"
#: func_webservice.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/scalc/04.po b/source/eu/helpcontent2/source/text/scalc/04.po
index da40900c736..aa177d8be86 100644
--- a/source/eu/helpcontent2/source/text/scalc/04.po
+++ b/source/eu/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2016-02-27 17:12+0000\n"
+"PO-Revision-Date: 2016-03-06 19:25+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456593156.000000\n"
+"X-POOTLE-MTIME: 1457292356.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -375,14 +375,13 @@ msgid "Moves one sheet to the left."
msgstr "Ezkerrera joaten da orri bat."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"par_id3149725\n"
"131\n"
"help.text"
msgid "In the print preview: Moves to the previous print page."
-msgstr "Orrialdearen aurrebistan: Inprimatzeko aurreko orrialdera joaten da."
+msgstr "Inprimatzeko aurrebistan: Inprimatzeko aurreko orrialdera joaten da."
#: 01020000.xhp
msgctxt ""
@@ -403,14 +402,13 @@ msgid "Moves one sheet to the right."
msgstr "Eskuinera joaten da orri bat."
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"par_id3159120\n"
"132\n"
"help.text"
msgid "In the print preview: Moves to the next print page."
-msgstr "Orrialdearen aurrebistan: Inprimatzeko hurrengo orrialdera joaten da."
+msgstr "Inprimatzeko aurrebistan: Inprimatzeko hurrengo orrialdera joaten da."
#: 01020000.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/scalc/guide.po b/source/eu/helpcontent2/source/text/scalc/guide.po
index fea721b36c3..004895d2dd8 100644
--- a/source/eu/helpcontent2/source/text/scalc/guide.po
+++ b/source/eu/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-02-27 17:23+0000\n"
+"PO-Revision-Date: 2016-03-06 19:50+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456593810.000000\n"
+"X-POOTLE-MTIME: 1457293850.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -5539,14 +5539,13 @@ msgid "To apply formatting attributes to an entire sheet, choose <emph>Format -
msgstr "Formatu-atributuak orri osoari aplikatzeko, hautatu <emph>Formatua - Orrialdea</emph>. Adibidez, goiburukoak eta orri-oinak inprimatutako orri guztietan ager daitezen defini ditzakezu."
#: format_table.xhp
-#, fuzzy
msgctxt ""
"format_table.xhp\n"
"par_id3145389\n"
"22\n"
"help.text"
msgid "An image that you have loaded with <item type=\"menuitem\">Format - Page - Background</item> is only visible in print or in the print preview. To display a background image on screen as well, insert the graphic image by choosing <item type=\"menuitem\">Insert - Image - From File</item> and arrange the image behind the cells by choosing <item type=\"menuitem\">Format - Arrange - To Background</item>. Use the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> to select the background image."
-msgstr "<item type=\"menuitem\">Formatua - Orrialdea - Atzeko planoa</item> komandoarekin kargatutako irudia inprimatzeko aurrebistan edo orrialdearen aurrebistan bakarrik egongo da ikusgai. Atzeko planoko irudi bat pantailan ere bistaratzeko, txertatu irudi grafikoa <item type=\"menuitem\">Txertatu - Irudia - Fitxategitik</item> komandoarekin eta antolatu gelaxken atzeko irudia <item type=\"menuitem\">Formatua - Antolatu- Atzeko planora</item> komandoarekin. Atzeko-planoko irudia hautatzeko, erabili <link href=\"text/scalc/01/02110000.xhp\" name=\"Nabigatzailea\">Nabigatzailea</link>."
+msgstr "<item type=\"menuitem\">Formatua - Orrialdea - Atzeko planoa</item> komandoarekin kargatutako irudia inprimatzean edo inprimatzeko aurrebistan bakarrik egongo da ikusgai. Atzeko planoko irudi bat pantailan ere bistaratzeko, txertatu irudi grafikoa <item type=\"menuitem\">Txertatu - Irudia - Fitxategitik</item> komandoarekin eta antolatu gelaxken atzeko irudia <item type=\"menuitem\">Formatua - Antolatu- Atzeko planora</item> komandoarekin. Atzeko-planoko irudia hautatzeko, erabili <link href=\"text/scalc/01/02110000.xhp\" name=\"Nabigatzailea\">Nabigatzailea</link>."
#: format_table.xhp
msgctxt ""
@@ -5942,7 +5941,7 @@ msgctxt ""
"31\n"
"help.text"
msgid "Choose <emph>Edit - Copy</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C to copy it."
-msgstr "Aukeratu <emph>Editatu - Itsatsi</emph>, edo sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V. Gelaxka berrian kokatuko da formula."
+msgstr "Aukeratu <emph>Editatu - kopiatu</emph>, edo sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+C berau kopiatzeko."
#: formula_copy.xhp
msgctxt ""
@@ -7274,14 +7273,13 @@ msgid "Advanced Calculations"
msgstr "Kalkulu aurreratuak"
#: main.xhp
-#, fuzzy
msgctxt ""
"main.xhp\n"
"hd_id3153070\n"
"7\n"
"help.text"
msgid "Printing and Print Preview"
-msgstr "Inprimatzea eta orrialde-aurrebista"
+msgstr "Inprimatzea eta inprimatzeko aurrebista"
#: main.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/sdraw.po b/source/eu/helpcontent2/source/text/sdraw.po
index dff6d922508..24bbb8956f9 100644
--- a/source/eu/helpcontent2/source/text/sdraw.po
+++ b/source/eu/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2013-05-24 08:57+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2016-03-06 18:42+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1369385858.000000\n"
+"X-POOTLE-MTIME: 1457289751.000000\n"
#: main0000.xhp
msgctxt ""
@@ -318,7 +318,6 @@ msgid "View"
msgstr "Ikusi"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id3152576\n"
@@ -327,7 +326,6 @@ msgid "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">View</link>"
msgstr "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">Ikusi</link>"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"par_id3159155\n"
@@ -368,7 +366,6 @@ msgid "Switch to the master page view."
msgstr "Orrialdearen ikuspegi maisura joaten da."
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id3149666\n"
diff --git a/source/eu/helpcontent2/source/text/sdraw/guide.po b/source/eu/helpcontent2/source/text/sdraw/guide.po
index 1a2abad617b..522bfc78d73 100644
--- a/source/eu/helpcontent2/source/text/sdraw/guide.po
+++ b/source/eu/helpcontent2/source/text/sdraw/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2016-02-26 22:59+0000\n"
+"PO-Revision-Date: 2016-03-06 21:29+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456527555.000000\n"
+"X-POOTLE-MTIME: 1457299787.000000\n"
#: align_arrange.xhp
msgctxt ""
@@ -2404,7 +2404,7 @@ msgctxt ""
"par_idN10931\n"
"help.text"
msgid "Paste the text using <emph>Edit - Paste</emph> or <emph>Edit - Paste special</emph>."
-msgstr "Itsatsi testua <emph>Editati - Itsatsi</emph> edo <emph>Editatu - Itsatsi berezia</emph> erabiliz."
+msgstr "Itsatsi testua <emph>Editatu - Itsatsi</emph> edo <emph>Editatu - Itsatsi berezia</emph> erabiliz."
#: text_enter.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/00.po b/source/eu/helpcontent2/source/text/shared/00.po
index 6f74178397e..06f7161a2e2 100644
--- a/source/eu/helpcontent2/source/text/shared/00.po
+++ b/source/eu/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-02-27 14:56+0000\n"
+"PO-Revision-Date: 2016-03-06 19:51+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456585005.000000\n"
+"X-POOTLE-MTIME: 1457293890.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -6616,14 +6616,13 @@ msgid "<variable id=\"info6\">Choose <emph>File - Properties - Internet</emph> t
msgstr "<variable id=\"info6\">Aukeratu <emph>Fitxategia - Propietateak - Internet</emph> fitxa</variable>"
#: 00000401.xhp
-#, fuzzy
msgctxt ""
"00000401.xhp\n"
"par_id3154930\n"
"69\n"
"help.text"
msgid "Menu<emph> File - Print Preview</emph>"
-msgstr "Menua<emph> Fitxategia - Orrialdearen aurrebista</emph>"
+msgstr "Menua<emph> Fitxategia - Inprimatzeko aurrebista</emph>"
#: 00000401.xhp
msgctxt ""
@@ -6639,7 +6638,7 @@ msgctxt ""
"par_idN11384\n"
"help.text"
msgid "Print Preview"
-msgstr ""
+msgstr "Inprimatzeko aurrebista"
#: 00000401.xhp
msgctxt ""
@@ -6782,14 +6781,13 @@ msgid "Print File Directly"
msgstr "Inprimatu fitxategia zuzenean"
#: 00000401.xhp
-#, fuzzy
msgctxt ""
"00000401.xhp\n"
"par_id3153581\n"
"5\n"
"help.text"
msgid "On the <emph>Print Preview</emph><emph>Bar</emph> of a text document, click"
-msgstr "Testu-dokumentu bateko <emph>Orrialde-ikuspegia</emph><emph> barran</emph>, egin klik"
+msgstr "Testu-dokumentu bateko <emph>inprimatzeko aurrebista</emph><emph> barran</emph>, egin klik"
#: 00000401.xhp
msgctxt ""
@@ -7677,14 +7675,13 @@ msgid "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"0.222in
msgstr "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148473\">Ikonoa</alt></image>"
#: 00000403.xhp
-#, fuzzy
msgctxt ""
"00000403.xhp\n"
"par_id3153627\n"
"44\n"
"help.text"
msgid "Full Screen On/Off (in Print Preview)"
-msgstr "Pantaila osoa jarri/kendu (orrialdearen aurrebistan)"
+msgstr "Pantaila osoa jarri/kendu (Inprimatzeko aurrebistan)"
#: 00000403.xhp
msgctxt ""
@@ -13353,14 +13350,13 @@ msgid "Choose <emph>Modify - Flip</emph> ($[officename] Draw)"
msgstr "Aukeratu<emph>Aldatu - Irauli</emph> ($[officename] Draw)"
#: 00040503.xhp
-#, fuzzy
msgctxt ""
"00040503.xhp\n"
"par_id3155742\n"
"17\n"
"help.text"
msgid "Choose <emph>Format - Image - Image</emph> tab"
-msgstr "Aukeratu <emph>Formatua - Orrialdea - Orrialdea</emph> fitxa"
+msgstr "Aukeratu <emph>Formatua - Irudia- Irudia</emph> fitxa"
#: 00040503.xhp
msgctxt ""
@@ -13381,14 +13377,13 @@ msgid "Choose <emph>Modify - Flip - Vertically</emph> ($[officename] Draw)"
msgstr "Aukeratu <emph>Aldatu - Irauli - Bertikalki</emph> ($[officename] Draw)"
#: 00040503.xhp
-#, fuzzy
msgctxt ""
"00040503.xhp\n"
"par_id3153179\n"
"21\n"
"help.text"
msgid "Choose <emph>Format - Image - Image</emph> tab"
-msgstr "Aukeratu <emph>Formatua - Orrialdea - Orrialdea</emph> fitxa"
+msgstr "Aukeratu <emph>Formatua - Irudia- Irudia</emph> fitxa"
#: 00040503.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/01.po b/source/eu/helpcontent2/source/text/shared/01.po
index 3f50e87a0c1..3803dfeb09c 100644
--- a/source/eu/helpcontent2/source/text/shared/01.po
+++ b/source/eu/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-02-27 18:59+0000\n"
+"PO-Revision-Date: 2016-03-06 22:27+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456599578.000000\n"
+"X-POOTLE-MTIME: 1457303243.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -4391,14 +4391,13 @@ msgid "<bookmark_value>printing; documents</bookmark_value><bookmark_value>docum
msgstr "<bookmark_value>inprimatu; dokumentuak</bookmark_value><bookmark_value>dokumentuak; inprimatu</bookmark_value><bookmark_value>testu-dokumentuak; inprimatu</bookmark_value><bookmark_value>kalkulu-orriak; inprimatu</bookmark_value><bookmark_value>aurkezpenak; inprimatu menua</bookmark_value><bookmark_value>marrazkiak; inprimatu</bookmark_value><bookmark_value>inprimagailuak aukeratu</bookmark_value><bookmark_value>inprimagailuak; aukeratu</bookmark_value><bookmark_value>inprimatze-arearen hautapena</bookmark_value><bookmark_value>hautatu; inprimatze-areak</bookmark_value><bookmark_value>orrialdeak; inprimatzeko bat hautatu</bookmark_value><bookmark_value>inprimatu; hautapenak</bookmark_value><bookmark_value>hautapenak; inprimatu</bookmark_value><bookmark_value>kopiak; inprimatu</bookmark_value><bookmark_value>spoolfiles-ak Xprinter-ekin</bookmark_value>"
#: 01130000.xhp
-#, fuzzy
msgctxt ""
"01130000.xhp\n"
"hd_id3154621\n"
"1\n"
"help.text"
msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr "<link href=\"text/shared/01/01170000.xhp\" name=\"Exit\">Irteera</link>"
+msgstr "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Inprimatu</link>"
#: 01130000.xhp
msgctxt ""
@@ -5085,14 +5084,13 @@ msgid "<bookmark_value>printers; properties</bookmark_value><bookmark_value>sett
msgstr "<bookmark_value>inprimagailuak; propietateak</bookmark_value><bookmark_value>ezarpenak; inprimagailuak</bookmark_value><bookmark_value>propietateak; inprimagailuak</bookmark_value><bookmark_value>inprimagailu lehenetsia; konfiguratzea</bookmark_value><bookmark_value>inprimagailuak; inprimagailu lehenetsia</bookmark_value><bookmark_value>orrialde-formatuak; murrizketak</bookmark_value>"
#: 01140000.xhp
-#, fuzzy
msgctxt ""
"01140000.xhp\n"
"hd_id3147294\n"
"1\n"
"help.text"
msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
-msgstr "<link href=\"text/shared/01/06150000.xhp\" name=\"XML Filter Settings\">XML iragazki-ezarpenak</link>"
+msgstr "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Inprimagailuaren ezarpenak</link>"
#: 01140000.xhp
msgctxt ""
@@ -6191,14 +6189,13 @@ msgid "Paste Special"
msgstr "Itsatsi berezia"
#: 02070000.xhp
-#, fuzzy
msgctxt ""
"02070000.xhp\n"
"hd_id3147477\n"
"1\n"
"help.text"
msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
-msgstr "<link href=\"text/shared/01/02060000.xhp\" name=\"Paste\">Itsatsi</link>"
+msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Itsasketa berezia</link>"
#: 02070000.xhp
msgctxt ""
@@ -7488,13 +7485,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr "Karaktere bakarra adierazten du, baldin eta ez bada beste ezer zehazten."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7506,13 +7504,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr "Edozein karaktere bakar adierazten du lerro-jauzian edo paragrafo-jauzian izan ezik. Adibidez, \"g.zi\" bilaketa-terminoak \"gezi\" eta\"gazi\" hitzetarako balio du."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7524,13 +7523,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr "Bilaketa-terminoa bilatzeko ezinbestekoa da terminoa paragrafoaren hasieran egotea. Objektu bereziak, adibidez, eremu hutsak edo karaktereen marko bereziak paragrafoaren hasieran badaude, ez ikusi egingo zaie. Adibidea: \"^Jon\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7550,13 +7550,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7595,13 +7596,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr "Paragrafoan bilaketa-ereduarekin bat datorren katerik luzeena bilatzen da beti. Paragrafoan \"AX 4 AX4\" katea badago, pasarte osoa nabarmentzen da."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7613,13 +7615,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr "\"?\"-ren aurrean zero edo karaktere bat bilatzen du. Adibidez, \"Testuak?\"(e)k \"Testua\" eta \"Testuak\" bilatzen ditu eta \"x(ab|c)?i\"-(e)k \"xy\", \"xabi\" edo \"xci\" bilatzen ditu."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -11433,14 +11436,13 @@ msgid "Protect Changes"
msgstr ""
#: 02230150.xhp
-#, fuzzy
msgctxt ""
"02230150.xhp\n"
"hd_id3154349\n"
"1\n"
"help.text"
msgid "<link href=\"text/shared/01/02230150.xhp\" name=\"Protect Changes\">Protect Changes</link>"
-msgstr "<link href=\"text/shared/01/02230200.xhp\" name=\"Show Changes\">Erakutsi aldaketak</link>"
+msgstr "<link href=\"text/shared/01/02230150.xhp\" name=\"Protect Changes\">Babestu aldaketak</link>"
#: 02230150.xhp
msgctxt ""
@@ -11959,14 +11961,13 @@ msgid "Accept All"
msgstr "Onartu dena"
#: 02230401.xhp
-#, fuzzy
msgctxt ""
"02230401.xhp\n"
"par_id3150012\n"
"21\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/acceptall\">Accepts all of the changes and removes the highlighting from the document.</ahelp>"
-msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/accept\">Hautatutako aldaketa onartzen du eta aldaketaren nabarmentzea kentzen du dokumentuan.</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/acceptall\">Hautatutako aldaketa guztiak onartzen ditu eta aldaketaren nabarmentzea kentzen du dokumentuan.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -14778,14 +14779,13 @@ msgid "Typeface"
msgstr "Estiloa"
#: 05020100.xhp
-#, fuzzy
msgctxt ""
"05020100.xhp\n"
"par_id3155922\n"
"11\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/charnamepage/ctlstylelb\">Select the formatting that you want to apply.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/gradientpage/gradientslb\">Hautatu aplikatu edo sortu nahi duzun gradiente mota.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/charnamepage/ctlstylelb\">Hautatu aplikatu nahi duzun formatua.</ahelp>"
#: 05020100.xhp
msgctxt ""
@@ -15197,13 +15197,12 @@ msgid "Overline color"
msgstr "Gaineko marraren kolorea"
#: 05020200.xhp
-#, fuzzy
msgctxt ""
"05020200.xhp\n"
"par_id0123200902243466\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/effectspage/overlinecolorlb\">Select the color for the overlining.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/hatchpage/linecolorlb\">Hautatu itzaleztadura-marren kolorea.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/effectspage/overlinecolorlb\">Hautatu goiko marraren kolorea.</ahelp>"
#: 05020200.xhp
msgctxt ""
@@ -15269,14 +15268,13 @@ msgid "Underline color"
msgstr "Azpimarraren kolorea"
#: 05020200.xhp
-#, fuzzy
msgctxt ""
"05020200.xhp\n"
"par_id3150254\n"
"79\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/effectspage/underlinecolorlb\">Select the color for the underlining.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/hatchpage/linecolorlb\">Hautatu itzaleztadura-marren kolorea.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/effectspage/underlinecolorlb\">Hautatu azpimarraren kolorea.</ahelp>"
#: 05020200.xhp
msgctxt ""
@@ -15821,13 +15819,14 @@ msgid "Explanation"
msgstr "Azalpena"
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
@@ -25859,14 +25858,13 @@ msgid "Type"
msgstr "Mota"
#: 05210300.xhp
-#, fuzzy
msgctxt ""
"05210300.xhp\n"
"par_id3148440\n"
"4\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/gradientpage/gradienttypelb\">Select the gradient that you want to apply.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/gradientpage/gradientslb\">Hautatu aplikatu edo sortu nahi duzun gradiente mota.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/gradientpage/gradienttypelb\">Hautatu aplikatu nahi duzun gradientea.</ahelp>"
#: 05210300.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/02.po b/source/eu/helpcontent2/source/text/shared/02.po
index cc55004cc85..cae9d76e157 100644
--- a/source/eu/helpcontent2/source/text/shared/02.po
+++ b/source/eu/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-02-27 15:18+0000\n"
+"PO-Revision-Date: 2016-03-06 19:52+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456586324.000000\n"
+"X-POOTLE-MTIME: 1457293922.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -13085,14 +13085,13 @@ msgid "<link href=\"text/shared/02/10010000.xhp\" name=\"Previous Page\">Previou
msgstr "<link href=\"text/shared/02/10010000.xhp\" name=\"Previous Page\">Aurreko orrialdea</link>"
#: 10010000.xhp
-#, fuzzy
msgctxt ""
"10010000.xhp\n"
"par_id3150445\n"
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:PreviousPage\" visibility=\"visible\">Moves back to the previous page in the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr "<ahelp hid=\".uno:PreviousPage\" visibility=\"visible\">Dokumentuko aurreko orrialdera itzultzen da.</ahelp> Funtzio hau aktibatzeko ezinbestekoa da <emph>Fitxategia</emph> menuan <emph>Orrialdearen aurrebista</emph> funtzioa hautatzea."
+msgstr "<ahelp hid=\".uno:PreviousPage\" visibility=\"visible\">Dokumentuko aurreko orrialdera itzultzen da.</ahelp> Funtzio hau aktibatzeko ezinbestekoa da <emph>Inprimatzeko aurrebista</emph> funtzioa hautatzea <emph>Fitxategia</emph> menuan."
#: 10010000.xhp
msgctxt ""
@@ -13129,14 +13128,13 @@ msgid "<link href=\"text/shared/02/10020000.xhp\" name=\"Next Page\">Next Page</
msgstr "<link href=\"text/shared/02/10020000.xhp\" name=\"Next Page\">Hurrengo orrialdea</link>"
#: 10020000.xhp
-#, fuzzy
msgctxt ""
"10020000.xhp\n"
"par_id3159224\n"
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:NextPage\" visibility=\"visible\">Moves forward to the next page in the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr "<ahelp hid=\".uno:NextPage\" visibility=\"visible\">Dokumentuko hurrengo orrialdera mugitzen da.</ahelp> Funtzio hau aktibatzeko ezinbestekoa da <emph>Fitxategia</emph> menuko <emph>Orrialdearen aurrebista</emph> funtzioa hautatzea."
+msgstr "<ahelp hid=\".uno:NextPage\" visibility=\"visible\">Dokumentuko hurrengo orrialdera doa.</ahelp> Funtzio hau aktibatzeko ezinbestekoa da <emph>Inprimatzeko aurrebista</emph> funtzioa hautatzea <emph>Fitxategia</emph> menuan."
#: 10020000.xhp
msgctxt ""
@@ -13173,14 +13171,13 @@ msgid "<switchinline select=\"appl\"> <caseinline select=\"WRITER\"><link href=\
msgstr "<switchinline select=\"appl\"> <caseinline select=\"WRITER\"><link href=\"text/shared/02/10030000.xhp\" name=\"To Document Begin\">Dokumentu hasierara</link></caseinline> <defaultinline><link href=\"text/shared/02/10030000.xhp\" name=\"First Page\">Lehen orrialdea</link></defaultinline> </switchinline>"
#: 10030000.xhp
-#, fuzzy
msgctxt ""
"10030000.xhp\n"
"par_id3153539\n"
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:FirstPage\" visibility=\"visible\">Moves to the first page of the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr "<ahelp hid=\".uno:FirstPage\" visibility=\"visible\">Dokumentuaren lehen orrialdera mugitzen da.</ahelp> Funtzio hau aktibatzeko ezinbestekoa da <emph>Fitxategia</emph> menuko <emph>Orrialdearen aurrebista</emph> funtzioa hautatzea."
+msgstr "<ahelp hid=\".uno:FirstPage\" visibility=\"visible\">Dokumentuaren lehen orrialdera mugitzen da.</ahelp> Funtzio hau aktibatzeko ezinbestekoa da <emph>Inprimatzeko aurrebista</emph> funtzioa hautatzea <emph>Fitxategia</emph> menuan."
#: 10030000.xhp
msgctxt ""
@@ -13217,14 +13214,13 @@ msgid "<switchinline select=\"appl\"> <caseinline select=\"WRITER\"><link href=\
msgstr "<switchinline select=\"appl\"> <caseinline select=\"WRITER\"><link href=\"text/shared/02/10040000.xhp\" name=\"To Document End\">Dokumentuaren amaierara</link></caseinline> <defaultinline><link href=\"text/shared/02/10040000.xhp\" name=\"Last Page\">Azken orrialdea</link></defaultinline> </switchinline>"
#: 10040000.xhp
-#, fuzzy
msgctxt ""
"10040000.xhp\n"
"par_id3149716\n"
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:LastPage\" visibility=\"visible\">Moves to the last page of the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr "<ahelp hid=\".uno:LastPage\" visibility=\"visible\">Dokumentuaren azken orrialdera mugitzen da.</ahelp> Funtzio hau aktibatzeko ezinbestekoa da <emph>Fitxategia</emph> menuko <emph>Orrialdearen aurrebista</emph> funtzioa hautatzea."
+msgstr "<ahelp hid=\".uno:LastPage\" visibility=\"visible\">Dokumentuaren azken orrialdera mugitzen da.</ahelp> Funtzio hau aktibatzeko ezinbestekoa da <emph>Inprimatzeko aurrebista</emph> funtzioa hautatzea <emph>Fitxategia</emph> menuan."
#: 10040000.xhp
msgctxt ""
@@ -13261,14 +13257,13 @@ msgid "<link href=\"text/shared/02/10100000.xhp\" name=\"Close Window\">Close Wi
msgstr "<link href=\"text/shared/02/10100000.xhp\" name=\"Close\">Itxi</link>"
#: 10100000.xhp
-#, fuzzy
msgctxt ""
"10100000.xhp\n"
"par_id3155934\n"
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:CloseWin\">Closes the current window.</ahelp> Choose <emph>Window - Close Window</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F4. In the print preview of $[officename] Writer and Calc, you can close the current window by clicking the <emph>Close Preview</emph> button."
-msgstr "Aukeratu <emph>Editatu - Itsatsi</emph>, edo sakatu <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V. Gelaxka berrian kokatuko da formula."
+msgstr ""
#: 10100000.xhp
msgctxt ""
@@ -13865,13 +13860,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Zerrendatutako datu-baseko eremu guztiak <emph>Taulako zutabea(k)</emph> zerrenda-koadrora mugitzen dira.</ahelp> <emph>Taulako zutabea(k)</emph> zerrenda-koadroan zerrendatutako eremu guztiak dokumentuan txertatuko dira."
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13883,13 +13879,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\"><emph>Taulako zutabea(k)</emph> zerrenda-koadrora mugitzen da/dira hautatutako datu-baseko eremuan. </ahelp><emph>Taulako zutabea(k)</emph> zerrenda-koadroan sarrera bat mugitzeko, egin klik bikoitza sarrera horretan. <emph>Taulako zutabea(k)</emph> zerrenda-koadroan zerrendatutako eremu guztiak dokumentuan txertatzen dira."
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -14178,13 +14175,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr "Datu-baseko taulako zutabe guztiak agertzen dira. Denak hauta daitezke zerrenda-koadroan dokumentuan txertatzeko. <ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tabletxtcols\" visibility=\"visible\">Hautatu dokumentuan txertatu nahi duzun datu-baseko zutabea.</ahelp>"
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15683,13 +15681,14 @@ msgid "Example"
msgstr "Adibidea"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15719,13 +15718,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr "\"M?ller\" eskatuta, adibidez, Miller eta Moller aurkitzen ditu"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15809,31 +15809,34 @@ msgid "Search with regular expressions"
msgstr "Bilatu adierazpen erregularrekin"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/autopi.po b/source/eu/helpcontent2/source/text/shared/autopi.po
index 43c5b0630e8..c112e4623a3 100644
--- a/source/eu/helpcontent2/source/text/shared/autopi.po
+++ b/source/eu/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2016-02-27 14:26+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2016-03-03 22:08+0000\n"
+"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456583163.000000\n"
+"X-POOTLE-MTIME: 1457042909.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3422,13 +3422,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3459,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Egin klik eremu guztiak geziak seinalatutako kutxara mugitzeko.</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3496,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Egin klik eremu guztiak geziak seinalatutako kutxara mugitzeko.</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4524,13 +4527,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Txosten berrian dauden eremu guztiak bistaratzen ditu.</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4560,13 +4564,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Egin klik eremu guztiak geziak seinalatutako kutxara mugitzeko.</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4720,13 +4725,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Txostena elkartzekoeremuak zerrendatzen ditu. Elkartze-maila bat kentzeko, hautatu eremu-izena, eta ondoren egin klik <emph><</emph> botoian. Elkartzekolau maila hauta ditzakezu gehienez.</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4738,13 +4744,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Egin klik hautatutako eremua geziak seinalatutako kutxara mugitzeko.</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/explorer/database.po b/source/eu/helpcontent2/source/text/shared/explorer/database.po
index 2ea98b14299..e36bfc59b96 100644
--- a/source/eu/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/eu/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-11 17:59+0000\n"
+"PO-Revision-Date: 2016-03-03 22:19+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431367187.000000\n"
+"X-POOTLE-MTIME: 1457043553.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1760,13 +1760,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr "... eremuko edukia ez badagokio zehaztutako adierazpenari."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1787,13 +1788,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr "... eremuaren edukia zehaztutako adierazpena baino handiagoa bada."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2793,13 +2795,14 @@ msgid "No"
msgstr "No"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6230,13 +6233,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Taula bati esleitu diezazkiokezun indize erabilgarriak zerrendatzen ditu.</ahelp> Hautatutako taula bati indize bat esleitzeko, egin klik ezker-geziaren ikonoan. Ezker-gezi bikoitzak indize erabilgarri guztiak esleitzen ditu."
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6266,13 +6270,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Indize libre guztiak <emph>Taula-indizeak</emph> zerrendara eramaten ditu.</ahelp>"
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12419,12 +12424,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr "<ahelp hid=\".\">Kontrolen errenkada berri bat eransten du.</ahelp>"
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14443,12 +14449,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr "<ahelp hid=\".\">Hautatu eremu bat eremu-informazioa editatzeko.</ahelp>"
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/guide.po b/source/eu/helpcontent2/source/text/shared/guide.po
index 87cd0beff41..1f43b7f8d36 100644
--- a/source/eu/helpcontent2/source/text/shared/guide.po
+++ b/source/eu/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2016-02-27 21:32+0000\n"
+"PO-Revision-Date: 2016-03-13 12:18+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456608776.000000\n"
+"X-POOTLE-MTIME: 1457871502.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -16292,7 +16292,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "<variable id=\"redlining_enter\"><link href=\"text/shared/guide/redlining_enter.xhp\" name=\"Recording Changes\">Recording Changes</link></variable>"
-msgstr "<variable id=\"redlining_enter\"><link href=\"text/shared/guide/redlining_enter.xhp\" name=\"Recording Changes\">Aldaketak gordetzea</link></variable>"
+msgstr "<variable id=\"redlining_enter\"><link href=\"text/shared/guide/redlining_enter.xhp\" name=\"Recording Changes\">Aldaketak grabatzea</link></variable>"
#: redlining_enter.xhp
msgctxt ""
@@ -16430,13 +16430,12 @@ msgid "<bookmark_value>changes; navigating</bookmark_value> <bookmark_val
msgstr ""
#: redlining_navigation.xhp
-#, fuzzy
msgctxt ""
"redlining_navigation.xhp\n"
"par_id3153880\n"
"help.text"
msgid "<variable id=\"redlining_navigation\"><link href=\"text/shared/guide/redlining_navigation.xhp\" name=\"Navigating Changes\">Navigating Changes</link></variable>"
-msgstr "<variable id=\"redlining_enter\"><link href=\"text/shared/guide/redlining_enter.xhp\" name=\"Recording Changes\">Aldaketak gordetzea</link></variable>"
+msgstr "<variable id=\"redlining_navigation\"><link href=\"text/shared/guide/redlining_navigation.xhp\" name=\"Navigating Changes\">Aldaketak arakatzea</link></variable>"
#: redlining_navigation.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/optionen.po b/source/eu/helpcontent2/source/text/shared/optionen.po
index 57b0086914a..9e2476245b5 100644
--- a/source/eu/helpcontent2/source/text/shared/optionen.po
+++ b/source/eu/helpcontent2/source/text/shared/optionen.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-16 19:02+0100\n"
-"PO-Revision-Date: 2016-02-28 20:13+0000\n"
+"PO-Revision-Date: 2016-03-13 09:24+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456690412.000000\n"
+"X-POOTLE-MTIME: 1457861082.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -11087,7 +11087,7 @@ msgctxt ""
"hd_id3145071\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">Compatibility</link>"
-msgstr "<link href=\"text/shared/optionen/01010800.xhp\" name=\"View\">Ikusi</link>"
+msgstr "<link href=\"text/shared/optionen/01060800.xhp\" name=\"Compatibility\">Bateragarritasuna</link>"
#: 01060800.xhp
msgctxt ""
@@ -11929,7 +11929,7 @@ msgctxt ""
"40\n"
"help.text"
msgid "In a presentation or drawing document, this function can also be accessed with the <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\"><emph>Snap to Object Points</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\"><emph>Snap to Object Points</emph></link></caseinline><defaultinline><emph>Snap to Object Points</emph></defaultinline></switchinline> icon in the <emph>Options</emph> bar."
-msgstr "Aurkezpen- edo marrazki-dokumentu batean, funtzio honetan sar daiteke honela: <emph>Aukerak</emph> barrako<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\"><emph>Atxiki objektu-puntuei</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\"><emph>Atxiki objektu-puntuei</emph></link></caseinline><defaultinline><emph>Atxiki objektu-puntuei</emph></defaultinline></switchinline> ikonoa erabiliz."
+msgstr "Aurkezpen- edo marrazki-dokumentu batean funtzio honela atzitu daiteke: <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\"><emph>Atxiki objektu-puntuei</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/02/13170000.xhp\" name=\"Snap to Object Points\"><emph>Atxiki objektu-puntuei</emph></link></caseinline><defaultinline><emph>Atxiki objektu-puntuei</emph></defaultinline></switchinline> ikonoa erabiliz <emph>Aukerak</emph> barran."
#: 01070300.xhp
msgctxt ""
@@ -13327,14 +13327,13 @@ msgid "<link href=\"text/shared/optionen/01130200.xhp\" name=\"Microsoft Office\
msgstr "<link href=\"text/shared/optionen/01130200.xhp\" name=\"Microsoft Office\">Microsoft Office</link>"
#: 01130200.xhp
-#, fuzzy
msgctxt ""
"01130200.xhp\n"
"par_id3149095\n"
"2\n"
"help.text"
msgid "Specifies the settings for importing and exporting Microsoft Office documents."
-msgstr "Microsoft Office-ko OLE objektuak inportatu eta esportatzeko ezarpenak zehazten ditu."
+msgstr "Microsoft Office dokumentuak inportatu eta esportatzeko ezarpenak zehazten ditu."
#: 01130200.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/simpress.po b/source/eu/helpcontent2/source/text/simpress.po
index cf70891e4bf..13fa62640bc 100644
--- a/source/eu/helpcontent2/source/text/simpress.po
+++ b/source/eu/helpcontent2/source/text/simpress.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: 2015-05-11 18:00+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2016-03-12 19:38+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431367245.000000\n"
+"X-POOTLE-MTIME: 1457811502.000000\n"
#: main0000.xhp
msgctxt ""
@@ -202,13 +202,12 @@ msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</li
msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">Irudi-mapa</link>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"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=\"Open\">Ireki</link>"
+msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Objektua</link>"
#: main0103.xhp
msgctxt ""
@@ -237,13 +236,12 @@ msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-scree
msgstr "<ahelp hid=\".\">Menu horretan dokumentuaren pantailako bistaratzea kontrolatzeko komandoak daude.</ahelp>"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id110120150549176280\n"
"help.text"
msgid "<link href=\"text/simpress/01/03120000.xhp\">Handout</link>"
-msgstr "<link href=\"text/simpress/01/03152000.xhp\">Orrialde-zenbakia</link>"
+msgstr "<link href=\"text/simpress/01/03120000.xhp\">Prospektua</link>"
#: main0103.xhp
msgctxt ""
@@ -817,13 +815,12 @@ msgid "Slide"
msgstr ""
#: main0117.xhp
-#, fuzzy
msgctxt ""
"main0117.xhp\n"
"hd_id0908201507475698\n"
"help.text"
msgid "<link href=\"text/simpress/main0117.xhp\">Slide</link>"
-msgstr "<link href=\"text/simpress/02/10070000.xhp\">Elipsea</link>"
+msgstr "<link href=\"text/simpress/main0117.xhp\">Diapositiba</link>"
#: main0117.xhp
msgctxt ""
@@ -1873,7 +1870,7 @@ msgctxt ""
"par_id0921200901104279\n"
"help.text"
msgid "Previous slide without effects"
-msgstr "AUrreko diapositiba efekturik gabe"
+msgstr "Aurreko diapositiba efekturik gabe"
#: presenter.xhp
msgctxt ""
@@ -1884,13 +1881,12 @@ msgid "Alt+Page Up"
msgstr ""
#: presenter.xhp
-#, fuzzy
msgctxt ""
"presenter.xhp\n"
"par_id092120090110427\n"
"help.text"
msgid "Next slide without effects"
-msgstr "AUrreko diapositiba efekturik gabe"
+msgstr "Hurrengo diapositiba efekturik gabe"
#: presenter.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/simpress/04.po b/source/eu/helpcontent2/source/text/simpress/04.po
index e9a447a6d60..67bb161da6a 100644
--- a/source/eu/helpcontent2/source/text/simpress/04.po
+++ b/source/eu/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: 2016-02-28 15:22+0000\n"
+"PO-Revision-Date: 2016-03-06 20:18+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456672975.000000\n"
+"X-POOTLE-MTIME: 1457295483.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -495,7 +495,7 @@ msgctxt ""
"56\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ Page Down"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+ Plus tekla"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+OrrBeh"
#: 01020000.xhp
msgctxt ""
@@ -684,7 +684,7 @@ msgctxt ""
"120\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ click"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+ Plus tekla"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+ klik"
#: 01020000.xhp
msgctxt ""
@@ -738,7 +738,7 @@ msgctxt ""
"79\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ Plus key"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+ Plus tekla"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl </defaultinline></switchinline>+Plus tekla"
#: 01020000.xhp
msgctxt ""
@@ -756,7 +756,7 @@ msgctxt ""
"81\n"
"help.text"
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ Plus key"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+ Plus tekla"
+msgstr "Maius+<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+ Plus tekla"
#: 01020000.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"83\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ Minus key"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+ Plus tekla"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl </defaultinline></switchinline>+Minus tekla"
#: 01020000.xhp
msgctxt ""
@@ -792,7 +792,7 @@ msgctxt ""
"85\n"
"help.text"
msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ Minus key"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+ Plus tekla"
+msgstr "Maius+<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+ Minus tekla"
#: 01020000.xhp
msgctxt ""
@@ -1460,7 +1460,7 @@ msgctxt ""
"92\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+ Arrow Key"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+ Plus tekla"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+gezi-tekla"
#: 01020000.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/smath/01.po b/source/eu/helpcontent2/source/text/smath/01.po
index 8c64091fe87..f51c693bdb9 100644
--- a/source/eu/helpcontent2/source/text/smath/01.po
+++ b/source/eu/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-02-27 15:49+0000\n"
+"PO-Revision-Date: 2016-03-06 18:20+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456588190.000000\n"
+"X-POOTLE-MTIME: 1457288403.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -13435,13 +13435,12 @@ msgid "<variable id=\"formelimportierentext\"><ahelp hid=\".uno:ImportFormula\"
msgstr "<variable id=\"formelimportierentext\"><ahelp hid=\"SID_INSERT_FORMULA\" visibility=\"visible\">Komando horrek formulak inportatzeko elkarrizketa-koadroa irekitzen du.</ahelp></variable>"
#: 06020000.xhp
-#, fuzzy
msgctxt ""
"06020000.xhp\n"
"par_id3153916\n"
"help.text"
msgid "The <emph>Insert</emph> dialog is set up like the <link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link> dialog under <emph>File</emph>. Use the <emph>Insert</emph> dialog to load, edit and display a formula saved as a file in the <emph>Commands</emph> window."
-msgstr "<emph>Txertatu</emph> elkarrizketa-koadroa <emph>Fitxategia</emph> menuko <link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Ireki</link> elkarrizketa-koadroa bezala konfiguratuta dago. Erabili <emph>Txertatu</emph> elkarrizketa-koadroa <emph>Komandoak</emph> leihoan fitxategi gisa gordetako formula kargatu, editatu eta bistaratzeko."
+msgstr "<emph>Txertatu</emph> elkarrizketa-koadroa <link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Ireki</link> elkarrizketa-koadroa bezala konfiguratuta dago, <emph>Fitxategia</emph> menukoa. Erabili <emph>Txertatu</emph> elkarrizketa-koadroa <emph>Komandoak</emph> leihoan fitxategi gisa gordetako formula kargatu, editatu eta bistaratzeko."
#: 06020000.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/swriter.po b/source/eu/helpcontent2/source/text/swriter.po
index bf1d3f1ffbb..6c85b1389d5 100644
--- a/source/eu/helpcontent2/source/text/swriter.po
+++ b/source/eu/helpcontent2/source/text/swriter.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: 2015-04-23 14:54+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2016-03-06 20:48+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429800875.000000\n"
+"X-POOTLE-MTIME: 1457297315.000000\n"
#: main0000.xhp
msgctxt ""
@@ -180,13 +180,12 @@ msgid "Opens the <emph>Navigator</emph> window on the <emph>Page Number</emph> s
msgstr ""
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"hd_id3147302\n"
"help.text"
msgid "<link href=\"text/swriter/01/02150000.xhp\" name=\"Footnotes\">Footnote or Endnote</link>"
-msgstr "<link href=\"text/swriter/01/04030000.xhp\" name=\"Footnote\">Oin-oharrak</link>"
+msgstr "<link href=\"text/swriter/01/02150000.xhp\" name=\"Footnotes\">Oin-oharra edo amaiera-oharra</link>"
#: main0102.xhp
#, fuzzy
@@ -234,13 +233,12 @@ msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</li
msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Irudi-mapa\">Irudi-mapa</link>"
#: main0102.xhp
-#, fuzzy
msgctxt ""
"main0102.xhp\n"
"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=\"Open\">Ireki</link>"
+msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Objektua</link>"
#: main0103.xhp
msgctxt ""
@@ -269,22 +267,20 @@ msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-scree
msgstr "<ahelp hid=\".\">Menu horretan dokumentuaren pantailako bistaratzea kontrolatzeko komandoak daude.</ahelp>"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"par_id102720150703473580\n"
"help.text"
msgid "<link href=\"text/swriter/01/03130000.xhp\">Normal</link>"
-msgstr "<link href=\"text/swriter/01/06100000.xhp\">Ordenatu</link>"
+msgstr "<link href=\"text/swriter/01/03130000.xhp\">Normala</link>"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"par_id102720150703478401\n"
"help.text"
msgid "<link href=\"text/swriter/01/03120000.xhp\">Web</link>"
-msgstr "<link href=\"text/swriter/01/06100000.xhp\">Ordenatu</link>"
+msgstr "<link href=\"text/swriter/01/03120000.xhp\">Web</link>"
#: main0103.xhp
msgctxt ""
@@ -453,7 +449,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "<link href=\"text/swriter/01/04030000.xhp\" name=\"Footnote\">Footnote/Endnote</link>"
-msgstr "<link href=\"text/swriter/01/04030000.xhp\" name=\"Footnote\">Oin-oharrak</link>"
+msgstr "<link href=\"text/swriter/01/04030000.xhp\" name=\"Footnote\">Oin-oharra/Amaiera-oharra</link>"
#: main0104.xhp
msgctxt ""
@@ -1689,27 +1685,25 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Print Preview"
-msgstr ""
+msgstr "Inprimatzeko aurrebista"
#: main0210.xhp
-#, fuzzy
msgctxt ""
"main0210.xhp\n"
"hd_id3145783\n"
"1\n"
"help.text"
msgid "<link href=\"text/swriter/main0210.xhp\" name=\"Print Preview\">Print Preview</link>"
-msgstr "<link href=\"text/swriter/main0210.xhp\" name=\"Page Preview\">Orrialdearen aurrebista</link>"
+msgstr "<link href=\"text/swriter/main0210.xhp\" name=\"Print Preview\">Inprimatzeko aurrebista</link>"
#: main0210.xhp
-#, fuzzy
msgctxt ""
"main0210.xhp\n"
"par_id3154253\n"
"2\n"
"help.text"
msgid "The <emph>Print Preview</emph> Bar appears when you view the current document in the print preview mode."
-msgstr "<emph>Orrialdearen aurrebista</emph> barra uneko dokumentua orrialdearen aurrebista moduan ikustean agertzen da."
+msgstr "<emph>Inprimatzeko aurrebistaren</emph> barra uneko dokumentua inprimatzeko aurrebista moduan ikustean agertzen da."
#: main0213.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/swriter/01.po b/source/eu/helpcontent2/source/text/swriter/01.po
index 5b0e7955daa..274f35fd23e 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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2016-02-27 19:00+0000\n"
+"PO-Revision-Date: 2016-03-06 21:07+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456599600.000000\n"
+"X-POOTLE-MTIME: 1457298455.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -22,16 +22,15 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Print Preview"
-msgstr ""
+msgstr "Inprimatzeko aurrebista"
#: 01120000.xhp
-#, fuzzy
msgctxt ""
"01120000.xhp\n"
"hd_id2013916\n"
"help.text"
msgid "<link href=\"text/swriter/01/01120000.xhp\">Print Preview</link>"
-msgstr "<link href=\"text/swriter/01/01120000.xhp\">Orrialdearen aurrebista</link>"
+msgstr "<link href=\"text/swriter/01/01120000.xhp\">Inprimatzeko aurrebista</link>"
#: 01120000.xhp
msgctxt ""
@@ -42,13 +41,12 @@ msgid "<ahelp hid=\".uno:PrintPreview\">Displays a preview of the printed page o
msgstr "<ahelp hid=\".uno:PrintPreview\">Inprimatutako orrialdearen aurrebista bistaratzen du edo aurrebista ixten du.</ahelp>"
#: 01120000.xhp
-#, fuzzy
msgctxt ""
"01120000.xhp\n"
"par_id8697470\n"
"help.text"
msgid "Use the icons on the <emph>Print Preview Bar</emph> to scroll through the pages of the document or to print the document."
-msgstr "Dokumentuaren orrialdeetan korritzeko edo dokumentua inprimatzeko erabili <emph>Orrialdearen aurrebista barrako</emph> ikonoak."
+msgstr "Erabili <emph>Inprimatzeko aurrebistaren barrako</emph> ikonoak dokumentuaren orrialdeetan korritzeko edo dokumentua inprimatzeko ."
#: 01120000.xhp
msgctxt ""
@@ -59,22 +57,20 @@ msgid "You can also press Page Up and Page Down keys to scroll through the pages
msgstr "Orrialdeetan korritzeko Orrialdea gora eta Orrialdea behera teklak ere erabil daitezke."
#: 01120000.xhp
-#, fuzzy
msgctxt ""
"01120000.xhp\n"
"par_id4771874\n"
"help.text"
msgid "You cannot edit your document while you are in the print preview."
-msgstr "Orrialdearen aurrebistan zaudenean ezin duzu dokumentua editatu."
+msgstr "Ezin duzu dokumentua editatu inprimatzeko aurrebistan zaudenean."
#: 01120000.xhp
-#, fuzzy
msgctxt ""
"01120000.xhp\n"
"par_id5027008\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">To exit the print preview, click the <emph>Close Preview</emph> button.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Orrialdearen aurrebistatik irteteko, egin klik <emph>Itxi aurrebista</emph> botoian.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inprimatzeko aurrebistatik irteteko, egin klik <emph>Itxi aurrebista</emph> botoian.</ahelp>"
#: 01120000.xhp
msgctxt ""
@@ -3191,13 +3187,12 @@ msgid "Next footnote"
msgstr "Hurrengo oin-oharra"
#: 02150000.xhp
-#, fuzzy
msgctxt ""
"02150000.xhp\n"
"par_id3150772\n"
"help.text"
msgid "<link href=\"text/swriter/01/04030000.xhp\" name=\"Insert Footnote\">Insert Footnote/Endnote</link> dialog."
-msgstr "<link href=\"text/swriter/01/04030000.xhp\" name=\"Insert Footnote\">Oin-oharra/Amaiera-oharra</link>"
+msgstr "<link href=\"text/swriter/01/04030000.xhp\" name=\"Insert Footnote\">Txertatu Oin-oharra/Amaiera-oharra</link> elkarrizketa-koadroa."
#: 02160000.xhp
msgctxt ""
@@ -11029,13 +11024,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Aukeratu hautatutako indize-mailari aplikatu nahi diozun paragrafo-estiloa eta egin klik Esleitu (<emph><) </emph>botoian.</ahelp>"
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -12742,14 +12738,13 @@ msgid "Chapter entry"
msgstr "Kapitulu-sarrera"
#: 04120222.xhp
-#, fuzzy
msgctxt ""
"04120222.xhp\n"
"par_id3155174\n"
"7\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterentry\">Select the chapter information that you want to include in the index entry.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/category\">Hautatu indize-sarrerentzat erabili nahi duzun epigrafe-kategoria.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterentry\">Hautatu indize-sarrerara gehitu nahi duzun kapitulu-informazioa.</ahelp>"
#: 04120222.xhp
msgctxt ""
@@ -27006,13 +27001,12 @@ msgid "Zoom"
msgstr "Zooma"
#: mailmerge05.xhp
-#, fuzzy
msgctxt ""
"mailmerge05.xhp\n"
"par_idN1057D\n"
"help.text"
msgid "<ahelp hid=\".\">Select a magnification for the print preview.</ahelp>"
-msgstr "<ahelp hid=\".\">Hautatu orrialde-aurrebistaren lupa.</ahelp>"
+msgstr "<ahelp hid=\".\">Hautatu inprimatzeko aurrebistaren lupa.</ahelp>"
#: mailmerge05.xhp
msgctxt ""
@@ -27767,12 +27761,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">Hautatu eremu bat eta arrastatu eremua beste zerrenda batera.</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27783,12 +27778,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">Helbide-elementuak zerrendan hautatutako eremua beste zerrenda batean gehitzen du. Eremu bera behin baino gehiagotan gehi dezakezu.</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27975,12 +27971,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">Hautatu eremu bat eta arrastatu eremua beste zerrenda batera.</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27991,12 +27988,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elem
msgstr "<ahelp hid=\".\">Agur-elementuen zerrendan hautatutako eremua beste zerrenda batean gehitzen du. Eremu bera behin baino gehiagotan gehi dezakezu.</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28431,12 +28429,13 @@ msgid "<ahelp hid=\".\">Select an address field and drag the field to the other
msgstr "<ahelp hid=\".\">Hautatu helbide-eremu bat eta arrastatu eremua beste zerrenda batera.</ahelp>"
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28447,12 +28446,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">Helbide-elementuak zerrendan hautatutako eremua beste zerrenda batean gehitzen du.</ahelp> Eremu bera behin baino gehiagotan gehi dezakezu."
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/swriter/02.po b/source/eu/helpcontent2/source/text/swriter/02.po
index 8f3379fd8d3..c35fef5a36b 100644
--- a/source/eu/helpcontent2/source/text/swriter/02.po
+++ b/source/eu/helpcontent2/source/text/swriter/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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 14:54+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2016-03-06 20:51+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429800885.000000\n"
+"X-POOTLE-MTIME: 1457297502.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -974,14 +974,13 @@ msgid "<link href=\"text/swriter/02/10030000.xhp\" name=\"Preview Zoom\">Preview
msgstr "<link href=\"text/swriter/02/10030000.xhp\" name=\"Preview Zoom\">Aurrebistaren eskala</link>"
#: 10030000.xhp
-#, fuzzy
msgctxt ""
"10030000.xhp\n"
"par_id3145244\n"
"2\n"
"help.text"
msgid "<ahelp hid=\"HID_PVIEW_ZOOM_LB\">Determines the zoom level of the print preview.</ahelp>"
-msgstr "<ahelp hid=\"HID_PVIEW_ZOOM_LB\">Orrialdearen aurrebistaren zoom-maila zehazten du.</ahelp>"
+msgstr "<ahelp hid=\"HID_PVIEW_ZOOM_LB\">Inprimatzeko aurrebistaren zoom-maila zehazten du.</ahelp>"
#: 10050000.xhp
msgctxt ""
@@ -992,24 +991,22 @@ msgid "Two Pages Preview"
msgstr ""
#: 10050000.xhp
-#, fuzzy
msgctxt ""
"10050000.xhp\n"
"hd_id3145822\n"
"1\n"
"help.text"
msgid "<link href=\"text/swriter/02/10050000.xhp\" name=\"Two Pages Preview\">Two Pages Preview</link>"
-msgstr "<link href=\"text/swriter/02/10090000.xhp\" name=\"Print page view\">Inprimatu orrialdearen aurrebista</link>"
+msgstr "<link href=\"text/swriter/02/10050000.xhp\" name=\"Two Pages Preview\">Bi orrialdeen aurrebista</link>"
#: 10050000.xhp
-#, fuzzy
msgctxt ""
"10050000.xhp\n"
"par_id3154504\n"
"2\n"
"help.text"
msgid "<ahelp hid=\".uno:ShowTwoPages\" visibility=\"visible\">Displays two pages in the Print Preview window.</ahelp> Uneven numbers will always appear on the right side, even numbers on the left."
-msgstr "<ahelp hid=\".uno:ShowTwoPages\" visibility=\"visible\">Bi orrialde bistaratzen ditu orrialdearen aurrebistaren leihoan.</ahelp> Zenbaki bakoitiak beti eskuineko aldean agertuko dira eta bikoitiak ezkerrean."
+msgstr "<ahelp hid=\".uno:ShowTwoPages\" visibility=\"visible\">Bi orrialde bistaratzen ditu inprimatzeko aurrebistaren leihoan.</ahelp> Zenbaki bakoitiak beti eskuineko aldean agertuko dira eta bikoitiak ezkerrean."
#: 10050000.xhp
msgctxt ""
@@ -1143,13 +1140,12 @@ msgid "<link href=\"text/swriter/02/10080000.xhp\">Book preview</link>"
msgstr "<link href=\"text/swriter/02/10080000.xhp\">Liburuaren aurrebista</link>"
#: 10080000.xhp
-#, fuzzy
msgctxt ""
"10080000.xhp\n"
"par_idN1054C\n"
"help.text"
msgid "<ahelp hid=\"FN_SHOW_BOOKVIEW\">Select to display the first page on the right side in the print preview.</ahelp> If not selected, the first page is displayed on the left side of the preview."
-msgstr "<ahelp hid=\"FN_SHOW_BOOKVIEW\">Hautatu lehen orrialdea orrialde-aurrebistaren eskuinean bistaratu behar dela.</ahelp> Aukera hori hautatuta ez badago, lehen orrialdea aurrebistaren ezkerrean bistaratuko da."
+msgstr "<ahelp hid=\"FN_SHOW_BOOKVIEW\">Hautatu lehen orrialdea inprimatzeko aurrebistaren eskuinean bistaratu behar dela.</ahelp> Aukera hori hautatuta ez badago, lehen orrialdea aurrebistaren ezkerrean bistaratuko da."
#: 10080000.xhp
msgctxt ""
@@ -1673,13 +1669,14 @@ msgid "Subtraction"
msgstr "Kenketa"
#: 14020000.xhp
+#, fuzzy
msgctxt ""
"14020000.xhp\n"
"par_id3150087\n"
"12\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 14020000.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/swriter/04.po b/source/eu/helpcontent2/source/text/swriter/04.po
index 36836ee9569..06bc8679f8a 100644
--- a/source/eu/helpcontent2/source/text/swriter/04.po
+++ b/source/eu/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-01-08 13:42+0100\n"
-"PO-Revision-Date: 2016-02-27 23:25+0000\n"
+"PO-Revision-Date: 2016-03-06 20:22+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456615550.000000\n"
+"X-POOTLE-MTIME: 1457295748.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"114\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Buka"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Sartu"
#: 01020000.xhp
msgctxt ""
@@ -1967,7 +1967,7 @@ msgctxt ""
"219\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+End"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Buka"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandoa</caseinline><defaultinline>Ktrl</defaultinline></switchinline>+Buka"
#: 01020000.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/swriter/guide.po b/source/eu/helpcontent2/source/text/swriter/guide.po
index 31148c30a6a..12fb1270351 100644
--- a/source/eu/helpcontent2/source/text/swriter/guide.po
+++ b/source/eu/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2016-02-27 20:39+0000\n"
+"PO-Revision-Date: 2016-03-12 18:34+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456605589.000000\n"
+"X-POOTLE-MTIME: 1457807651.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -1353,31 +1353,28 @@ msgid "<link href=\"text/swriter/guide/pagebackground.xhp\">Page Backgrounds as
msgstr ""
#: border_character.xhp
-#, fuzzy
msgctxt ""
"border_character.xhp\n"
"tit\n"
"help.text"
msgid "Defining Borders for Characters"
-msgstr "Orrialdeentzako ertzak definitzea"
+msgstr "Karaktereen ertzak definitzea"
#: border_character.xhp
-#, fuzzy
msgctxt ""
"border_character.xhp\n"
"bm_id3156136\n"
"help.text"
msgid "<bookmark_value>characters;defining borders</bookmark_value> <bookmark_value>borders; for characters</bookmark_value> <bookmark_value>frames; around characters</bookmark_value> <bookmark_value>defining;character borders</bookmark_value>"
-msgstr "<bookmark_value>orriak;ertzak definitzea</bookmark_value> <bookmark_value>ertzak; orrietarako</bookmark_value> <bookmark_value>markoak; orrien inguruko</bookmark_value> <bookmark_value>definitzea;orri-ertzak</bookmark_value>"
+msgstr "<bookmark_value>orriak;ertzak definitzea</bookmark_value> <bookmark_value>ertzak; karaktereetarako</bookmark_value> <bookmark_value>markoak; karaktereen inguruko</bookmark_value> <bookmark_value>definitzea;karaktere-ertzak</bookmark_value>"
#: border_character.xhp
-#, fuzzy
msgctxt ""
"border_character.xhp\n"
"hd_id3116136\n"
"help.text"
msgid "<variable id=\"border_character\"><link href=\"text/swriter/guide/border_character.xhp\" name=\"Defining Borders for Characters\">Defining Borders for Characters</link> </variable>"
-msgstr "<variable id=\"border_page\"><link href=\"text/swriter/guide/border_page.xhp\" name=\"Defining Borders for Pages\">Orrientzako ertzak definitzea</link></variable>"
+msgstr "<variable id=\"border_character\"><link href=\"text/swriter/guide/border_character.xhp\" name=\"Defining Borders for Characters\">Karaktereen ertzak definitzea</link> </variable>"
#: border_character.xhp
msgctxt ""
@@ -1404,13 +1401,12 @@ msgid "Select the range of characters around which you want to add a border."
msgstr ""
#: border_character.xhp
-#, fuzzy
msgctxt ""
"border_character.xhp\n"
"par_id3118473\n"
"help.text"
msgid "Choose <emph>Format - Character - Borders</emph>."
-msgstr "Aukeratu <emph>Formatua - Orrialdea - Ertzak</emph>."
+msgstr "Aukeratu <emph>Formatua - Karakterea - Ertzak</emph>."
#: border_character.xhp
#, fuzzy
@@ -1463,13 +1459,12 @@ msgid "Select the range of characters around which you want to add a border."
msgstr ""
#: border_character.xhp
-#, fuzzy
msgctxt ""
"border_character.xhp\n"
"par_id3111663\n"
"help.text"
msgid "Choose <emph>Format - Character - Borders</emph>."
-msgstr "Aukeratu <emph>Formatua - Orrialdea - Ertzak</emph>."
+msgstr "Aukeratu <emph>Formatua - Karakterea - Ertzak</emph>."
#: border_character.xhp
#, fuzzy
@@ -1661,7 +1656,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Defining Borders for Pages"
-msgstr "Orrialdeentzako ertzak definitzea"
+msgstr "Orrialdeen ertzak definitzea"
#: border_page.xhp
msgctxt ""
@@ -1678,7 +1673,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=\"Defining Borders for Pages\">Orrientzako ertzak definitzea</link></variable>"
+msgstr "<variable id=\"border_page\"><link href=\"text/swriter/guide/border_page.xhp\" name=\"Defining Borders for Pages\">Orrientzako ertzak definitzea</link> </variable>"
#: border_page.xhp
msgctxt ""
@@ -11806,24 +11801,22 @@ msgid "<variable id=\"print_preview\"><link href=\"text/swriter/guide/print_prev
msgstr "<variable id=\"print_preview\"><link href=\"text/swriter/guide/print_preview.xhp\" name=\"Previewing a Page Before Printing\">Orrialdea inprimatu aurretik ikustea</link></variable>"
#: print_preview.xhp
-#, fuzzy
msgctxt ""
"print_preview.xhp\n"
"par_id3149847\n"
"34\n"
"help.text"
msgid "Choose <emph>File</emph> - <emph>Print Preview</emph>."
-msgstr "Aukeratu <emph>Fitxategia</emph> - <emph>Orrialde-aurrebista</emph>."
+msgstr "Aukeratu <emph>Fitxategia</emph> - <emph>Inprimatzeko aurrebista</emph>."
#: print_preview.xhp
-#, fuzzy
msgctxt ""
"print_preview.xhp\n"
"par_id3155055\n"
"35\n"
"help.text"
msgid "Use the zoom icons on the <emph>Print Preview</emph> bar to reduce or enlarge the view of the page."
-msgstr "Erabili <emph>Orrialdearen aurrebista</emph> barrako zoom-ikonoak orrialdearen ikuspegia txikitzeko edo handitzeko."
+msgstr "Erabili <emph>Inprimatzeko aurrebistaren</emph> barrako zoom-ikonoak orrialdearen ikuspegia txikitzeko edo handitzeko."
#: print_preview.xhp
msgctxt ""
@@ -11834,24 +11827,22 @@ msgid "To print your document scaled down, set the print options on the <emph>Pa
msgstr ""
#: print_preview.xhp
-#, fuzzy
msgctxt ""
"print_preview.xhp\n"
"par_id3145093\n"
"36\n"
"help.text"
msgid "Use the arrow keys or the arrow icons on the <emph>Print Preview</emph> bar to scroll through the document."
-msgstr "Erabili <emph>Orrialdearen aurrebista</emph> barrako gezi-teklak edo gezi-ikonoak dokumentuan korritzeko."
+msgstr "Erabili gezi-teklak edo <emph>Inprimatzeko aurrebistaren</emph> barrako gezi-ikonoak dokumentuan korritzeko."
#: print_preview.xhp
-#, fuzzy
msgctxt ""
"print_preview.xhp\n"
"par_id3154265\n"
"37\n"
"help.text"
msgid "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">File - Print Preview</link>."
-msgstr "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Page Preview\">File - Page Preview</link>."
+msgstr "<link href=\"text/swriter/01/01120000.xhp\" name=\"File - Print Preview\">Fitxategia - Inprimatzeko aurrebista</link>."
#: print_small.xhp
msgctxt ""
@@ -11933,14 +11924,13 @@ msgid "Click <emph>Print</emph>."
msgstr "Egin klik <emph>Inprimatu</emph>n."
#: print_small.xhp
-#, fuzzy
msgctxt ""
"print_small.xhp\n"
"par_id3150004\n"
"23\n"
"help.text"
msgid "<link href=\"text/swriter/main0210.xhp\" name=\"File - Print Preview\">File - Print Preview</link>"
-msgstr "<link href=\"text/swriter/main0210.xhp\" name=\"File - Page Preview\">Fitxategia - Orrialdearen aurrebista</link>"
+msgstr "<link href=\"text/swriter/main0210.xhp\" name=\"File - Print Preview\">Fitxategia - Inprimatzeko aurrebista</link>"
#: printer_tray.xhp
msgctxt ""
diff --git a/source/eu/nlpsolver/src/locale.po b/source/eu/nlpsolver/src/locale.po
index 5ac4457ff29..b3a46e28823 100644
--- a/source/eu/nlpsolver/src/locale.po
+++ b/source/eu/nlpsolver/src/locale.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:06+0200\n"
-"PO-Revision-Date: 2013-08-04 08:00+0000\n"
-"Last-Translator: Asier <asiersar@yahoo.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:40+0200\n"
+"PO-Revision-Date: 2016-03-08 02:14+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361132443.0\n"
+"X-POOTLE-MTIME: 1457403285.000000\n"
#: NLPSolverCommon_en_US.properties
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"NLPSolverStatusDialog.Controls.lblIteration\n"
"property.text"
msgid "Iteration:"
-msgstr "~Iterazioak"
+msgstr "Iterazioa:"
#: NLPSolverStatusDialog_en_US.properties
msgctxt ""
diff --git a/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po b/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po
index 7a43d68b794..6ebc23b77c3 100644
--- a/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/eu/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-01-08 13:42+0100\n"
-"PO-Revision-Date: 2016-02-28 20:20+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 02:39+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456690848.000000\n"
+"X-POOTLE-MTIME: 1457404776.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -1067,7 +1067,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Manage..."
-msgstr "~Kudeatu"
+msgstr "Kudeatu..."
#: CalcCommands.xcu
msgctxt ""
@@ -14801,7 +14801,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Gr~id and Helplines"
-msgstr "Sareta eta marra lagungarriak"
+msgstr "Sa~reta eta marra lagungarriak"
#: GenericCommands.xcu
msgctxt ""
@@ -22417,7 +22417,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pr~evious Change"
-msgstr "Aurreko orrialdea"
+msgstr "Aurr~eko orrialdea"
#: WriterCommands.xcu
msgctxt ""
@@ -23542,7 +23542,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Footnotes and Endnotes..."
-msgstr "~Oin-o~harrak eta Amaiera-oharrak..."
+msgstr "~Oin-oharrak eta Amaiera-oharrak..."
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/eu/sc/source/ui/src.po b/source/eu/sc/source/ui/src.po
index 740791ce4f7..94ce6469320 100644
--- a/source/eu/sc/source/ui/src.po
+++ b/source/eu/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: 2015-12-11 12:57+0100\n"
-"PO-Revision-Date: 2016-02-28 20:41+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 02:58+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456692106.000000\n"
+"X-POOTLE-MTIME: 1457405930.000000\n"
#: condformatdlg.src
msgctxt ""
@@ -329,7 +329,7 @@ msgctxt ""
"New Style...\n"
"stringlist.text"
msgid "New Style..."
-msgstr "Estilo ~berria..."
+msgstr "Estilo berria..."
#: condformatdlg.src
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"Formula\n"
"stringlist.text"
msgid "Formula"
-msgstr "~Formulak"
+msgstr "Formula"
#: condformatdlg.src
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"Formula\n"
"stringlist.text"
msgid "Formula"
-msgstr "~Formulak"
+msgstr "Formula"
#: condformatdlg.src
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"Formula\n"
"stringlist.text"
msgid "Formula"
-msgstr "~Formulak"
+msgstr "Formula"
#: condformatdlg.src
msgctxt ""
@@ -905,7 +905,7 @@ msgctxt ""
"Formula\n"
"stringlist.text"
msgid "Formula"
-msgstr "~Formulak"
+msgstr "Formula"
#: filter.src
msgctxt ""
@@ -4908,7 +4908,7 @@ msgctxt ""
"STR_MANAGE_NAMES\n"
"string.text"
msgid "Manage Names..."
-msgstr "~Kudeatu izenak..."
+msgstr "Kudeatu izenak..."
#: globstr.src
msgctxt ""
@@ -9353,7 +9353,7 @@ msgctxt ""
"8\n"
"string.text"
msgid "S"
-msgstr ""
+msgstr "S"
#: scfuncs.src
msgctxt ""
@@ -14204,7 +14204,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "new data_X"
-msgstr "X_datu_berriak"
+msgstr "X_datu berriak"
#: scfuncs.src
msgctxt ""
@@ -21811,7 +21811,7 @@ msgctxt ""
"4\n"
"string.text"
msgid "Search vector"
-msgstr "Bilaketa_bektorea"
+msgstr "Bilaketa bektorea"
#: scfuncs.src
msgctxt ""
diff --git a/source/eu/sc/uiconfig/scalc/ui.po b/source/eu/sc/uiconfig/scalc/ui.po
index 9bee65660fe..dfcb0283d3e 100644
--- a/source/eu/sc/uiconfig/scalc/ui.po
+++ b/source/eu/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2016-02-28 17:24+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 03:05+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456680261.000000\n"
+"X-POOTLE-MTIME: 1457406327.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -578,7 +578,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Rows"
-msgstr "Errenkadak"
+msgstr "E_rrenkadak"
#: chisquaretestdialog.ui
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Rows"
-msgstr "Errenkadak"
+msgstr "E_rrenkadak"
#: colorrowdialog.ui
msgctxt ""
@@ -2558,7 +2558,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Rows"
-msgstr "Errenkadak"
+msgstr "E_rrenkadak"
#: descriptivestatisticsdialog.ui
msgctxt ""
@@ -3521,7 +3521,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Rows"
-msgstr "Errenkadak"
+msgstr "E_rrenkadak"
#: groupdialog.ui
msgctxt ""
@@ -10487,7 +10487,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Rows"
-msgstr "Errenkadak"
+msgstr "E_rrenkadak"
#: ungroupdialog.ui
msgctxt ""
diff --git a/source/eu/sd/source/ui/app.po b/source/eu/sd/source/ui/app.po
index e5a992718a3..95b70283bab 100644
--- a/source/eu/sd/source/ui/app.po
+++ b/source/eu/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2016-02-26 23:01+0000\n"
+"PO-Revision-Date: 2016-03-12 12:21+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456527668.000000\n"
+"X-POOTLE-MTIME: 1457785298.000000\n"
#: menuids3_tmpl.src
msgctxt ""
@@ -2760,7 +2760,7 @@ msgctxt ""
"STR_CLICK_ACTION_NEXTPAGE\n"
"string.text"
msgid "Go to next slide"
-msgstr "Joan hurrengo orrialdera"
+msgstr "Joan hurrengo diapositibara"
#: strings.src
msgctxt ""
diff --git a/source/eu/sd/uiconfig/sdraw/ui.po b/source/eu/sd/uiconfig/sdraw/ui.po
index e5ee0c62d8a..2fe465f81e7 100644
--- a/source/eu/sd/uiconfig/sdraw/ui.po
+++ b/source/eu/sd/uiconfig/sdraw/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-02-25 15:00+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 03:23+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456412413.000000\n"
+"X-POOTLE-MTIME: 1457407385.000000\n"
#: breakdialog.ui
msgctxt ""
@@ -761,7 +761,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Page name"
-msgstr "~Orrialde-izena"
+msgstr "Orrialde-izena"
#: printeroptions.ui
msgctxt ""
diff --git a/source/eu/sd/uiconfig/simpress/ui.po b/source/eu/sd/uiconfig/simpress/ui.po
index 18b346569ca..ff3139f676f 100644
--- a/source/eu/sd/uiconfig/simpress/ui.po
+++ b/source/eu/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-02-26 21:41+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 03:25+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456522864.000000\n"
+"X-POOTLE-MTIME: 1457407508.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Before"
-msgstr "Aurretik"
+msgstr "_Aurretik"
#: insertslides.ui
msgctxt ""
@@ -1535,7 +1535,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "A_fter"
-msgstr "Ondoren"
+msgstr "O_ndoren"
#: insertslides.ui
msgctxt ""
@@ -2255,7 +2255,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Slide name"
-msgstr "~Diapositiba-izena"
+msgstr "Diapositiba-izena"
#: printeroptions.ui
msgctxt ""
@@ -2651,7 +2651,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "URL for _presentation:"
-msgstr "~Aurkezpenerako URLa:"
+msgstr "Aurkezpenerako URLa:"
#: publishingdialog.ui
msgctxt ""
diff --git a/source/eu/sfx2/source/appl.po b/source/eu/sfx2/source/appl.po
index 20f2c9bf8a1..d3c39d42ed9 100644
--- a/source/eu/sfx2/source/appl.po
+++ b/source/eu/sfx2/source/appl.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:32+0100\n"
-"PO-Revision-Date: 2016-02-28 16:21+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 03:25+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456676475.000000\n"
+"X-POOTLE-MTIME: 1457407538.000000\n"
#: app.src
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"STR_QUITAPP\n"
"string.text"
msgid "E~xit %PRODUCTNAME"
-msgstr "Irten %PRODUCTNAME(e)tik"
+msgstr "I~rten %PRODUCTNAME(e)tik"
#: app.src
msgctxt ""
diff --git a/source/eu/sfx2/source/doc.po b/source/eu/sfx2/source/doc.po
index ec33c1870f9..a3a7c7bcd44 100644
--- a/source/eu/sfx2/source/doc.po
+++ b/source/eu/sfx2/source/doc.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-05-11 16:12+0200\n"
-"PO-Revision-Date: 2014-12-05 16:38+0000\n"
-"Last-Translator: Asier <asiersar@yahoo.com>\n"
+"PO-Revision-Date: 2016-03-08 03:26+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1417797499.000000\n"
+"X-POOTLE-MTIME: 1457407598.000000\n"
#: doc.src
msgctxt ""
@@ -493,7 +493,7 @@ msgctxt ""
"STR_QMSG_TEMPLATE_OVERWRITE\n"
"string.text"
msgid "A template named $1 already exist in $2. Do you want to overwrite it?"
-msgstr "%1 izena duen txantiloia badago lehendik ere $2 kokapenean. Gainidatzi nahi duzu?"
+msgstr "$1 izena duen txantiloia badago lehendik ere $2 kokapenean. Gainidatzi nahi duzu?"
#: doc.src
msgctxt ""
diff --git a/source/eu/svtools/source/misc.po b/source/eu/svtools/source/misc.po
index 2c553c4553e..f7bd4b8f7c3 100644
--- a/source/eu/svtools/source/misc.po
+++ b/source/eu/svtools/source/misc.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:32+0100\n"
-"PO-Revision-Date: 2016-02-26 13:48+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 03:36+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456494538.000000\n"
+"X-POOTLE-MTIME: 1457408164.000000\n"
#: imagemgr.src
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"STR_DESCRIPTION_FACTORY_MATH\n"
"string.text"
msgid "Formula"
-msgstr "~Formulak"
+msgstr "Formula"
#: imagemgr.src
msgctxt ""
diff --git a/source/eu/svx/inc.po b/source/eu/svx/inc.po
index 7c5e4cce663..f5296f4df89 100644
--- a/source/eu/svx/inc.po
+++ b/source/eu/svx/inc.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-08-25 12:33+0200\n"
-"PO-Revision-Date: 2016-02-28 16:14+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 03:37+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456676042.000000\n"
+"X-POOTLE-MTIME: 1457408220.000000\n"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -624,7 +624,7 @@ msgctxt ""
"ITEM_OPEN_SMARTTAGMENU\n"
"#define.text"
msgid "Open ~Smart Tag Menu"
-msgstr "Ireki etiketa _dinamikoen menua"
+msgstr "Ireki etiketa ~dinamikoen menua"
msgctxt ""
"globlmn_tmpl.hrc\n"
diff --git a/source/eu/svx/source/items.po b/source/eu/svx/source/items.po
index ece38d6d874..a0270749f27 100644
--- a/source/eu/svx/source/items.po
+++ b/source/eu/svx/source/items.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-06-24 17:06+0200\n"
-"PO-Revision-Date: 2016-02-26 22:28+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 03:44+0000\n"
+"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456525688.000000\n"
+"X-POOTLE-MTIME: 1457408699.000000\n"
#: svxerr.src
msgctxt ""
@@ -873,7 +873,7 @@ msgctxt ""
"RID_SVXITEMS_SEARCHIN_FORMULA\n"
"string.text"
msgid "Formula"
-msgstr "~Formulak"
+msgstr "Formula"
#: svxitems.src
msgctxt ""
diff --git a/source/eu/svx/uiconfig/ui.po b/source/eu/svx/uiconfig/ui.po
index 8fc018141cc..47d7e6bfbc8 100644
--- a/source/eu/svx/uiconfig/ui.po
+++ b/source/eu/svx/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2016-02-28 16:40+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 03:54+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456677650.000000\n"
+"X-POOTLE-MTIME: 1457409294.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -4720,7 +4720,7 @@ msgctxt ""
"tooltip_markup\n"
"string.text"
msgid "Specify 0% for fully opaque through 100% for fully transparent."
-msgstr "Zehaztu ehuneko bat guztiz opakotik (%0) guztiz gardenera arte (%100)."
+msgstr "Zehaztu %0 guztiz opakotik %100 guztiz gardenera arte."
#: sidebararea.ui
msgctxt ""
@@ -4729,7 +4729,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Specify 0% for fully opaque through 100% for fully transparent."
-msgstr "Zehaztu ehuneko bat guztiz opakotik (%0) guztiz gardenera arte (%100)."
+msgstr "Zehaztu %0 guztiz opakotik %100 guztiz gardenera arte."
#: sidebargraphic.ui
msgctxt ""
diff --git a/source/eu/sw/source/ui/app.po b/source/eu/sw/source/ui/app.po
index b37ba0692b4..91cc4a94f52 100644
--- a/source/eu/sw/source/ui/app.po
+++ b/source/eu/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-02-28 16:11+0000\n"
+"PO-Revision-Date: 2016-03-13 09:03+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456675876.000000\n"
+"X-POOTLE-MTIME: 1457859781.000000\n"
#: app.src
msgctxt ""
@@ -973,7 +973,7 @@ msgctxt ""
"STR_COL\n"
"string.text"
msgid "Column"
-msgstr "~Zutabea"
+msgstr "Zutabea"
#: app.src
msgctxt ""
@@ -1574,7 +1574,7 @@ msgctxt ""
"FN_INSERT_CAPTION\n"
"menuitem.text"
msgid "Insert ~Caption..."
-msgstr "Txertatu E_pigrafea..."
+msgstr "Txertatu E~pigrafea..."
#: mn.src
msgctxt ""
@@ -1583,7 +1583,7 @@ msgctxt ""
"FN_TABLE_INSERT_ROW_BEFORE\n"
"menuitem.text"
msgid "Rows Above"
-msgstr "Errenkadak goian"
+msgstr "Errenkadak gainean"
#: mn.src
msgctxt ""
diff --git a/source/eu/sw/source/ui/dbui.po b/source/eu/sw/source/ui/dbui.po
index 0a37f9a580a..4c953b60156 100644
--- a/source/eu/sw/source/ui/dbui.po
+++ b/source/eu/sw/source/ui/dbui.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: 2014-12-06 19:55+0000\n"
-"Last-Translator: Asier <asiersar@yahoo.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 03:58+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1417895714.000000\n"
+"X-POOTLE-MTIME: 1457409496.000000\n"
#: dbui.src
msgctxt ""
@@ -236,7 +236,7 @@ msgctxt ""
"ST_SAVESTART\n"
"string.text"
msgid "Save ~starting document"
-msgstr "Gorde _hasierako dokumentua"
+msgstr "Gorde ~hasierako dokumentua"
#: dbui.src
msgctxt ""
diff --git a/source/eu/sw/source/ui/envelp.po b/source/eu/sw/source/ui/envelp.po
index d3256a78104..1339d0091a3 100644
--- a/source/eu/sw/source/ui/envelp.po
+++ b/source/eu/sw/source/ui/envelp.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2013-08-03 10:00+0000\n"
-"Last-Translator: Asier <asiersar@yahoo.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 03:58+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457409525.000000\n"
#: envelp.src
msgctxt ""
@@ -133,4 +134,4 @@ msgctxt ""
"STR_PHEIGHT\n"
"string.text"
msgid "Page Height"
-msgstr "Orrialde-~altuera"
+msgstr "Orrialde-altuera"
diff --git a/source/eu/sw/uiconfig/swriter/ui.po b/source/eu/sw/uiconfig/swriter/ui.po
index b35e8e76a64..c071d29df1e 100644
--- a/source/eu/sw/uiconfig/swriter/ui.po
+++ b/source/eu/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-02-26 22:09+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 04:18+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456524558.000000\n"
+"X-POOTLE-MTIME: 1457410735.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2651,7 +2651,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "A_ddress list elements:"
-msgstr "Helbide-zerrendaren elementuak:"
+msgstr "Helbi_de-zerrendaren elementuak:"
#: datasourcesunavailabledialog.ui
msgctxt ""
@@ -6066,7 +6066,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Line break"
-msgstr "~Lerro-jauzia"
+msgstr "Lerro-jauzia"
#: insertbreak.ui
msgctxt ""
@@ -6075,7 +6075,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Column break"
-msgstr "~Zutabe-jauzia"
+msgstr "Zutabe-jauzia"
#: insertbreak.ui
msgctxt ""
@@ -6084,7 +6084,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Page break"
-msgstr "~Orrialde-jauzia"
+msgstr "Orrialde-jauzia"
#: insertbreak.ui
msgctxt ""
@@ -6102,7 +6102,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Change page number"
-msgstr "Aldatu ~orrialde-zenbakia"
+msgstr "Aldatu orrialde-zenbakia"
#: insertbreak.ui
msgctxt ""
@@ -6363,7 +6363,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Paragraph _style:"
-msgstr "Paragrafo-estiloa:"
+msgstr "Paragrafo-_estiloa:"
#: insertdbcolumnsdialog.ui
msgctxt ""
@@ -6651,7 +6651,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hea_ding"
-msgstr "Izenburua"
+msgstr "I_zenburua"
#: inserttable.ui
msgctxt ""
@@ -6696,7 +6696,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto_Format"
-msgstr "Autoformatua"
+msgstr "Auto_formatua"
#: inserttable.ui
msgctxt ""
@@ -8361,7 +8361,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Name of the a_ttachment"
-msgstr "Eranskinaren izena"
+msgstr "Eran_skinaren izena"
#: mmoutputpage.ui
msgctxt ""
@@ -8853,7 +8853,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "%1 of %2 e-mails sent"
-msgstr "%2 mezutik %1 bidali d(ir)a"
+msgstr "%1 mezu bidali d(ir)a %2 tik"
#: mmsendmails.ui
msgctxt ""
@@ -9375,7 +9375,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Level:"
-msgstr "_Maila:"
+msgstr "Maila:"
#: optcaptionpage.ui
msgctxt ""
@@ -11282,7 +11282,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Rows"
-msgstr "Errenkadak"
+msgstr "E_rrenkadak"
#: previewzoomdialog.ui
msgctxt ""
@@ -11300,7 +11300,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Page background"
-msgstr "Orrialdearen a~tzeko planoa"
+msgstr "Orrialdearen atzeko planoa"
#: printeroptions.ui
msgctxt ""
@@ -11309,7 +11309,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pictures and other graphic objects"
-msgstr "A~rgazkiak eta bestelako objektu grafikoak"
+msgstr "Argazkiak eta bestelako objektu grafikoak"
#: printeroptions.ui
msgctxt ""
@@ -11327,7 +11327,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text placeholders"
-msgstr "~Testuaren leku-markak"
+msgstr "Testuaren leku-markak"
#: printeroptions.ui
msgctxt ""
@@ -11336,7 +11336,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Form controls"
-msgstr "Inprimakiko ~kontrolak"
+msgstr "Inprimakiko kontrolak"
#: printeroptions.ui
msgctxt ""
@@ -11354,7 +11354,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Print text in black"
-msgstr "Inprimatu testua ~beltzean"
+msgstr "Inprimatu testua beltzean"
#: printeroptions.ui
msgctxt ""
@@ -11372,7 +11372,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Print automatically inserted blank pages"
-msgstr "Inprimatu ~automatikoki txertatutako orrialde zuriak"
+msgstr "Inprimatu automatikoki txertatutako orrialde zuriak"
#: printeroptions.ui
msgctxt ""
@@ -13010,7 +13010,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Key 1"
-msgstr "~1. gakoa"
+msgstr "1. gakoa"
#: sortdialog.ui
msgctxt ""
@@ -13019,7 +13019,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Key 2"
-msgstr "~2. gakoa"
+msgstr "2. gakoa"
#: sortdialog.ui
msgctxt ""
@@ -13028,7 +13028,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Key 3"
-msgstr "~3. gakoa"
+msgstr "3. gakoa"
#: sortdialog.ui
msgctxt ""
@@ -13145,7 +13145,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Copy heading"
-msgstr "~Kopiatu izenburua"
+msgstr "Kopiatu izenburua"
#: splittable.ui
msgctxt ""
@@ -13154,7 +13154,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom heading (apply Style)"
-msgstr "Izenburu ~pertsonala (aplikatu estiloa)"
+msgstr "Izenburu pertsonala (aplikatu estiloa)"
#: splittable.ui
msgctxt ""
@@ -13163,7 +13163,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom heading"
-msgstr "Izenburu per~tsonala"
+msgstr "Izenburu pertsonala"
#: splittable.ui
msgctxt ""
@@ -13172,7 +13172,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "No heading"
-msgstr "~Izenbururik ez"
+msgstr "Izenbururik ez"
#: splittable.ui
msgctxt ""
diff --git a/source/eu/vcl/uiconfig/ui.po b/source/eu/vcl/uiconfig/ui.po
index f6c6203599a..eab4d46f28f 100644
--- a/source/eu/vcl/uiconfig/ui.po
+++ b/source/eu/vcl/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2014-11-29 10:11+0000\n"
+"PO-Revision-Date: 2016-03-08 04:23+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1417255870.000000\n"
+"X-POOTLE-MTIME: 1457411029.000000\n"
#: cupspassworddialog.ui
msgctxt ""
@@ -293,7 +293,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Print in reverse page order"
-msgstr "Inprimatu orrialdeen ~alderantzizko ordenan"
+msgstr "Inprimatu orrialdeen alderantzizko ordenan"
#: printdialog.ui
msgctxt ""
@@ -383,7 +383,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pages per sheet"
-msgstr "Orrialdeak ~orriko"
+msgstr "Orrialdeak orriko"
#: printdialog.ui
msgctxt ""
diff --git a/source/eu/wizards/source/template.po b/source/eu/wizards/source/template.po
index 8b60e90f695..8119f9b9714 100644
--- a/source/eu/wizards/source/template.po
+++ b/source/eu/wizards/source/template.po
@@ -2,18 +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-08-03 10:00+0000\n"
-"Last-Translator: Asier <asiersar@yahoo.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:40+0200\n"
+"PO-Revision-Date: 2016-03-08 04:30+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457411429.000000\n"
#: template.src
msgctxt ""
@@ -93,7 +94,7 @@ msgctxt ""
"STYLENAME + 3\n"
"string.text"
msgid "Black and White"
-msgstr "~Beltza eta zuria"
+msgstr "Beltza eta zuria"
#: template.src
msgctxt ""
diff --git a/source/fa/cui/uiconfig/ui.po b/source/fa/cui/uiconfig/ui.po
index 3f28fc06a2c..4158f4acb9b 100644
--- a/source/fa/cui/uiconfig/ui.po
+++ b/source/fa/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 13:43+0000\n"
+"PO-Revision-Date: 2016-03-08 01:56+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: fa\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452260618.000000\n"
+"X-POOTLE-MTIME: 1457402198.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14065,31 +14065,34 @@ msgid "N_one"
msgstr ""
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
@@ -17367,40 +17370,44 @@ msgid "(None)"
msgstr "(هیچ‌کدام)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"1\n"
"stringlist.text"
msgid "("
-msgstr ""
+msgstr "("
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"2\n"
"stringlist.text"
msgid "["
-msgstr ""
+msgstr "["
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"3\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
#: twolinespage.ui
msgctxt ""
@@ -17422,40 +17429,44 @@ msgid "(None)"
msgstr "(هیچ‌کدام)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
#: twolinespage.ui
msgctxt ""
diff --git a/source/fa/dbaccess/uiconfig/ui.po b/source/fa/dbaccess/uiconfig/ui.po
index 9a400d6e21a..7e92da23857 100644
--- a/source/fa/dbaccess/uiconfig/ui.po
+++ b/source/fa/dbaccess/uiconfig/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-04-22 23:40+0200\n"
-"PO-Revision-Date: 2013-02-17 20:21+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 02:00+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361132485.0\n"
+"X-POOTLE-MTIME: 1457402441.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1928,22 +1928,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1955,13 +1957,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3017,58 +3020,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/fa/extensions/uiconfig/sabpilot/ui.po b/source/fa/extensions/uiconfig/sabpilot/ui.po
index c17eed09cdb..1d96b7c992e 100644
--- a/source/fa/extensions/uiconfig/sabpilot/ui.po
+++ b/source/fa/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-25 23:48+0000\n"
+"PO-Revision-Date: 2016-03-08 02:06+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435276139.000000\n"
+"X-POOTLE-MTIME: 1457402795.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/fa/librelogo/source/pythonpath.po b/source/fa/librelogo/source/pythonpath.po
index effaefe9d37..c4e937f57bc 100644
--- a/source/fa/librelogo/source/pythonpath.po
+++ b/source/fa/librelogo/source/pythonpath.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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2013-02-17 20:21+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 02:18+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361132485.0\n"
+"X-POOTLE-MTIME: 1457403506.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -797,20 +797,22 @@ msgid "pi|π"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
"property.text"
msgid "."
-msgstr ""
+msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/fa/officecfg/registry/data/org/openoffice/Office.po b/source/fa/officecfg/registry/data/org/openoffice/Office.po
index 8e9f1672ab6..ae53b12f401 100644
--- a/source/fa/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/fa/officecfg/registry/data/org/openoffice/Office.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-08-06 22:45+0000\n"
+"PO-Revision-Date: 2016-03-08 02:24+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438901101.000000\n"
+"X-POOTLE-MTIME: 1457403892.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1430,13 +1430,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/fa/reportdesign/uiconfig/dbreport/ui.po b/source/fa/reportdesign/uiconfig/dbreport/ui.po
index 916a2633345..504a303bf2d 100644
--- a/source/fa/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/fa/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-18 21:42+0000\n"
+"PO-Revision-Date: 2016-03-08 02:43+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416346942.000000\n"
+"X-POOTLE-MTIME: 1457405010.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/fa/sc/uiconfig/scalc/ui.po b/source/fa/sc/uiconfig/scalc/ui.po
index 3f8bdf47c03..93d0c4fc892 100644
--- a/source/fa/sc/uiconfig/scalc/ui.po
+++ b/source/fa/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-08-25 22:09+0000\n"
+"PO-Revision-Date: 2016-03-08 03:01+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: fa\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440540599.000000\n"
+"X-POOTLE-MTIME: 1457406094.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6390,22 +6390,24 @@ msgid "Distribution:"
msgstr ""
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter1-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter2-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
msgctxt ""
diff --git a/source/fa/sd/uiconfig/simpress/ui.po b/source/fa/sd/uiconfig/simpress/ui.po
index 2a7bff16c3b..dd6a994c9d9 100644
--- a/source/fa/sd/uiconfig/simpress/ui.po
+++ b/source/fa/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 00:06+0000\n"
+"PO-Revision-Date: 2016-03-08 03:16+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: fa\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435277186.000000\n"
+"X-POOTLE-MTIME: 1457406964.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -998,22 +998,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/fa/svx/source/form.po b/source/fa/svx/source/form.po
index e8b415049b8..f2c82b22316 100644
--- a/source/fa/svx/source/form.po
+++ b/source/fa/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: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: 2015-05-12 11:41+0000\n"
+"PO-Revision-Date: 2016-03-08 03:30+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431430896.000000\n"
+"X-POOTLE-MTIME: 1457407837.000000\n"
#: datanavi.src
msgctxt ""
@@ -1399,12 +1399,13 @@ msgid "Valid bound controls which can be used in the table view do not exist in
msgstr ""
#: fmstring.src
+#, fuzzy
msgctxt ""
"fmstring.src\n"
"RID_STR_AUTOFIELD\n"
"string.text"
msgid "<AutoField>"
-msgstr ""
+msgstr "<AutoField>"
#: fmstring.src
msgctxt ""
diff --git a/source/fa/sw/source/ui/dbui.po b/source/fa/sw/source/ui/dbui.po
index fc51d2bbc11..7b15710ab51 100644
--- a/source/fa/sw/source/ui/dbui.po
+++ b/source/fa/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-12 11:43+0000\n"
+"PO-Revision-Date: 2016-03-08 03:42+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431431017.000000\n"
+"X-POOTLE-MTIME: 1457408561.000000\n"
#: dbui.src
msgctxt ""
@@ -488,31 +488,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/fa/sw/source/ui/index.po b/source/fa/sw/source/ui/index.po
index 9fd66955b82..52994aebf12 100644
--- a/source/fa/sw/source/ui/index.po
+++ b/source/fa/sw/source/ui/index.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2011-07-26 16:29+0200\n"
-"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 03:44+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457408649.000000\n"
#: cnttab.src
#, fuzzy
@@ -57,20 +58,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -105,12 +108,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/fa/sw/uiconfig/swriter/ui.po b/source/fa/sw/uiconfig/swriter/ui.po
index af8d4124380..e06c7213be2 100644
--- a/source/fa/sw/uiconfig/swriter/ui.po
+++ b/source/fa/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-25 22:17+0000\n"
+"PO-Revision-Date: 2016-03-08 03:55+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: fa\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440541028.000000\n"
+"X-POOTLE-MTIME: 1457409329.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2312,13 +2312,14 @@ msgid "Convert Table to Text"
msgstr "تبدیل جدول به متن"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2504,13 +2505,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2522,13 +2524,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4437,13 +4440,14 @@ msgid "None"
msgstr ""
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5425,22 +5429,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6350,13 +6356,14 @@ msgid "Position:"
msgstr "موقعیت"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"separator_edit\n"
"text\n"
"string.text"
msgid ": "
-msgstr ""
+msgstr ": "
#: insertcaption.ui
msgctxt ""
@@ -6368,13 +6375,14 @@ msgid "Numbering separator:"
msgstr ""
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
msgctxt ""
@@ -8711,13 +8719,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8729,13 +8738,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9583,13 +9593,14 @@ msgid "Position:"
msgstr "موقعیت"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
#, fuzzy
@@ -15719,40 +15730,44 @@ msgid "[none]"
msgstr "[هیچ‌کدام]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/fa/vcl/source/src.po b/source/fa/vcl/source/src.po
index e9dca4078b0..afc7d80c8fa 100644
--- a/source/fa/vcl/source/src.po
+++ b/source/fa/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 16:03+0000\n"
+"PO-Revision-Date: 2016-03-08 03:58+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449849784.000000\n"
+"X-POOTLE-MTIME: 1457409520.000000\n"
#: app.src
msgctxt ""
@@ -1184,12 +1184,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1466,13 +1467,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/fa/wizards/source/formwizard.po b/source/fa/wizards/source/formwizard.po
index 906c5ca06de..9feb710d40c 100644
--- a/source/fa/wizards/source/formwizard.po
+++ b/source/fa/wizards/source/formwizard.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: 2015-05-12 11:45+0000\n"
+"PO-Revision-Date: 2016-03-08 04:03+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431431124.000000\n"
+"X-POOTLE-MTIME: 1457409783.000000\n"
#: dbwizres.src
msgctxt ""
@@ -1620,12 +1620,13 @@ msgid "The aggregate function <FUNCTION> has been assigned twice to the fieldnam
msgstr "تابع انبوهه <FUNCTION> دو بار برای نام فیلد '<NUMERICFIELD>' مقرر شده است."
#: dbwizres.src
+#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_DB_QUERY_WIZARD_START + 91\n"
"string.text"
msgid ", "
-msgstr ""
+msgstr ", "
#: dbwizres.src
#, fuzzy
diff --git a/source/ga/dbaccess/uiconfig/ui.po b/source/ga/dbaccess/uiconfig/ui.po
index 81111073993..1eed3e39d57 100644
--- a/source/ga/dbaccess/uiconfig/ui.po
+++ b/source/ga/dbaccess/uiconfig/ui.po
@@ -4,7 +4,7 @@ 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-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-05-12 12:59+0000\n"
+"PO-Revision-Date: 2016-03-08 04:00+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431435568.000000\n"
+"X-POOTLE-MTIME: 1457409634.000000\n"
#: admindialog.ui
#, fuzzy
@@ -3129,13 +3129,14 @@ msgid ","
msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
msgctxt ""
diff --git a/source/gd/filter/source/config/fragments/filters.po b/source/gd/filter/source/config/fragments/filters.po
index 58f72dd8202..b1ef850b9fc 100644
--- a/source/gd/filter/source/config/fragments/filters.po
+++ b/source/gd/filter/source/config/fragments/filters.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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-13 23:26+0000\n"
-"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
+"PO-Revision-Date: 2016-03-08 05:17+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Akerbeltz\n"
"Language: gd\n"
"MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1450049211.000000\n"
+"X-POOTLE-MTIME: 1457414241.000000\n"
#: AbiWord.xcu
msgctxt ""
@@ -1899,7 +1899,6 @@ msgid "OpenOffice.org 1.0 HTML Template"
msgstr "Teamplaid OpenOffice.org 1.0 HTML"
#: writer_web_jpg_Export.xcu
-#, fuzzy
msgctxt ""
"writer_web_jpg_Export.xcu\n"
"writer_web_jpg_Export\n"
@@ -1918,7 +1917,6 @@ msgid "PDF - Portable Document Format"
msgstr "PDF - Portable Document Format"
#: writer_web_png_Export.xcu
-#, fuzzy
msgctxt ""
"writer_web_png_Export.xcu\n"
"writer_web_png_Export\n"
diff --git a/source/gd/sfx2/uiconfig/ui.po b/source/gd/sfx2/uiconfig/ui.po
index f8885ed0993..6b631e9fa12 100644
--- a/source/gd/sfx2/uiconfig/ui.po
+++ b/source/gd/sfx2/uiconfig/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 19:00+0000\n"
-"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
+"PO-Revision-Date: 2016-03-08 08:44+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: gd\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"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-POOTLE-MTIME: 1452279635.000000\n"
+"X-POOTLE-MTIME: 1457426654.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -1538,7 +1538,6 @@ msgid "_Open File"
msgstr "F_osgail faidhle"
#: startcenter.ui
-#, fuzzy
msgctxt ""
"startcenter.ui\n"
"open_remote\n"
diff --git a/source/gd/vcl/source/src.po b/source/gd/vcl/source/src.po
index 2bb8b2c6fda..31379447fd9 100644
--- a/source/gd/vcl/source/src.po
+++ b/source/gd/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 17:10+0000\n"
+"PO-Revision-Date: 2016-03-08 09:39+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Akerbeltz\n"
"Language: gd\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1449853848.000000\n"
+"X-POOTLE-MTIME: 1457429971.000000\n"
#: app.src
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"SV_APP_CPUTHREADS\n"
"string.text"
msgid "CPU Threads: "
-msgstr ""
+msgstr "Snàithleanan an CPU: "
#: app.src
msgctxt ""
@@ -31,7 +31,7 @@ msgctxt ""
"SV_APP_OSVERSION\n"
"string.text"
msgid "OS Version: "
-msgstr ""
+msgstr "Tionndadh an OS: "
#: app.src
msgctxt ""
@@ -39,7 +39,7 @@ msgctxt ""
"SV_APP_UIRENDER\n"
"string.text"
msgid "UI Render: "
-msgstr ""
+msgstr "Reandaradh an UI: "
#: app.src
msgctxt ""
@@ -47,7 +47,7 @@ msgctxt ""
"SV_APP_GL\n"
"string.text"
msgid "GL"
-msgstr ""
+msgstr "GL"
#: app.src
msgctxt ""
@@ -55,7 +55,7 @@ msgctxt ""
"SV_APP_DEFAULT\n"
"string.text"
msgid "default"
-msgstr ""
+msgstr "A’ bhun-roghainn"
#. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string
#: btntext.src
diff --git a/source/gl/helpcontent2/source/text/scalc/01.po b/source/gl/helpcontent2/source/text/scalc/01.po
index f3bfedf147a..ca8c11371c9 100644
--- a/source/gl/helpcontent2/source/text/scalc/01.po
+++ b/source/gl/helpcontent2/source/text/scalc/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 18:24+0000\n"
+"PO-Revision-Date: 2016-03-03 21:03+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431368683.000000\n"
+"X-POOTLE-MTIME: 1457038997.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -60494,13 +60494,14 @@ msgid "equal"
msgstr "igual"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -60512,13 +60513,14 @@ msgid "less than"
msgstr "menor que"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/shared/02.po b/source/gl/helpcontent2/source/text/shared/02.po
index 981c9571449..b461b86ff8f 100644
--- a/source/gl/helpcontent2/source/text/shared/02.po
+++ b/source/gl/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 18:26+0000\n"
+"PO-Revision-Date: 2016-03-03 22:04+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431368800.000000\n"
+"X-POOTLE-MTIME: 1457042674.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -13864,13 +13864,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Move os campos listados da base de datos á caixa de lista <emph>Columna(s) da táboa</emph>.</ahelp> Os campos listados na caixa de lista <emph>Columna(s) da táboa</emph> insírense no documento."
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -14177,13 +14178,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr "Lista as columnas da táboa de base de datos admisíbeis na caixa de lista de selección para a súa inserción no documento. <ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tabletxtcols\" visibility=\"visible\">Seleccione as columnas que desexa inserir.</ahelp>"
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15681,13 +15683,14 @@ msgid "Example"
msgstr "Exemplo"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15807,13 +15810,14 @@ msgid "Search with regular expressions"
msgstr "Busca con expresións regulares"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/shared/autopi.po b/source/gl/helpcontent2/source/text/shared/autopi.po
index bdef43a416e..2b41f3d841e 100644
--- a/source/gl/helpcontent2/source/text/shared/autopi.po
+++ b/source/gl/helpcontent2/source/text/shared/autopi.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: 2015-05-11 18:27+0000\n"
+"PO-Revision-Date: 2016-03-03 22:11+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431368839.000000\n"
+"X-POOTLE-MTIME: 1457043099.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3422,13 +3422,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3459,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3496,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/shared/explorer/database.po b/source/gl/helpcontent2/source/text/shared/explorer/database.po
index f2e6edf4c2d..f57efeb6937 100644
--- a/source/gl/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/gl/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-11 18:27+0000\n"
+"PO-Revision-Date: 2016-03-03 22:22+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431368862.000000\n"
+"X-POOTLE-MTIME: 1457043759.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1760,13 +1760,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr "... o contido do campo non se corresponde coa expresión especificada."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1787,13 +1788,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr "... o contido do campo é maior que a expresión especificada."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2793,13 +2795,14 @@ msgid "No"
msgstr "Non"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6230,13 +6233,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr "<ahelp visibility=\"visible\" hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lista os índices dispoñíbeis que pode atribuír a unha táboa.</ahelp> Para atribuír un índice á táboa seleccionada, prema na icona de frecha cara á esquerda. A frecha dupla cara á esquerda atribúe todos os índices dispoñíbeis."
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6266,13 +6270,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr "<ahelp visibility=\"visible\" hid=\"dbaccess/ui/dbaseindexdialog/addall\">Move todos os índices dispoñíbeis á lista <emph>Índices de táboa</emph>.</ahelp>"
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12419,12 +12424,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr "<ahelp hid=\".\">Engade unha nova fila de controis.</ahelp>"
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14443,12 +14449,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr "<ahelp hid=\".\">Seleccione un campo para editar a información.</ahelp>"
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/gu/dbaccess/uiconfig/ui.po b/source/gu/dbaccess/uiconfig/ui.po
index ca7e0b565a3..dfdd7d57407 100644
--- a/source/gu/dbaccess/uiconfig/ui.po
+++ b/source/gu/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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-05-12 14:32+0000\n"
+"PO-Revision-Date: 2016-03-08 06:45+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431441176.000000\n"
+"X-POOTLE-MTIME: 1457419524.000000\n"
#: admindialog.ui
#, fuzzy
@@ -3054,58 +3054,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/gu/extensions/uiconfig/sabpilot/ui.po b/source/gu/extensions/uiconfig/sabpilot/ui.po
index 06cc2652f76..c5b0216f1fb 100644
--- a/source/gu/extensions/uiconfig/sabpilot/ui.po
+++ b/source/gu/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 00:17+0000\n"
+"PO-Revision-Date: 2016-03-08 07:12+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435277846.000000\n"
+"X-POOTLE-MTIME: 1457421161.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -290,13 +290,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -308,13 +309,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -389,22 +391,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -668,13 +672,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/scalc/01.po b/source/gu/helpcontent2/source/text/scalc/01.po
index 02715186168..62c51848afc 100644
--- a/source/gu/helpcontent2/source/text/scalc/01.po
+++ b/source/gu/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 18:31+0000\n"
+"PO-Revision-Date: 2016-03-03 21:08+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431369116.000000\n"
+"X-POOTLE-MTIME: 1457039322.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -60051,13 +60051,14 @@ msgid "equal"
msgstr "equal"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -60069,13 +60070,14 @@ msgid "less than"
msgstr "less than"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/shared/00.po b/source/gu/helpcontent2/source/text/shared/00.po
index 5fdf44dc6f5..0ecb8689542 100644
--- a/source/gu/helpcontent2/source/text/shared/00.po
+++ b/source/gu/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-09-01 18:02+0000\n"
-"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
+"PO-Revision-Date: 2016-03-03 21:33+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1441130544.000000\n"
+"X-POOTLE-MTIME: 1457040806.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3973,12 +3973,13 @@ msgid "ODF 1.2 (Extended)"
msgstr ""
#: 00000021.xhp
+#, fuzzy
msgctxt ""
"00000021.xhp\n"
"par_id100120091238112\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 00000021.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/shared/01.po b/source/gu/helpcontent2/source/text/shared/01.po
index e3fa1c487f0..5caf24e112a 100644
--- a/source/gu/helpcontent2/source/text/shared/01.po
+++ b/source/gu/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-12 13:07+0000\n"
+"PO-Revision-Date: 2016-03-03 21:56+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452604039.000000\n"
+"X-POOTLE-MTIME: 1457042205.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7490,13 +7490,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr "Represents any single character unless otherwise specified."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7508,13 +7509,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr "Represents any single character except for a line break or paragraph break. For example, the search term \"sh.rt\" returns both \"shirt\" and \"short\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7526,13 +7528,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr "Only finds the search term if the term is at the beginning of a paragraph. Special objects such as empty fields or character-anchored frames, at the beginning of a paragraph are ignored. Example: \"^Peter\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7552,13 +7555,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7597,13 +7601,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr "The longest possible string that matches this search pattern in a paragraph is always found. If the paragraph contains the string \"AX 4 AX4\", the entire passage is highlighted."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7615,13 +7620,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr "Finds zero or one of the characters in front of the \"?\". For example, \"Texts?\" finds \"Text\" and \"Texts\" and \"x(ab|c)?y\" finds \"xy\", \"xaby\", or \"xcy\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -15811,13 +15817,14 @@ msgid "Explanation"
msgstr "Explanation"
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/shared/02.po b/source/gu/helpcontent2/source/text/shared/02.po
index ef0d762f32a..d28eb039b16 100644
--- a/source/gu/helpcontent2/source/text/shared/02.po
+++ b/source/gu/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 18:34+0000\n"
+"PO-Revision-Date: 2016-03-03 22:11+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431369244.000000\n"
+"X-POOTLE-MTIME: 1457043069.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -13865,13 +13865,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves all listed database fields into the <emph>Table column(s)</emph> list box.</ahelp> All fields listed in the <emph>Table column(s)</emph> list box are inserted into the document."
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13883,13 +13884,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves the selected database field into the <emph>Table column(s)</emph> list box. </ahelp> You can also double click an entry to move it to the <emph>Table column(s)</emph> list box. All fields listed in the <emph>Table column(s)</emph> list box are inserted into the document."
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -14178,13 +14180,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr "Lists all columns of the database table, which can be accepted in the selection list box to insert them into the document. <ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tabletxtcols\" visibility=\"visible\">Select the database columns that you want to insert it in the document.</ahelp>"
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15683,13 +15686,14 @@ msgid "Example"
msgstr "ઉદાહરણ"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15719,13 +15723,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr "\"M?ller\" returns, for example, Miller and Moller"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15809,31 +15814,34 @@ msgid "Search with regular expressions"
msgstr "Search with regular expressions"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/shared/autopi.po b/source/gu/helpcontent2/source/text/shared/autopi.po
index 940b16bf39f..842ae525482 100644
--- a/source/gu/helpcontent2/source/text/shared/autopi.po
+++ b/source/gu/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-05-11 18:34+0000\n"
+"PO-Revision-Date: 2016-03-03 22:19+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431369275.000000\n"
+"X-POOTLE-MTIME: 1457043582.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3422,13 +3422,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data base fields in the selected table or query.</ahelp> Click to select a field or hold down the Shift or the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while you click to select more than one field."
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3459,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3496,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4524,13 +4527,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that are included in the new report.</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4560,13 +4564,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr ""
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4720,13 +4725,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which the report will be grouped. To remove one level of grouping, select the field name, then click the <emph><</emph> button. You may select up to four levels of grouping.</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4738,13 +4744,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr ""
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/shared/explorer/database.po b/source/gu/helpcontent2/source/text/shared/explorer/database.po
index dd7dcd3d00e..688d7bde0d9 100644
--- a/source/gu/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/gu/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-11 18:35+0000\n"
+"PO-Revision-Date: 2016-03-03 22:28+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431369300.000000\n"
+"X-POOTLE-MTIME: 1457044115.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1763,13 +1763,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr "... the content of the field does not correspond to the specified expression."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1790,13 +1791,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr "... the content of the field is greater than the specified expression."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2796,13 +2798,14 @@ msgid "No"
msgstr "ના"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6234,13 +6237,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available indexes that you can assign to a table.</ahelp> To assign an index to a selected table, click the left arrow icon. The left double arrow assigns all available indexes."
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6270,13 +6274,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free indexes to the <emph>Table Indexes</emph> list.</ahelp>"
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12424,12 +12429,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14448,12 +14454,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr "<ahelp hid=\".\">Select a field in order to edit the field information.</ahelp>"
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/swriter/01.po b/source/gu/helpcontent2/source/text/swriter/01.po
index 38b87a7830a..83b5c419c3f 100644
--- a/source/gu/helpcontent2/source/text/swriter/01.po
+++ b/source/gu/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 18:37+0000\n"
+"PO-Revision-Date: 2016-03-03 23:35+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431369425.000000\n"
+"X-POOTLE-MTIME: 1457048142.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -11021,13 +11021,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragraph style that you want to apply to the selected index level, and then click the Assign (<emph><) </emph>button.</ahelp>"
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -27763,12 +27764,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">Select an address field and drag the field to the other list.</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27779,12 +27781,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<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>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27971,12 +27974,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">Select an address field and drag the field to the other list.</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27987,12 +27991,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elem
msgstr "<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>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28427,12 +28432,13 @@ msgid "<ahelp hid=\".\">Select an address field and drag the field to the other
msgstr "<ahelp hid=\".\">Select an address field and drag the field to the other list.</ahelp>"
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28443,12 +28449,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">Adds the selected field from the Address Elements list to the other list.</ahelp> You can add the same field more than once."
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/swriter/02.po b/source/gu/helpcontent2/source/text/swriter/02.po
index 8b7857600c6..c2864c6bd80 100644
--- a/source/gu/helpcontent2/source/text/swriter/02.po
+++ b/source/gu/helpcontent2/source/text/swriter/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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 15:18+0000\n"
+"PO-Revision-Date: 2016-03-03 23:37+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429802317.000000\n"
+"X-POOTLE-MTIME: 1457048248.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1673,13 +1673,14 @@ msgid "Subtraction"
msgstr "Subtraction"
#: 14020000.xhp
+#, fuzzy
msgctxt ""
"14020000.xhp\n"
"par_id3150087\n"
"12\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 14020000.xhp
msgctxt ""
diff --git a/source/gu/reportdesign/uiconfig/dbreport/ui.po b/source/gu/reportdesign/uiconfig/dbreport/ui.po
index 70f48c08866..1c90beedfe8 100644
--- a/source/gu/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/gu/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-18 23:31+0000\n"
+"PO-Revision-Date: 2016-03-08 08:24+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416353480.000000\n"
+"X-POOTLE-MTIME: 1457425471.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/gu/sw/uiconfig/swriter/ui.po b/source/gu/sw/uiconfig/swriter/ui.po
index 97065156d65..49f6351e596 100644
--- a/source/gu/sw/uiconfig/swriter/ui.po
+++ b/source/gu/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 22:57+0000\n"
+"PO-Revision-Date: 2016-03-08 10:06+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Gujarati <>\n"
"Language: gu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438901837.000000\n"
+"X-POOTLE-MTIME: 1457431619.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2488,13 +2488,14 @@ msgid "|<"
msgstr "|<"
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2506,13 +2507,14 @@ msgid ">|"
msgstr ">|"
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
diff --git a/source/he/cui/uiconfig/ui.po b/source/he/cui/uiconfig/ui.po
index b6f25b9b505..5db6c9c886e 100644
--- a/source/he/cui/uiconfig/ui.po
+++ b/source/he/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 13:53+0000\n"
+"PO-Revision-Date: 2016-03-08 07:47+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452261190.000000\n"
+"X-POOTLE-MTIME: 1457423220.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14155,31 +14155,34 @@ msgid "N_one"
msgstr "ללא"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
diff --git a/source/he/dbaccess/uiconfig/ui.po b/source/he/dbaccess/uiconfig/ui.po
index ef22d0f6ed1..9d4d1904b3c 100644
--- a/source/he/dbaccess/uiconfig/ui.po
+++ b/source/he/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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-12-11 11:10+0000\n"
-"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 07:51+0000\n"
+"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449832250.000000\n"
+"X-POOTLE-MTIME: 1457423498.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1935,22 +1935,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1962,13 +1964,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3026,58 +3029,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/he/extensions/uiconfig/sabpilot/ui.po b/source/he/extensions/uiconfig/sabpilot/ui.po
index baf71a68cd4..b1e1863cfac 100644
--- a/source/he/extensions/uiconfig/sabpilot/ui.po
+++ b/source/he/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 00:31+0000\n"
+"PO-Revision-Date: 2016-03-08 08:00+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435278710.000000\n"
+"X-POOTLE-MTIME: 1457424054.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/he/helpcontent2/source/text/scalc/01.po b/source/he/helpcontent2/source/text/scalc/01.po
index 66c9f9172d0..7e86e4ccc82 100644
--- a/source/he/helpcontent2/source/text/scalc/01.po
+++ b/source/he/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 18:39+0000\n"
+"PO-Revision-Date: 2016-03-03 21:37+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431369543.000000\n"
+"X-POOTLE-MTIME: 1457041029.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -60028,13 +60028,14 @@ msgid "equal"
msgstr "equal"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -60046,13 +60047,14 @@ msgid "less than"
msgstr "less than"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
diff --git a/source/he/helpcontent2/source/text/shared/00.po b/source/he/helpcontent2/source/text/shared/00.po
index 80e4cc1862a..3167c58b1c4 100644
--- a/source/he/helpcontent2/source/text/shared/00.po
+++ b/source/he/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 18:39+0000\n"
+"PO-Revision-Date: 2016-03-03 22:01+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431369571.000000\n"
+"X-POOTLE-MTIME: 1457042483.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3970,12 +3970,13 @@ msgid "ODF 1.2 (Extended)"
msgstr ""
#: 00000021.xhp
+#, fuzzy
msgctxt ""
"00000021.xhp\n"
"par_id100120091238112\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 00000021.xhp
msgctxt ""
diff --git a/source/he/helpcontent2/source/text/shared/01.po b/source/he/helpcontent2/source/text/shared/01.po
index 9c27ffd9b59..4e01bad6772 100644
--- a/source/he/helpcontent2/source/text/shared/01.po
+++ b/source/he/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-12 13:07+0000\n"
+"PO-Revision-Date: 2016-03-03 22:24+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452604034.000000\n"
+"X-POOTLE-MTIME: 1457043894.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7518,13 +7518,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr "Represents any single character unless otherwise specified."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7536,13 +7537,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr "Represents any single character except for a line break or paragraph break. For example, the search term \"sh.rt\" returns both \"shirt\" and \"short\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7554,13 +7556,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr "Only finds the search term if the term is at the beginning of a paragraph. Special objects such as empty fields or character-anchored frames, at the beginning of a paragraph are ignored. Example: \"^Peter\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7580,13 +7583,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7625,13 +7629,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr "The longest possible string that matches this search pattern in a paragraph is always found. If the paragraph contains the string \"AX 4 AX4\", the entire passage is highlighted."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7643,13 +7648,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr "Finds zero or one of the characters in front of the \"?\". For example, \"Texts?\" finds \"Text\" and \"Texts\" and \"x(ab|c)?y\" finds \"xy\", \"xaby\", or \"xcy\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -15836,13 +15842,14 @@ msgid "Explanation"
msgstr "Explanation"
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
diff --git a/source/he/helpcontent2/source/text/shared/02.po b/source/he/helpcontent2/source/text/shared/02.po
index 19f18f27f24..828d0c0b332 100644
--- a/source/he/helpcontent2/source/text/shared/02.po
+++ b/source/he/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 18:39+0000\n"
+"PO-Revision-Date: 2016-03-03 22:34+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431369599.000000\n"
+"X-POOTLE-MTIME: 1457044487.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -13857,13 +13857,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr ""
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13875,13 +13876,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr ""
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -14170,13 +14172,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr ""
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15674,13 +15677,14 @@ msgid "Example"
msgstr "Example"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15710,13 +15714,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr "\"M?ller\" returns, for example, Miller and Moller"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15800,31 +15805,34 @@ msgid "Search with regular expressions"
msgstr "Search with regular expressions"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/he/helpcontent2/source/text/shared/autopi.po b/source/he/helpcontent2/source/text/shared/autopi.po
index 8b04f45c191..351d226cbfb 100644
--- a/source/he/helpcontent2/source/text/shared/autopi.po
+++ b/source/he/helpcontent2/source/text/shared/autopi.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: 2013-01-19 18:03+0000\n"
-"Last-Translator: Yaron <sh.yaron@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:39+0200\n"
+"PO-Revision-Date: 2016-03-03 22:42+0000\n"
+"Last-Translator: system user <>\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1358618589.0\n"
+"X-POOTLE-MTIME: 1457044939.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3422,13 +3422,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3459,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3496,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4524,13 +4527,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr ""
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4560,13 +4564,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr ""
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4720,13 +4725,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr ""
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4738,13 +4744,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr ""
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
diff --git a/source/he/helpcontent2/source/text/shared/explorer/database.po b/source/he/helpcontent2/source/text/shared/explorer/database.po
index 85cb1120716..302a744dec9 100644
--- a/source/he/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/he/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-11 18:40+0000\n"
+"PO-Revision-Date: 2016-03-03 22:50+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431369612.000000\n"
+"X-POOTLE-MTIME: 1457045417.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1760,13 +1760,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr "... the content of the field does not correspond to the specified expression."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1787,13 +1788,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr "... the content of the field is greater than the specified expression."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2793,13 +2795,14 @@ msgid "No"
msgstr "No"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6230,13 +6233,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6266,13 +6270,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12419,12 +12424,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr ""
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14443,12 +14449,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr ""
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/he/helpcontent2/source/text/swriter/01.po b/source/he/helpcontent2/source/text/swriter/01.po
index 9a1261d2017..027aeb288b0 100644
--- a/source/he/helpcontent2/source/text/swriter/01.po
+++ b/source/he/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 18:41+0000\n"
+"PO-Revision-Date: 2016-03-03 23:51+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431369678.000000\n"
+"X-POOTLE-MTIME: 1457049086.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -10981,13 +10981,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr ""
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -27690,12 +27691,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr ""
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27706,12 +27708,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr ""
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27898,12 +27901,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr ""
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27914,12 +27918,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elem
msgstr ""
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28354,12 +28359,13 @@ msgid "<ahelp hid=\".\">Select an address field and drag the field to the other
msgstr ""
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28370,12 +28376,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr ""
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/he/helpcontent2/source/text/swriter/02.po b/source/he/helpcontent2/source/text/swriter/02.po
index a76770ae657..253e8dab55d 100644
--- a/source/he/helpcontent2/source/text/swriter/02.po
+++ b/source/he/helpcontent2/source/text/swriter/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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 15:24+0000\n"
+"PO-Revision-Date: 2016-03-03 23:52+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429802654.000000\n"
+"X-POOTLE-MTIME: 1457049179.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1668,13 +1668,14 @@ msgid "Subtraction"
msgstr "Subtraction"
#: 14020000.xhp
+#, fuzzy
msgctxt ""
"14020000.xhp\n"
"par_id3150087\n"
"12\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 14020000.xhp
msgctxt ""
diff --git a/source/he/officecfg/registry/data/org/openoffice/Office.po b/source/he/officecfg/registry/data/org/openoffice/Office.po
index 03d81226c67..9151b66afef 100644
--- a/source/he/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/he/officecfg/registry/data/org/openoffice/Office.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-12-10 23:18+0000\n"
-"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 08:29+0000\n"
+"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449789525.000000\n"
+"X-POOTLE-MTIME: 1457425764.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1431,13 +1431,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/he/sw/source/ui/index.po b/source/he/sw/source/ui/index.po
index 15b6756eb29..1f83812a3d8 100644
--- a/source/he/sw/source/ui/index.po
+++ b/source/he/sw/source/ui/index.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:40+0200\n"
-"PO-Revision-Date: 2015-12-10 22:23+0000\n"
-"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 10:13+0000\n"
+"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449786191.000000\n"
+"X-POOTLE-MTIME: 1457431984.000000\n"
#: cnttab.src
msgctxt ""
@@ -105,12 +105,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/he/sw/uiconfig/swriter/ui.po b/source/he/sw/uiconfig/swriter/ui.po
index 2fb34e15ba5..1825b8d8188 100644
--- a/source/he/sw/uiconfig/swriter/ui.po
+++ b/source/he/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-12-10 18:43+0000\n"
-"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 10:26+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: he\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449772983.000000\n"
+"X-POOTLE-MTIME: 1457432797.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2476,13 +2476,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2494,13 +2495,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4392,13 +4394,14 @@ msgid "None"
msgstr "ללא"
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5351,22 +5354,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -8623,13 +8628,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8641,13 +8647,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -15559,40 +15566,44 @@ msgid "[none]"
msgstr "[אין]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/hi/cui/uiconfig/ui.po b/source/hi/cui/uiconfig/ui.po
index c1f369ee8b8..2d1869209d6 100644
--- a/source/hi/cui/uiconfig/ui.po
+++ b/source/hi/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 13:56+0000\n"
+"PO-Revision-Date: 2016-03-08 08:14+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452261398.000000\n"
+"X-POOTLE-MTIME: 1457424879.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14140,31 +14140,34 @@ msgid "N_one"
msgstr "कोई नहीं"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
diff --git a/source/hi/dbaccess/uiconfig/ui.po b/source/hi/dbaccess/uiconfig/ui.po
index 8babfa488c9..9d461d8e0f7 100644
--- a/source/hi/dbaccess/uiconfig/ui.po
+++ b/source/hi/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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-05-12 15:31+0000\n"
+"PO-Revision-Date: 2016-03-08 08:19+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431444671.000000\n"
+"X-POOTLE-MTIME: 1457425172.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1931,22 +1931,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1958,13 +1960,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3022,58 +3025,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/hi/extensions/uiconfig/sabpilot/ui.po b/source/hi/extensions/uiconfig/sabpilot/ui.po
index a6f69d6215e..14f1e98b055 100644
--- a/source/hi/extensions/uiconfig/sabpilot/ui.po
+++ b/source/hi/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 00:35+0000\n"
+"PO-Revision-Date: 2016-03-08 08:27+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435278930.000000\n"
+"X-POOTLE-MTIME: 1457425644.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/scalc/01.po b/source/hi/helpcontent2/source/text/scalc/01.po
index d6ab9a07741..bf2a921b8c7 100644
--- a/source/hi/helpcontent2/source/text/scalc/01.po
+++ b/source/hi/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 18:42+0000\n"
+"PO-Revision-Date: 2016-03-03 21:21+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431369761.000000\n"
+"X-POOTLE-MTIME: 1457040072.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -28748,13 +28748,14 @@ msgid "30"
msgstr ""
#: 04060112.xhp
+#, fuzzy
msgctxt ""
"04060112.xhp\n"
"par_id3159337\n"
"120\n"
"help.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: 04060112.xhp
msgctxt ""
@@ -29175,13 +29176,14 @@ msgid "24+Len"
msgstr "24+लंबाई"
#: 04060112.xhp
+#, fuzzy
msgctxt ""
"04060112.xhp\n"
"par_id3154825\n"
"167\n"
"help.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: 04060112.xhp
msgctxt ""
@@ -29638,13 +29640,14 @@ msgid "32 or 26+Len"
msgstr ""
#: 04060112.xhp
+#, fuzzy
msgctxt ""
"04060112.xhp\n"
"par_id3163722\n"
"218\n"
"help.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: 04060112.xhp
msgctxt ""
@@ -59690,13 +59693,14 @@ msgid "equal"
msgstr "के बराबर"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -59708,13 +59712,14 @@ msgid "less than"
msgstr "से कम"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
@@ -59762,13 +59767,14 @@ msgid "greater than or equal to"
msgstr "से बड़ा है या समान है"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3150345\n"
"23\n"
"help.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: 12090103.xhp
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/scalc/05.po b/source/hi/helpcontent2/source/text/scalc/05.po
index 1c3dd9cf773..6fc526d5e24 100644
--- a/source/hi/helpcontent2/source/text/scalc/05.po
+++ b/source/hi/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2015-04-23 15:27+0000\n"
+"PO-Revision-Date: 2016-03-03 21:22+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429802837.000000\n"
+"X-POOTLE-MTIME: 1457040166.000000\n"
#: 02140000.xhp
msgctxt ""
@@ -102,12 +102,13 @@ msgid "Explanation"
msgstr "स्पष्टीकरण"
#: 02140000.xhp
+#, fuzzy
msgctxt ""
"02140000.xhp\n"
"par_id1668467\n"
"help.text"
msgid "###"
-msgstr ""
+msgstr "###"
#: 02140000.xhp
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/shared/00.po b/source/hi/helpcontent2/source/text/shared/00.po
index cf91f4752ba..9186ee77f82 100644
--- a/source/hi/helpcontent2/source/text/shared/00.po
+++ b/source/hi/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 18:42+0000\n"
+"PO-Revision-Date: 2016-03-03 21:37+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431369775.000000\n"
+"X-POOTLE-MTIME: 1457041034.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3970,12 +3970,13 @@ msgid "ODF 1.2 (Extended)"
msgstr ""
#: 00000021.xhp
+#, fuzzy
msgctxt ""
"00000021.xhp\n"
"par_id100120091238112\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 00000021.xhp
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/shared/01.po b/source/hi/helpcontent2/source/text/shared/01.po
index c858432ce80..c89f7171b38 100644
--- a/source/hi/helpcontent2/source/text/shared/01.po
+++ b/source/hi/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-12 13:04+0000\n"
+"PO-Revision-Date: 2016-03-03 21:54+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452603894.000000\n"
+"X-POOTLE-MTIME: 1457042084.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7477,13 +7477,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7495,13 +7496,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7513,13 +7515,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7539,13 +7542,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7584,13 +7588,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7602,13 +7607,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr "\"?\" के सामने शून्य या कोई एक अक्षर ढूंढता है. उदाहरण के लिए, \"Texts?\" ढूंढता है \"Text\" तथा \"Texts\" तथा \"x(ab|c)?y\" ढूंढता है \"xy\", \"xaby\", या \"xcy\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -7690,13 +7696,14 @@ msgid "Match a word boundary. For example, \"\\bbook\" finds \"bookmark\" but no
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3149576\n"
"37\n"
"help.text"
msgid "^$"
-msgstr ""
+msgstr "^$"
#: 02100001.xhp
msgctxt ""
@@ -7708,13 +7715,14 @@ msgid "Finds an empty paragraph."
msgstr "रिक्त अनुच्छेद को ढूंढता है."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3148550\n"
"41\n"
"help.text"
msgid "^."
-msgstr ""
+msgstr "^."
#: 02100001.xhp
msgctxt ""
@@ -7957,13 +7965,14 @@ msgid "Defines the minimum number of times that the character in front of the op
msgstr "निर्धारित करता है कि ओपनिंग कोष्ठक के सामने कितनी न्यूनतम मर्तबा अक्षर आ सकता है. उदाहरण के लिए, \"tre{2,}\" ढूंढता है \"tree\", \"treee\", तथा \"treeeee\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3148616\n"
"213\n"
"help.text"
msgid "( )"
-msgstr ""
+msgstr "( )"
#: 02100001.xhp
msgctxt ""
@@ -8299,13 +8308,14 @@ msgid "For example, a similarity search can find words that differ from the <emp
msgstr ""
#: 02100100.xhp
+#, fuzzy
msgctxt ""
"02100100.xhp\n"
"hd_id3154621\n"
"54\n"
"help.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: 02100100.xhp
msgctxt ""
@@ -10158,13 +10168,14 @@ msgid "file:///c|/Readme.txt"
msgstr "file:///c|/Readme.txt"
#: 02210101.xhp
+#, fuzzy
msgctxt ""
"02210101.xhp\n"
"hd_id3147088\n"
"10\n"
"help.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: 02210101.xhp
msgctxt ""
@@ -15728,13 +15739,14 @@ msgid "Explanation"
msgstr "स्पष्टीकरण"
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
@@ -15818,13 +15830,14 @@ msgid "3456.78 as 3456.8"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3150355\n"
"12\n"
"help.text"
msgid "####.#"
-msgstr ""
+msgstr "####.#"
#: 05020301.xhp
msgctxt ""
@@ -15872,13 +15885,14 @@ msgid "5.75 as 5 3/4 and 6.3 as 6 3/10"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3145315\n"
"18\n"
"help.text"
msgid "# ???/???"
-msgstr ""
+msgstr "# ???/???"
#: 05020301.xhp
msgctxt ""
@@ -15962,13 +15976,14 @@ msgid "15000 as 15,000"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3151223\n"
"25\n"
"help.text"
msgid "#,###"
-msgstr ""
+msgstr "#,###"
#: 05020301.xhp
msgctxt ""
@@ -15980,13 +15995,14 @@ msgid "16000 as 16"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3153961\n"
"27\n"
"help.text"
msgid "#,"
-msgstr ""
+msgstr "#,"
#: 05020301.xhp
msgctxt ""
@@ -19763,13 +19779,14 @@ msgid "<ahelp hid=\"cui/ui/paratabspage/radiobuttonBTN_FILLCHAR_NO\">Inserts no
msgstr ""
#: 05030300.xhp
+#, fuzzy
msgctxt ""
"05030300.xhp\n"
"hd_id3152933\n"
"26\n"
"help.text"
msgid "......."
-msgstr ""
+msgstr "......."
#: 05030300.xhp
msgctxt ""
@@ -19781,13 +19798,14 @@ msgid "<ahelp hid=\"cui/ui/paratabspage/radiobuttonBTN_FILLCHAR_POINTS\">Fills t
msgstr ""
#: 05030300.xhp
+#, fuzzy
msgctxt ""
"05030300.xhp\n"
"hd_id3156280\n"
"28\n"
"help.text"
msgid "------"
-msgstr ""
+msgstr "------"
#: 05030300.xhp
msgctxt ""
@@ -19799,13 +19817,14 @@ msgid "<ahelp hid=\"cui/ui/paratabspage/radiobuttonBTN_FILLCHAR_DASHLINE\">Fills
msgstr ""
#: 05030300.xhp
+#, fuzzy
msgctxt ""
"05030300.xhp\n"
"hd_id3157960\n"
"30\n"
"help.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: 05030300.xhp
msgctxt ""
@@ -34516,13 +34535,14 @@ msgid "The following table summarizes the line thickness for the different chara
msgstr "भिन्न अक्षरों के लिए निम्न तालिका में लाइन की मोटाई का सारांश दिया गया है:"
#: 06040100.xhp
+#, fuzzy
msgctxt ""
"06040100.xhp\n"
"par_id3148576\n"
"37\n"
"help.text"
msgid "---"
-msgstr ""
+msgstr "---"
#: 06040100.xhp
msgctxt ""
@@ -34534,13 +34554,14 @@ msgid "0.5pt single underline"
msgstr "0.5पाइं. एकल रेखांकित"
#: 06040100.xhp
+#, fuzzy
msgctxt ""
"06040100.xhp\n"
"par_id3154472\n"
"39\n"
"help.text"
msgid "___"
-msgstr ""
+msgstr "___"
#: 06040100.xhp
msgctxt ""
@@ -34570,13 +34591,14 @@ msgid "1.1pt double underline"
msgstr "1.1पाइं. एकल रेखांकित"
#: 06040100.xhp
+#, fuzzy
msgctxt ""
"06040100.xhp\n"
"par_id3148647\n"
"43\n"
"help.text"
msgid "***"
-msgstr ""
+msgstr "***"
#: 06040100.xhp
msgctxt ""
@@ -34606,13 +34628,14 @@ msgid "6.0pt double underline"
msgstr "6.0पाइं. एकल रेखांकित"
#: 06040100.xhp
+#, fuzzy
msgctxt ""
"06040100.xhp\n"
"par_id3145591\n"
"47\n"
"help.text"
msgid "###"
-msgstr ""
+msgstr "###"
#: 06040100.xhp
msgctxt ""
@@ -41065,13 +41088,14 @@ msgid "File Property"
msgstr "फ़ाइल गुण"
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3151056\n"
"3\n"
"help.text"
msgid "<TITLE>"
-msgstr ""
+msgstr "<TITLE>"
#: about_meta_tags.xhp
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/shared/02.po b/source/hi/helpcontent2/source/text/shared/02.po
index 620be48c03a..ef2683c898c 100644
--- a/source/hi/helpcontent2/source/text/shared/02.po
+++ b/source/hi/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 15:28+0000\n"
+"PO-Revision-Date: 2016-03-03 22:01+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429802903.000000\n"
+"X-POOTLE-MTIME: 1457042506.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -6038,13 +6038,14 @@ msgid "Not possible"
msgstr "संभव नहीं"
#: 01170102.xhp
+#, fuzzy
msgctxt ""
"01170102.xhp\n"
"par_id3153109\n"
"26\n"
"help.text"
msgid "\"\""
-msgstr ""
+msgstr "\"\""
#: 01170102.xhp
msgctxt ""
@@ -13838,13 +13839,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tablecols\">Lists a
msgstr ""
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3146958\n"
"5\n"
"help.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: 12070100.xhp
msgctxt ""
@@ -13856,13 +13858,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr ""
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13874,13 +13877,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr ""
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -13892,13 +13896,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneleft\">Removes t
msgstr ""
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3150771\n"
"8\n"
"help.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: 12070100.xhp
msgctxt ""
@@ -14169,13 +14174,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr ""
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15673,13 +15679,14 @@ msgid "Example"
msgstr "उदाहरण"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15709,13 +15716,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr ""
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15799,40 +15807,44 @@ msgid "Search with regular expressions"
msgstr "रेगुलर एक्सप्रेशन्स से ढूंढें"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150428\n"
"73\n"
"help.text"
msgid ".*"
-msgstr ""
+msgstr ".*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/shared/autopi.po b/source/hi/helpcontent2/source/text/shared/autopi.po
index cb61f4b9a01..7effd135087 100644
--- a/source/hi/helpcontent2/source/text/shared/autopi.po
+++ b/source/hi/helpcontent2/source/text/shared/autopi.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: 2013-01-19 18:05+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2015-04-22 23:39+0200\n"
+"PO-Revision-Date: 2016-03-03 22:08+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1358618704.0\n"
+"X-POOTLE-MTIME: 1457042908.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -1686,12 +1686,13 @@ msgid "<ahelp hid=\".\">Enter the name of the fax template.</ahelp>"
msgstr ""
#: 01020500.xhp
+#, fuzzy
msgctxt ""
"01020500.xhp\n"
"par_idN105DE\n"
"help.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: 01020500.xhp
msgctxt ""
@@ -3422,13 +3423,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3440,13 +3442,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVESELECTED\">Click to move the selected fie
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3154142\n"
"12\n"
"help.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3461,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3476,13 +3480,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVESELECTED\">Click to move the selected f
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3159399\n"
"16\n"
"help.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3499,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4524,13 +4530,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr ""
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4542,13 +4549,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVESELECTED\">Click to move the selected
msgstr ""
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3159269\n"
"12\n"
"help.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: 01100100.xhp
msgctxt ""
@@ -4560,13 +4568,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr ""
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4578,13 +4587,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDREMOVESELECTED\">Click to move the select
msgstr ""
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3149233\n"
"16\n"
"help.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: 01100100.xhp
msgctxt ""
@@ -4720,13 +4730,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr ""
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4738,13 +4749,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr ""
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
@@ -6721,13 +6733,14 @@ msgid "Accept"
msgstr "स्वीकारें"
#: 01120100.xhp
+#, fuzzy
msgctxt ""
"01120100.xhp\n"
"par_id3147008\n"
"12\n"
"help.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: 01120100.xhp
msgctxt ""
@@ -6775,13 +6788,14 @@ msgid "Remove"
msgstr "मिटाएँ"
#: 01120100.xhp
+#, fuzzy
msgctxt ""
"01120100.xhp\n"
"par_id3153561\n"
"13\n"
"help.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: 01120100.xhp
msgctxt ""
@@ -7434,13 +7448,14 @@ msgid "<ahelp hid=\"HID_DLGIMPORT_2_EDDOCUMENTPATH\">Specifies the directory to
msgstr ""
#: 01130200.xhp
+#, fuzzy
msgctxt ""
"01130200.xhp\n"
"hd_id3153126\n"
"24\n"
"help.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: 01130200.xhp
msgctxt ""
@@ -7639,13 +7654,14 @@ msgid "<ahelp hid=\"HID_DLGCONVERT_TBSOURCE\">Indicates the directory or the nam
msgstr ""
#: 01150000.xhp
+#, fuzzy
msgctxt ""
"01150000.xhp\n"
"hd_id3151385\n"
"13\n"
"help.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: 01150000.xhp
msgctxt ""
@@ -7738,13 +7754,14 @@ msgid "<ahelp hid=\"HID_DLGCONVERT_TBTARGET\">Specifies the folder and path in w
msgstr ""
#: 01150000.xhp
+#, fuzzy
msgctxt ""
"01150000.xhp\n"
"par_id3154151\n"
"19\n"
"help.text"
msgid "<emph>...</emph>"
-msgstr ""
+msgstr "<emph>...</emph>"
#: 01150000.xhp
msgctxt ""
@@ -9463,12 +9480,13 @@ msgid "<ahelp hid=\"34261\">Uploads your index page and files to a local directo
msgstr ""
#: webwizard07.xhp
+#, fuzzy
msgctxt ""
"webwizard07.xhp\n"
"par_idN10565\n"
"help.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: webwizard07.xhp
msgctxt ""
@@ -9503,12 +9521,13 @@ msgid "Depending on your operating system, the available archive file formats ar
msgstr "आपके ऑपरेटिंग सिस्टम के पर निर्भर करते हुए, उपलब्ध आर्काइव फ़ाइल फ़ॉर्मेट हो सकते हैं zip, gzip, तथा war."
#: webwizard07.xhp
+#, fuzzy
msgctxt ""
"webwizard07.xhp\n"
"par_idN10576\n"
"help.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: webwizard07.xhp
msgctxt ""
@@ -9703,12 +9722,13 @@ msgid "<ahelp hid=\"41045\">Enter the location of a directory on the FTP server
msgstr ""
#: webwizard07fc.xhp
+#, fuzzy
msgctxt ""
"webwizard07fc.xhp\n"
"par_idN1058D\n"
"help.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: webwizard07fc.xhp
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/shared/explorer/database.po b/source/hi/helpcontent2/source/text/shared/explorer/database.po
index 495fa50cc0d..a8e49a362a4 100644
--- a/source/hi/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/hi/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-11 18:43+0000\n"
+"PO-Revision-Date: 2016-03-03 22:15+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431369805.000000\n"
+"X-POOTLE-MTIME: 1457043345.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1733,13 +1733,14 @@ msgid "The operator = will not be displayed in the query fields. If you enter a
msgstr ""
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150470\n"
"45\n"
"help.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: 02010100.xhp
msgctxt ""
@@ -1760,13 +1761,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr "... क्षेत्र की सामग्री निर्धारित एक्सप्रेशन से संबंधित नहीं है."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1787,13 +1789,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr "... क्षेत्र की सामग्री निर्धारित एक्सप्रेशन से ज्यादा है."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2793,13 +2796,14 @@ msgid "No"
msgstr "नहीं"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -4023,13 +4027,14 @@ msgid "<ahelp hid=\"HID_TAB_ENT_FORMAT_SAMPLE\">Displays the format code that yo
msgstr ""
#: 05010000.xhp
+#, fuzzy
msgctxt ""
"05010000.xhp\n"
"hd_id3154129\n"
"35\n"
"help.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: 05010000.xhp
msgctxt ""
@@ -6231,13 +6236,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6249,13 +6255,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/add\">Moves the selected index
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149416\n"
"7\n"
"help.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: 11030100.xhp
msgctxt ""
@@ -6267,13 +6274,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -6285,13 +6293,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/remove\">Moves the selected tab
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3155629\n"
"9\n"
"help.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: 11030100.xhp
msgctxt ""
@@ -7266,13 +7275,14 @@ msgid "If the DATADEVSPACE reaches full capacity during a database operation, Ad
msgstr ""
#: 30100000.xhp
+#, fuzzy
msgctxt ""
"30100000.xhp\n"
"hd_id3153189\n"
"24\n"
"help.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: 30100000.xhp
msgctxt ""
@@ -12420,12 +12430,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr ""
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14444,12 +14455,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr ""
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/shared/optionen.po b/source/hi/helpcontent2/source/text/shared/optionen.po
index c448f087ba1..b17d73baac5 100644
--- a/source/hi/helpcontent2/source/text/shared/optionen.po
+++ b/source/hi/helpcontent2/source/text/shared/optionen.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-16 19:02+0100\n"
-"PO-Revision-Date: 2015-05-11 18:43+0000\n"
+"PO-Revision-Date: 2016-03-03 22:34+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431369818.000000\n"
+"X-POOTLE-MTIME: 1457044448.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -2670,13 +2670,14 @@ msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The CMY
msgstr ""
#: 01010501.xhp
+#, fuzzy
msgctxt ""
"01010501.xhp\n"
"hd_id3153192\n"
"11\n"
"help.text"
msgid "<--"
-msgstr ""
+msgstr "<--"
#: 01010501.xhp
msgctxt ""
@@ -2688,13 +2689,14 @@ msgid "<ahelp hid=\"SVTOOLS:PUSHBUTTON:DLG_COLOR:BTN_1\">Click the <emph><--</em
msgstr ""
#: 01010501.xhp
+#, fuzzy
msgctxt ""
"01010501.xhp\n"
"hd_id3158409\n"
"13\n"
"help.text"
msgid "-->"
-msgstr ""
+msgstr "-->"
#: 01010501.xhp
msgctxt ""
@@ -5309,12 +5311,13 @@ msgid "<ahelp hid=\"cui/ui/optemailpage/url\">Enter the e-mail program path and
msgstr ""
#: 01020300.xhp
+#, fuzzy
msgctxt ""
"01020300.xhp\n"
"par_idN10591\n"
"help.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: 01020300.xhp
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/smath/01.po b/source/hi/helpcontent2/source/text/smath/01.po
index f53d6e38b44..ca84e59ceb7 100644
--- a/source/hi/helpcontent2/source/text/smath/01.po
+++ b/source/hi/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 15:29+0000\n"
+"PO-Revision-Date: 2016-03-03 22:49+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429802947.000000\n"
+"X-POOTLE-MTIME: 1457045369.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -6273,22 +6273,24 @@ msgid "\\{ or \\lbrace, \\} or \\rbrace"
msgstr ""
#: 03091100.xhp
+#, fuzzy
msgctxt ""
"03091100.xhp\n"
"par_id3150756\n"
"26\n"
"help.text"
msgid "\\(, \\)"
-msgstr ""
+msgstr "\\(, \\)"
#: 03091100.xhp
+#, fuzzy
msgctxt ""
"03091100.xhp\n"
"par_id3145207\n"
"27\n"
"help.text"
msgid "\\[, \\]"
-msgstr ""
+msgstr "\\[, \\]"
#: 03091100.xhp
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/swriter/01.po b/source/hi/helpcontent2/source/text/swriter/01.po
index 26a05ffdd06..001bceed814 100644
--- a/source/hi/helpcontent2/source/text/swriter/01.po
+++ b/source/hi/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 18:44+0000\n"
+"PO-Revision-Date: 2016-03-03 23:04+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431369846.000000\n"
+"X-POOTLE-MTIME: 1457046294.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -10957,13 +10957,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr ""
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -12153,13 +12154,14 @@ msgid "To create an index entry from a paragraph style, click the style in the<e
msgstr ""
#: 04120219.xhp
+#, fuzzy
msgctxt ""
"04120219.xhp\n"
"hd_id3150762\n"
"6\n"
"help.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: 04120219.xhp
msgctxt ""
@@ -12171,13 +12173,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/assignstylesdialog/left\" visibility=\"vi
msgstr ""
#: 04120219.xhp
+#, fuzzy
msgctxt ""
"04120219.xhp\n"
"hd_id3151178\n"
"8\n"
"help.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: 04120219.xhp
msgctxt ""
@@ -14450,13 +14453,14 @@ msgid "/* ignore all text here */"
msgstr ""
#: 04200000.xhp
+#, fuzzy
msgctxt ""
"04200000.xhp\n"
"par_id3154574\n"
"17\n"
"help.text"
msgid "</SCRIPT>"
-msgstr ""
+msgstr "</SCRIPT>"
#: 04200000.xhp
#, fuzzy
@@ -27662,12 +27666,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr ""
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27678,12 +27683,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr ""
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27870,12 +27876,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr ""
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27886,12 +27893,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elem
msgstr ""
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28326,12 +28334,13 @@ msgid "<ahelp hid=\".\">Select an address field and drag the field to the other
msgstr ""
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28342,12 +28351,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr ""
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/hi/helpcontent2/source/text/swriter/02.po b/source/hi/helpcontent2/source/text/swriter/02.po
index a5a38fdebf6..bcbb45f407d 100644
--- a/source/hi/helpcontent2/source/text/swriter/02.po
+++ b/source/hi/helpcontent2/source/text/swriter/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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 15:29+0000\n"
+"PO-Revision-Date: 2016-03-03 23:07+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429802970.000000\n"
+"X-POOTLE-MTIME: 1457046422.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1666,13 +1666,14 @@ msgid "Subtraction"
msgstr "घटाना"
#: 14020000.xhp
+#, fuzzy
msgctxt ""
"14020000.xhp\n"
"par_id3150087\n"
"12\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 14020000.xhp
msgctxt ""
diff --git a/source/hi/librelogo/source/pythonpath.po b/source/hi/librelogo/source/pythonpath.po
index 17215c293fe..c5c3381b8f5 100644
--- a/source/hi/librelogo/source/pythonpath.po
+++ b/source/hi/librelogo/source/pythonpath.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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2013-01-25 07:48+0000\n"
-"Last-Translator: Rajesh <rajesh672@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 08:43+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1359100104.0\n"
+"X-POOTLE-MTIME: 1457426630.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -769,20 +769,22 @@ msgid "pi|π"
msgstr "pi|π"
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
"property.text"
msgid "."
-msgstr ""
+msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/hi/officecfg/registry/data/org/openoffice/Office.po b/source/hi/officecfg/registry/data/org/openoffice/Office.po
index 78bd1858533..9a2f6e7fe12 100644
--- a/source/hi/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/hi/officecfg/registry/data/org/openoffice/Office.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-08-06 22:58+0000\n"
+"PO-Revision-Date: 2016-03-08 08:53+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438901884.000000\n"
+"X-POOTLE-MTIME: 1457427199.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1431,13 +1431,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/hi/reportdesign/uiconfig/dbreport/ui.po b/source/hi/reportdesign/uiconfig/dbreport/ui.po
index b83321d7274..270c6d1939a 100644
--- a/source/hi/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/hi/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-19 00:02+0000\n"
+"PO-Revision-Date: 2016-03-08 09:15+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416355335.000000\n"
+"X-POOTLE-MTIME: 1457428519.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/hi/sc/source/ui/src.po b/source/hi/sc/source/ui/src.po
index e354e794d11..a38a1b116f0 100644
--- a/source/hi/sc/source/ui/src.po
+++ b/source/hi/sc/source/ui/src.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-12-11 12:57+0100\n"
-"PO-Revision-Date: 2015-05-12 15:38+0000\n"
+"PO-Revision-Date: 2016-03-08 09:33+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Hindi <hindi>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431445119.000000\n"
+"X-POOTLE-MTIME: 1457429634.000000\n"
#: condformatdlg.src
msgctxt ""
@@ -2618,13 +2618,14 @@ msgid "Text Attributes"
msgstr "पाठ गुण"
#: globstr.src
+#, fuzzy
msgctxt ""
"globstr.src\n"
"RID_GLOBSTR\n"
"STR_HFCMD_DELIMITER\n"
"string.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: globstr.src
msgctxt ""
diff --git a/source/hi/sd/uiconfig/simpress/ui.po b/source/hi/sd/uiconfig/simpress/ui.po
index 6862a2c8000..d3406fff924 100644
--- a/source/hi/sd/uiconfig/simpress/ui.po
+++ b/source/hi/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:00+0000\n"
+"PO-Revision-Date: 2016-03-08 09:59+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435280445.000000\n"
+"X-POOTLE-MTIME: 1457431182.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -1005,22 +1005,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/hi/sw/source/core/undo.po b/source/hi/sw/source/core/undo.po
index 17e561cb286..11f0d8e9979 100644
--- a/source/hi/sw/source/core/undo.po
+++ b/source/hi/sw/source/core/undo.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:40+0200\n"
-"PO-Revision-Date: 2015-05-12 15:47+0000\n"
+"PO-Revision-Date: 2016-03-08 10:33+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Hindi <hindi>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431445665.000000\n"
+"X-POOTLE-MTIME: 1457433216.000000\n"
#: undo.src
msgctxt ""
@@ -794,20 +794,22 @@ msgid "Table/index changed"
msgstr "सारणी/सूची बदली गयी"
#: undo.src
+#, fuzzy
msgctxt ""
"undo.src\n"
"STR_START_QUOTE\n"
"string.text"
msgid "'"
-msgstr ""
+msgstr "'"
#: undo.src
+#, fuzzy
msgctxt ""
"undo.src\n"
"STR_END_QUOTE\n"
"string.text"
msgid "'"
-msgstr ""
+msgstr "'"
#: undo.src
msgctxt ""
diff --git a/source/hi/sw/source/ui/dbui.po b/source/hi/sw/source/ui/dbui.po
index eb92765233b..4065528919d 100644
--- a/source/hi/sw/source/ui/dbui.po
+++ b/source/hi/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-12 15:49+0000\n"
+"PO-Revision-Date: 2016-03-08 10:36+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Hindi <hindi>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431445741.000000\n"
+"X-POOTLE-MTIME: 1457433387.000000\n"
#: dbui.src
msgctxt ""
@@ -488,31 +488,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/hi/sw/source/ui/index.po b/source/hi/sw/source/ui/index.po
index 85d3e0266fa..caf4fa61121 100644
--- a/source/hi/sw/source/ui/index.po
+++ b/source/hi/sw/source/ui/index.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2013-01-23 11:25+0000\n"
-"Last-Translator: Rajesh <rajesh672@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 10:38+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1358940324.0\n"
+"X-POOTLE-MTIME: 1457433505.000000\n"
#: cnttab.src
msgctxt ""
@@ -57,20 +57,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -105,12 +107,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/hi/sw/source/ui/misc.po b/source/hi/sw/source/ui/misc.po
index 80d469724e9..82f3939897e 100644
--- a/source/hi/sw/source/ui/misc.po
+++ b/source/hi/sw/source/ui/misc.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-05-11 16:12+0200\n"
-"PO-Revision-Date: 2015-05-12 15:49+0000\n"
+"PO-Revision-Date: 2016-03-08 10:38+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Hindi <hindi>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431445768.000000\n"
+"X-POOTLE-MTIME: 1457433527.000000\n"
#: glossary.src
msgctxt ""
@@ -41,12 +41,13 @@ msgid "Delete the category "
msgstr "श्रेणी को मिटाना है "
#: glossary.src
+#, fuzzy
msgctxt ""
"glossary.src\n"
"STR_QUERY_DELETE_GROUP2\n"
"string.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: glossary.src
msgctxt ""
diff --git a/source/hi/sw/uiconfig/swriter/ui.po b/source/hi/sw/uiconfig/swriter/ui.po
index f5dd07950de..02dd8408a1a 100644
--- a/source/hi/sw/uiconfig/swriter/ui.po
+++ b/source/hi/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 22:58+0000\n"
+"PO-Revision-Date: 2016-03-08 10:53+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438901914.000000\n"
+"X-POOTLE-MTIME: 1457434433.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2309,13 +2309,14 @@ msgid "Convert Table to Text"
msgstr "सारणी को पाठ में बदलें"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2490,13 +2491,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2508,13 +2510,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4384,13 +4387,14 @@ msgid "None"
msgstr "कोई नहीं"
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
#, fuzzy
@@ -5338,22 +5342,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -8617,13 +8623,14 @@ msgid "First"
msgstr "प्रथम"
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8635,13 +8642,14 @@ msgid "Previous"
msgstr "पिछला"
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
msgctxt ""
@@ -15562,40 +15570,44 @@ msgid "[none]"
msgstr "[कोई नहीं]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
#, fuzzy
diff --git a/source/hi/vcl/source/src.po b/source/hi/vcl/source/src.po
index 85e7545cf2f..9b93af698b5 100644
--- a/source/hi/vcl/source/src.po
+++ b/source/hi/vcl/source/src.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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 17:08+0000\n"
+"PO-Revision-Date: 2016-03-08 10:57+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Hindi <hindi>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449853698.000000\n"
+"X-POOTLE-MTIME: 1457434679.000000\n"
#: app.src
msgctxt ""
@@ -1176,12 +1176,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1341,13 +1342,14 @@ msgid "pc"
msgstr "पीसी"
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"\"\n"
"itemlist.text"
msgid "\""
-msgstr ""
+msgstr "\""
#: units.src
msgctxt ""
@@ -1368,13 +1370,14 @@ msgid "inch"
msgstr "इंच"
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"'\n"
"itemlist.text"
msgid "'"
-msgstr ""
+msgstr "'"
#: units.src
msgctxt ""
@@ -1458,13 +1461,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/hi/wizards/source/formwizard.po b/source/hi/wizards/source/formwizard.po
index 90bd822092a..00ad07e4644 100644
--- a/source/hi/wizards/source/formwizard.po
+++ b/source/hi/wizards/source/formwizard.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-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-05-12 15:51+0000\n"
+"PO-Revision-Date: 2016-03-08 11:04+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Hindi <hindi>\n"
"Language: hi\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431445911.000000\n"
+"X-POOTLE-MTIME: 1457435053.000000\n"
#: dbwizres.src
msgctxt ""
@@ -2530,12 +2530,13 @@ msgid "+"
msgstr ""
#: dbwizres.src
+#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_DB_TABLE_WIZARD_START + 22\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: dbwizres.src
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/scalc/01.po b/source/hr/helpcontent2/source/text/scalc/01.po
index 1edf00b63e8..26eac1bb1f3 100644
--- a/source/hr/helpcontent2/source/text/scalc/01.po
+++ b/source/hr/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 18:45+0000\n"
+"PO-Revision-Date: 2016-03-03 21:59+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431369926.000000\n"
+"X-POOTLE-MTIME: 1457042379.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -59817,13 +59817,14 @@ msgid "equal"
msgstr "jednako"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -59835,13 +59836,14 @@ msgid "less than"
msgstr "manje od"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/shared/00.po b/source/hr/helpcontent2/source/text/shared/00.po
index 30c5ca4777c..599a592349f 100644
--- a/source/hr/helpcontent2/source/text/shared/00.po
+++ b/source/hr/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 18:45+0000\n"
+"PO-Revision-Date: 2016-03-03 22:15+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431369937.000000\n"
+"X-POOTLE-MTIME: 1457043310.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3970,12 +3970,13 @@ msgid "ODF 1.2 (Extended)"
msgstr ""
#: 00000021.xhp
+#, fuzzy
msgctxt ""
"00000021.xhp\n"
"par_id100120091238112\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 00000021.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/shared/01.po b/source/hr/helpcontent2/source/text/shared/01.po
index e71d7c0c950..1eb43aa920a 100644
--- a/source/hr/helpcontent2/source/text/shared/01.po
+++ b/source/hr/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-12 13:05+0000\n"
+"PO-Revision-Date: 2016-03-03 22:34+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452603946.000000\n"
+"X-POOTLE-MTIME: 1457044473.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7474,13 +7474,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7492,13 +7493,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7510,13 +7512,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7536,13 +7539,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7581,13 +7585,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7599,13 +7604,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -15730,13 +15736,14 @@ msgid "Explanation"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
@@ -15820,13 +15827,14 @@ msgid "3456.78 as 3456.8"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3150355\n"
"12\n"
"help.text"
msgid "####.#"
-msgstr ""
+msgstr "####.#"
#: 05020301.xhp
msgctxt ""
@@ -15964,13 +15972,14 @@ msgid "15000 as 15,000"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3151223\n"
"25\n"
"help.text"
msgid "#,###"
-msgstr ""
+msgstr "#,###"
#: 05020301.xhp
msgctxt ""
@@ -15982,13 +15991,14 @@ msgid "16000 as 16"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3153961\n"
"27\n"
"help.text"
msgid "#,"
-msgstr ""
+msgstr "#,"
#: 05020301.xhp
msgctxt ""
@@ -19765,13 +19775,14 @@ msgid "<ahelp hid=\"cui/ui/paratabspage/radiobuttonBTN_FILLCHAR_NO\">Inserts no
msgstr ""
#: 05030300.xhp
+#, fuzzy
msgctxt ""
"05030300.xhp\n"
"hd_id3152933\n"
"26\n"
"help.text"
msgid "......."
-msgstr ""
+msgstr "......."
#: 05030300.xhp
msgctxt ""
@@ -19783,13 +19794,14 @@ msgid "<ahelp hid=\"cui/ui/paratabspage/radiobuttonBTN_FILLCHAR_POINTS\">Fills t
msgstr ""
#: 05030300.xhp
+#, fuzzy
msgctxt ""
"05030300.xhp\n"
"hd_id3156280\n"
"28\n"
"help.text"
msgid "------"
-msgstr ""
+msgstr "------"
#: 05030300.xhp
msgctxt ""
@@ -34571,13 +34583,14 @@ msgid "1.1pt double underline"
msgstr ""
#: 06040100.xhp
+#, fuzzy
msgctxt ""
"06040100.xhp\n"
"par_id3148647\n"
"43\n"
"help.text"
msgid "***"
-msgstr ""
+msgstr "***"
#: 06040100.xhp
msgctxt ""
@@ -41064,13 +41077,14 @@ msgid "File Property"
msgstr ""
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3151056\n"
"3\n"
"help.text"
msgid "<TITLE>"
-msgstr ""
+msgstr "<TITLE>"
#: about_meta_tags.xhp
msgctxt ""
@@ -41082,13 +41096,14 @@ msgid "Subject"
msgstr "Subjekt"
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3147228\n"
"5\n"
"help.text"
msgid "<META NAME=\"CLASSIFICATION\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"CLASSIFICATION\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
@@ -41100,13 +41115,14 @@ msgid "Keywords"
msgstr "Ključne riječi"
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3156422\n"
"7\n"
"help.text"
msgid "<META NAME=\"KEYWORDS\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"KEYWORDS\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
@@ -41118,13 +41134,14 @@ msgid "Description"
msgstr "Opis"
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3125863\n"
"9\n"
"help.text"
msgid "<META NAME=\"DESCRIPTION\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"DESCRIPTION\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
@@ -41136,13 +41153,14 @@ msgid "Info fields 1...4"
msgstr ""
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3157892\n"
"11\n"
"help.text"
msgid "<META NAME=\"Info field name\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"Info field name\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/shared/02.po b/source/hr/helpcontent2/source/text/shared/02.po
index 91494bdcb46..c07f7eb4ae3 100644
--- a/source/hr/helpcontent2/source/text/shared/02.po
+++ b/source/hr/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 15:33+0000\n"
+"PO-Revision-Date: 2016-03-03 22:41+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429803221.000000\n"
+"X-POOTLE-MTIME: 1457044873.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -6040,13 +6040,14 @@ msgid "Not possible"
msgstr "Nije moguće"
#: 01170102.xhp
+#, fuzzy
msgctxt ""
"01170102.xhp\n"
"par_id3153109\n"
"26\n"
"help.text"
msgid "\"\""
-msgstr ""
+msgstr "\"\""
#: 01170102.xhp
msgctxt ""
@@ -13869,13 +13870,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr ""
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13887,13 +13889,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr ""
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -14182,13 +14185,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr ""
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15686,13 +15690,14 @@ msgid "Example"
msgstr "Primjer"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15722,13 +15727,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr ""
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15812,40 +15818,44 @@ msgid "Search with regular expressions"
msgstr ""
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150428\n"
"73\n"
"help.text"
msgid ".*"
-msgstr ""
+msgstr ".*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/shared/autopi.po b/source/hr/helpcontent2/source/text/shared/autopi.po
index 45defb7e612..da175d0d922 100644
--- a/source/hr/helpcontent2/source/text/shared/autopi.po
+++ b/source/hr/helpcontent2/source/text/shared/autopi.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: 2013-01-19 18:07+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2015-04-22 23:39+0200\n"
+"PO-Revision-Date: 2016-03-03 22:46+0000\n"
+"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1358618829.0\n"
+"X-POOTLE-MTIME: 1457045175.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3422,13 +3422,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3459,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3496,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4524,13 +4527,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr ""
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4560,13 +4564,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr ""
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4720,13 +4725,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr ""
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4738,13 +4744,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr ""
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
@@ -7738,13 +7745,14 @@ msgid "<ahelp hid=\"HID_DLGCONVERT_TBTARGET\">Specifies the folder and path in w
msgstr ""
#: 01150000.xhp
+#, fuzzy
msgctxt ""
"01150000.xhp\n"
"par_id3154151\n"
"19\n"
"help.text"
msgid "<emph>...</emph>"
-msgstr ""
+msgstr "<emph>...</emph>"
#: 01150000.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/shared/explorer/database.po b/source/hr/helpcontent2/source/text/shared/explorer/database.po
index 74cc08eb3c5..095a29e8b0d 100644
--- a/source/hr/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/hr/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-11 18:46+0000\n"
+"PO-Revision-Date: 2016-03-03 22:53+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431369964.000000\n"
+"X-POOTLE-MTIME: 1457045595.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1760,13 +1760,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr ""
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1787,13 +1788,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr ""
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2792,13 +2794,14 @@ msgid "No"
msgstr "Ne"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6229,13 +6232,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6265,13 +6269,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12452,12 +12457,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr ""
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14489,12 +14495,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr ""
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/shared/optionen.po b/source/hr/helpcontent2/source/text/shared/optionen.po
index 68eb7fd5654..26eb9d1c37e 100644
--- a/source/hr/helpcontent2/source/text/shared/optionen.po
+++ b/source/hr/helpcontent2/source/text/shared/optionen.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-16 19:02+0100\n"
-"PO-Revision-Date: 2015-04-23 15:34+0000\n"
+"PO-Revision-Date: 2016-03-03 23:06+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429803250.000000\n"
+"X-POOTLE-MTIME: 1457046415.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -2671,13 +2671,14 @@ msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The CMY
msgstr ""
#: 01010501.xhp
+#, fuzzy
msgctxt ""
"01010501.xhp\n"
"hd_id3153192\n"
"11\n"
"help.text"
msgid "<--"
-msgstr ""
+msgstr "<--"
#: 01010501.xhp
msgctxt ""
@@ -2689,13 +2690,14 @@ msgid "<ahelp hid=\"SVTOOLS:PUSHBUTTON:DLG_COLOR:BTN_1\">Click the <emph><--</em
msgstr ""
#: 01010501.xhp
+#, fuzzy
msgctxt ""
"01010501.xhp\n"
"hd_id3158409\n"
"13\n"
"help.text"
msgid "-->"
-msgstr ""
+msgstr "-->"
#: 01010501.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/smath/01.po b/source/hr/helpcontent2/source/text/smath/01.po
index 33960ca66fe..d9246dfa16f 100644
--- a/source/hr/helpcontent2/source/text/smath/01.po
+++ b/source/hr/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 15:34+0000\n"
+"PO-Revision-Date: 2016-03-03 23:24+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429803264.000000\n"
+"X-POOTLE-MTIME: 1457047460.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -6273,22 +6273,24 @@ msgid "\\{ or \\lbrace, \\} or \\rbrace"
msgstr ""
#: 03091100.xhp
+#, fuzzy
msgctxt ""
"03091100.xhp\n"
"par_id3150756\n"
"26\n"
"help.text"
msgid "\\(, \\)"
-msgstr ""
+msgstr "\\(, \\)"
#: 03091100.xhp
+#, fuzzy
msgctxt ""
"03091100.xhp\n"
"par_id3145207\n"
"27\n"
"help.text"
msgid "\\[, \\]"
-msgstr ""
+msgstr "\\[, \\]"
#: 03091100.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/swriter/01.po b/source/hr/helpcontent2/source/text/swriter/01.po
index 1b6389b2cec..1fa2de11944 100644
--- a/source/hr/helpcontent2/source/text/swriter/01.po
+++ b/source/hr/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 18:46+0000\n"
+"PO-Revision-Date: 2016-03-03 23:41+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431370002.000000\n"
+"X-POOTLE-MTIME: 1457048510.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -10966,13 +10966,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr ""
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -14447,13 +14448,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertscript/urlentry\">Adds a link to a
msgstr ""
#: 04200000.xhp
+#, fuzzy
msgctxt ""
"04200000.xhp\n"
"par_id3152963\n"
"15\n"
"help.text"
msgid "<SCRIPT LANGUAGE=\"JavaScript\" SRC=\"url\">"
-msgstr ""
+msgstr "<SCRIPT LANGUAGE=\"JavaScript\" SRC=\"url\">"
#: 04200000.xhp
msgctxt ""
@@ -14465,13 +14467,14 @@ msgid "/* ignore all text here */"
msgstr ""
#: 04200000.xhp
+#, fuzzy
msgctxt ""
"04200000.xhp\n"
"par_id3154574\n"
"17\n"
"help.text"
msgid "</SCRIPT>"
-msgstr ""
+msgstr "</SCRIPT>"
#: 04200000.xhp
msgctxt ""
@@ -27701,12 +27704,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr ""
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27717,12 +27721,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr ""
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27909,12 +27914,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr ""
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27925,12 +27931,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elem
msgstr ""
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28365,12 +28372,13 @@ msgid "<ahelp hid=\".\">Select an address field and drag the field to the other
msgstr ""
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28381,12 +28389,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr ""
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/swriter/02.po b/source/hr/helpcontent2/source/text/swriter/02.po
index 0e3190b2599..05b41ef9aca 100644
--- a/source/hr/helpcontent2/source/text/swriter/02.po
+++ b/source/hr/helpcontent2/source/text/swriter/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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 15:34+0000\n"
+"PO-Revision-Date: 2016-03-03 23:43+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429803285.000000\n"
+"X-POOTLE-MTIME: 1457048606.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1671,13 +1671,14 @@ msgid "Subtraction"
msgstr "Oduzimanje"
#: 14020000.xhp
+#, fuzzy
msgctxt ""
"14020000.xhp\n"
"par_id3150087\n"
"12\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 14020000.xhp
msgctxt ""
diff --git a/source/hu/svx/inc.po b/source/hu/svx/inc.po
index ebb84ffda11..fda5f0cb69f 100644
--- a/source/hu/svx/inc.po
+++ b/source/hu/svx/inc.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-12-13 11:13+0000\n"
-"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
+"PO-Revision-Date: 2016-03-08 11:25+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1450005213.000000\n"
+"X-POOTLE-MTIME: 1457436300.000000\n"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -626,7 +626,6 @@ msgctxt ""
msgid "Open ~Smart Tag Menu"
msgstr "~Intelligens címkék menü megnyitása"
-#: globlmn_tmpl.hrc
msgctxt ""
"globlmn_tmpl.hrc\n"
"ITEM_EDIT_IMAP\n"
diff --git a/source/id/helpcontent2/source/text/shared/00.po b/source/id/helpcontent2/source/text/shared/00.po
index 25f28f4488c..07626450216 100644
--- a/source/id/helpcontent2/source/text/shared/00.po
+++ b/source/id/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 19:01+0000\n"
+"PO-Revision-Date: 2016-03-04 00:07+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431370863.000000\n"
+"X-POOTLE-MTIME: 1457050031.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3973,12 +3973,13 @@ msgid "ODF 1.2 (Extended)"
msgstr ""
#: 00000021.xhp
+#, fuzzy
msgctxt ""
"00000021.xhp\n"
"par_id100120091238112\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 00000021.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/shared/01.po b/source/id/helpcontent2/source/text/shared/01.po
index 8e0d948c8d5..cd1de680462 100644
--- a/source/id/helpcontent2/source/text/shared/01.po
+++ b/source/id/helpcontent2/source/text/shared/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: libo 4.3 help shared/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-12 13:06+0000\n"
+"PO-Revision-Date: 2016-03-04 00:26+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Indonesian <id@li.org>\n"
"Language: id\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452604014.000000\n"
+"X-POOTLE-MTIME: 1457051197.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -41148,13 +41148,14 @@ msgid "Subject"
msgstr "Subjek"
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3147228\n"
"5\n"
"help.text"
msgid "<META NAME=\"CLASSIFICATION\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"CLASSIFICATION\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
@@ -41166,13 +41167,14 @@ msgid "Keywords"
msgstr "Kata Kunci"
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3156422\n"
"7\n"
"help.text"
msgid "<META NAME=\"KEYWORDS\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"KEYWORDS\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
@@ -41184,13 +41186,14 @@ msgid "Description"
msgstr "Deskripsi"
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3125863\n"
"9\n"
"help.text"
msgid "<META NAME=\"DESCRIPTION\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"DESCRIPTION\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
@@ -41202,13 +41205,14 @@ msgid "Info fields 1...4"
msgstr ""
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3157892\n"
"11\n"
"help.text"
msgid "<META NAME=\"Info field name\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"Info field name\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/shared/02.po b/source/id/helpcontent2/source/text/shared/02.po
index bb8fd9b3f13..19b67b12a9d 100644
--- a/source/id/helpcontent2/source/text/shared/02.po
+++ b/source/id/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 19:01+0000\n"
+"PO-Revision-Date: 2016-03-04 00:35+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431370894.000000\n"
+"X-POOTLE-MTIME: 1457051721.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -6049,13 +6049,14 @@ msgid "Not possible"
msgstr ""
#: 01170102.xhp
+#, fuzzy
msgctxt ""
"01170102.xhp\n"
"par_id3153109\n"
"26\n"
"help.text"
msgid "\"\""
-msgstr ""
+msgstr "\"\""
#: 01170102.xhp
msgctxt ""
@@ -13881,13 +13882,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr ""
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13899,13 +13901,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr ""
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -14194,13 +14197,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr ""
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15700,13 +15704,14 @@ msgid "Example"
msgstr "Contoh:"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15736,13 +15741,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr ""
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15826,40 +15832,44 @@ msgid "Search with regular expressions"
msgstr ""
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150428\n"
"73\n"
"help.text"
msgid ".*"
-msgstr ""
+msgstr ".*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/shared/autopi.po b/source/id/helpcontent2/source/text/shared/autopi.po
index a4e64ee6b4f..5458d01b0b3 100644
--- a/source/id/helpcontent2/source/text/shared/autopi.po
+++ b/source/id/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-05-11 19:01+0000\n"
+"PO-Revision-Date: 2016-03-04 00:42+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431370903.000000\n"
+"X-POOTLE-MTIME: 1457052173.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3422,13 +3422,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3459,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3496,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4524,13 +4527,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr ""
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4560,13 +4564,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr ""
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4720,13 +4725,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr ""
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4738,13 +4744,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr ""
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/shared/explorer/database.po b/source/id/helpcontent2/source/text/shared/explorer/database.po
index 140a046da6d..4d83d58f660 100644
--- a/source/id/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/id/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-11 19:01+0000\n"
+"PO-Revision-Date: 2016-03-04 00:49+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431370909.000000\n"
+"X-POOTLE-MTIME: 1457052552.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1760,13 +1760,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr ""
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1787,13 +1788,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr ""
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2792,13 +2794,14 @@ msgid "No"
msgstr "Tidak"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6230,13 +6233,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6266,13 +6270,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12474,12 +12479,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr ""
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14502,12 +14508,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr ""
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/swriter/01.po b/source/id/helpcontent2/source/text/swriter/01.po
index 42152e89c59..9956721a154 100644
--- a/source/id/helpcontent2/source/text/swriter/01.po
+++ b/source/id/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: swriter 3.6\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-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 19:03+0000\n"
+"PO-Revision-Date: 2016-03-04 01:47+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Indonesia <id@li.org>\n"
"Language: id\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431371008.000000\n"
+"X-POOTLE-MTIME: 1457056071.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -11050,13 +11050,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr ""
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -27773,12 +27774,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr ""
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27789,12 +27791,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr ""
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
diff --git a/source/is/cui/uiconfig/ui.po b/source/is/cui/uiconfig/ui.po
index 44dbca5f811..adefe5ca75b 100644
--- a/source/is/cui/uiconfig/ui.po
+++ b/source/is/cui/uiconfig/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-02-04 07:41+0000\n"
+"PO-Revision-Date: 2016-03-13 10:45+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1454571694.000000\n"
+"X-POOTLE-MTIME: 1457865915.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -15700,7 +15700,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Co_rrect"
-msgstr "Leið_rétt"
+msgstr "Leið_rétta"
#: spellingdialog.ui
msgctxt ""
diff --git a/source/is/helpcontent2/source/text/scalc/01.po b/source/is/helpcontent2/source/text/scalc/01.po
index b2c07fc5abd..6481d6ed7fb 100644
--- a/source/is/helpcontent2/source/text/scalc/01.po
+++ b/source/is/helpcontent2/source/text/scalc/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-10-16 12:53+0000\n"
-"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
+"PO-Revision-Date: 2016-03-04 00:13+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1445000008.000000\n"
+"X-POOTLE-MTIME: 1457050383.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -59826,13 +59826,14 @@ msgid "equal"
msgstr "jafngilda"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -59844,13 +59845,14 @@ msgid "less than"
msgstr "minni en"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
diff --git a/source/is/helpcontent2/source/text/shared/autopi.po b/source/is/helpcontent2/source/text/shared/autopi.po
index b341814e7a9..e4a0f3d4ffe 100644
--- a/source/is/helpcontent2/source/text/shared/autopi.po
+++ b/source/is/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-10-16 12:56+0000\n"
-"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
+"PO-Revision-Date: 2016-03-04 01:10+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1445000177.000000\n"
+"X-POOTLE-MTIME: 1457053844.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3422,13 +3422,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3459,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3496,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4524,13 +4527,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr ""
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4560,13 +4564,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr ""
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4720,13 +4725,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr ""
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4738,13 +4744,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr ""
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
@@ -7738,13 +7745,14 @@ msgid "<ahelp hid=\"HID_DLGCONVERT_TBTARGET\">Specifies the folder and path in w
msgstr ""
#: 01150000.xhp
+#, fuzzy
msgctxt ""
"01150000.xhp\n"
"par_id3154151\n"
"19\n"
"help.text"
msgid "<emph>...</emph>"
-msgstr ""
+msgstr "<emph>...</emph>"
#: 01150000.xhp
msgctxt ""
diff --git a/source/is/helpcontent2/source/text/shared/explorer/database.po b/source/is/helpcontent2/source/text/shared/explorer/database.po
index 7d9e3a7e0c2..60456b106f9 100644
--- a/source/is/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/is/helpcontent2/source/text/shared/explorer/database.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-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-10-16 12:56+0000\n"
-"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
+"PO-Revision-Date: 2016-03-04 01:16+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1445000187.000000\n"
+"X-POOTLE-MTIME: 1457054205.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1760,13 +1760,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr ""
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1787,13 +1788,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr ""
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -6229,13 +6231,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6265,13 +6268,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12417,12 +12421,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr ""
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14448,12 +14453,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr ""
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/is/helpcontent2/source/text/swriter/01.po b/source/is/helpcontent2/source/text/swriter/01.po
index 42392df2748..55e0f24cede 100644
--- a/source/is/helpcontent2/source/text/swriter/01.po
+++ b/source/is/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-10-16 12:57+0000\n"
-"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
+"PO-Revision-Date: 2016-03-04 02:06+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1445000261.000000\n"
+"X-POOTLE-MTIME: 1457057197.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -10957,13 +10957,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr ""
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -27653,12 +27654,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr ""
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27669,12 +27671,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr ""
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27861,12 +27864,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr ""
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27877,12 +27881,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elem
msgstr ""
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28317,12 +28322,13 @@ msgid "<ahelp hid=\".\">Select an address field and drag the field to the other
msgstr ""
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28333,12 +28339,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr ""
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/is/helpcontent2/source/text/swriter/02.po b/source/is/helpcontent2/source/text/swriter/02.po
index 5758230c946..a8dad892518 100644
--- a/source/is/helpcontent2/source/text/swriter/02.po
+++ b/source/is/helpcontent2/source/text/swriter/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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-10-16 12:59+0000\n"
-"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
+"PO-Revision-Date: 2016-03-04 02:07+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1445000358.000000\n"
+"X-POOTLE-MTIME: 1457057271.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1667,13 +1667,14 @@ msgid "Subtraction"
msgstr "Frádráttur"
#: 14020000.xhp
+#, fuzzy
msgctxt ""
"14020000.xhp\n"
"par_id3150087\n"
"12\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 14020000.xhp
msgctxt ""
diff --git a/source/is/svx/inc.po b/source/is/svx/inc.po
index 5a63a1cb99e..75553d6c9bb 100644
--- a/source/is/svx/inc.po
+++ b/source/is/svx/inc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: inc\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-21 14:26+0000\n"
+"PO-Revision-Date: 2016-03-08 12:56+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440167215.000000\n"
+"X-POOTLE-MTIME: 1457441815.000000\n"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -626,7 +626,6 @@ msgctxt ""
msgid "Open ~Smart Tag Menu"
msgstr "Opna ~snjallmerkjavalmynd"
-#: globlmn_tmpl.hrc
msgctxt ""
"globlmn_tmpl.hrc\n"
"ITEM_EDIT_IMAP\n"
diff --git a/source/it/helpcontent2/source/text/shared/01.po b/source/it/helpcontent2/source/text/shared/01.po
index f762345b6a5..c1011250f37 100644
--- a/source/it/helpcontent2/source/text/shared/01.po
+++ b/source/it/helpcontent2/source/text/shared/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-02-29 14:13+0000\n"
-"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
+"PO-Revision-Date: 2016-03-04 01:35+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456755224.000000\n"
+"X-POOTLE-MTIME: 1457055325.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -33680,7 +33680,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the current word, or the related term that you selected by double-clicking a line in the Alternatives list. You can also type text directly in this box to look up your text.</ahelp>"
-msgstr "<ahelp hid=\".\">Mostra la parola corrente o il termine correlato che avete selezionato nell'elenco delle alternative facendo doppio clic su una delle voci. Potete anche digitare una parola direttamente in questa casella per ricercarla.</ahelp>"
+msgstr "<ahelp hid=\".\">Mostra la parola corrente o il termine correlato che è stata selezionata nell'elenco delle alternative facendo doppio clic su una delle voci. Si può anche digitare una parola direttamente in questa casella per ricercarla.</ahelp>"
#: 06020000.xhp
msgctxt ""
@@ -33716,7 +33716,7 @@ msgctxt ""
"8\n"
"help.text"
msgid "<ahelp hid=\".\">Click an entry in the Alternatives list to copy the related term to the \"Replace with\" text box. Double-click an entry to copy the related term to the \"Current word\" text box and to look up that term.</ahelp>"
-msgstr "<ahelp hid=\".\">Fate clic su una voce nell'elenco delle Alternative per copiare il termine correlato nella casella di testo \"Sostituisci con\". Facendo doppio clic su una voce, copiate il termine correlato nella casella di testo \"Parola corrente\" e comincia la ricerca del termine.</ahelp>"
+msgstr "<ahelp hid=\".\">Fare clic su una voce nell'elenco delle Alternative per copiare il termine correlato nella casella di testo \"Sostituisci con\". Facendo doppio clic su una voce, si copia il termine correlato nella casella di testo \"Parola corrente\" e comincia la ricerca del termine.</ahelp>"
#: 06020000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/02.po b/source/it/helpcontent2/source/text/shared/02.po
index 372f4ec3673..9e6b2ba36c3 100644
--- a/source/it/helpcontent2/source/text/shared/02.po
+++ b/source/it/helpcontent2/source/text/shared/02.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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-01-24 19:43+0000\n"
-"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
+"PO-Revision-Date: 2016-03-04 01:48+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1453664603.000000\n"
+"X-POOTLE-MTIME: 1457056102.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -4132,7 +4132,7 @@ msgctxt ""
"par_idN1154E\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies if a Push Button behaves as a Toggle Button. If you set Toggle to \"Yes\", you can switch between the \"selected\" and \"not selected\" control states when you click the button or press the spacebar while the control has the focus. A button in the \"selected\" state appears \"pressed in\".</ahelp>"
-msgstr "<ahelp hid=\".\">Specifica se il pulsante si comporta come un pulsante Attiva/Disattiva. Se l'opzione Attiva/Disattiva è impostata su \"Sì\", facendo clic sul pulsante o premendo la barra spaziatrice con il punto focale sul controllo potete commutare tra gli stati \"selezionato\" e \"non selezionato\". Un pulsante nello stato \"selezionato\" appare \"premuto\".</ahelp>"
+msgstr "<ahelp hid=\".\">Specifica se il pulsante si debba comportare come un pulsante Attiva/Disattiva. Se l'opzione Attiva/Disattiva è impostata su \"Sì\", facendo clic sul pulsante o premendo la barra spaziatrice con il punto focale sul controllo è possibile commutare tra gli stati \"selezionato\" e \"non selezionato\". Un pulsante nello stato \"selezionato\" appare \"premuto\".</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -4148,7 +4148,7 @@ msgctxt ""
"par_idN1156E\n"
"help.text"
msgid "<ahelp hid=\".\">If you set this option to \"Yes\", the Push Button receives the focus when you click the button.</ahelp>"
-msgstr "<ahelp hid=\".\">Se impostate questa opzione su \"Sì\", il punto focale passa sul pulsante quando vi fate clic sopra.</ahelp>"
+msgstr "<ahelp hid=\".\">Se si imposta questa opzione su \"Sì\", il punto focale passa sul pulsante quando vi si fa sopra clic.</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -4615,7 +4615,7 @@ msgctxt ""
"par_idN11B55\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the value to add or subtract when the user clicks the arrow icon on the scrollbar.</ahelp>"
-msgstr "<ahelp hid=\".\">Specificate il valore da aggiungere o da sottrarre in risposta a un clic sull'icona a freccia della barra di scorrimento.</ahelp>"
+msgstr "<ahelp hid=\".\">Specificare il valore da aggiungere o da sottrarre in risposta a un clic sull'icona a freccia della barra di scorrimento.</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -4631,7 +4631,7 @@ msgctxt ""
"par_idN11B73\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the value to add or subtract when the user clicks next to the slider on the scrollbar.</ahelp>"
-msgstr "<ahelp hid=\".\">Specifica il valore da aggiungere o da sottrarre in risposta a un clic sull'icona a freccia della barra di scorrimento.</ahelp>"
+msgstr "<ahelp hid=\".\">Specificare il valore da aggiungere o da sottrarre in risposta a un clic sull'icona a freccia della barra di scorrimento.</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -5027,7 +5027,7 @@ msgctxt ""
"par_idN11FBA\n"
"help.text"
msgid "<ahelp hid=\".\">For text fields, select the line end code to be used when writing text into a database column.</ahelp>"
-msgstr "<ahelp hid=\".\">Per i campi di testo, selezionate il codice di fine riga da utilizzare per la scrittura del testo nelle colonne di un database.</ahelp>"
+msgstr "<ahelp hid=\".\">Per i campi di testo, selezionare il codice di fine riga da utilizzare per la scrittura del testo nelle colonne di un database.</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -5325,7 +5325,7 @@ msgctxt ""
"par_idN108B8\n"
"help.text"
msgid "<ahelp hid=\".\">Check boxes and radio buttons in spreadsheets can be bound to cells in the current document. If the control is enabled, the value you enter in Reference value (on) is copied to the cell. If the control is disabled, the value from Reference value (off) is copied to the cell.</ahelp>"
-msgstr "<ahelp hid=\".\">Caselle di selezione e pulsanti di scelta in un foglio di calcolo possono essere collegati a celle del documento corrente. Se il controllo è abilitato, il valore che immettete in valore di riferimento (on) viene copiato nella cella. Se il controllo è disabilitato, il valore di riferimento (off) viene copiato nella cella.</ahelp>"
+msgstr "<ahelp hid=\".\">Caselle di selezione e pulsanti di scelta in un foglio di calcolo possono essere collegati a celle del documento corrente. Se il controllo è abilitato, il valore si immette in Valore di riferimento (on) viene copiato nella cella. Se il controllo è disabilitato, il Valore di riferimento (off) viene copiato nella cella.</ahelp>"
#: 01170102.xhp
msgctxt ""
@@ -10712,7 +10712,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".\">Click the Increase Indent icon to increase the left indent of the current paragraph or cell content and set it to the next default tab position.</ahelp>"
-msgstr "<ahelp hid=\".\">Fate clic sull'icona Aumenta rientro per aumentare il rientro sinistro del paragrafo o del contenuto della cella e impostarlo in corrispondenza della tabulazione successiva.</ahelp>"
+msgstr "<ahelp hid=\".\">Fare clic sull'icona Aumenta rientro per aumentare il rientro sinistro del paragrafo o del contenuto della cella e impostarlo in corrispondenza della tabulazione successiva.</ahelp>"
#: 02140000.xhp
msgctxt ""
@@ -10989,7 +10989,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"hintergrundfarbetext\"><ahelp hid=\".\">Click to open a toolbar where you can click a background color for a paragraph. The color is applied to the background of the current paragraph or the selected paragraphs.</ahelp></variable>"
-msgstr "<variable id=\"hintergrundfarbetext\"><ahelp hid=\".\">Fate clic per aprire una barra degli strumenti dove selezionare il colore di sfondo per il paragrafo. Il colore è applicato allo sfondo del paragrafo corrente o ai paragrafi selezionati.</ahelp></variable>"
+msgstr "<variable id=\"hintergrundfarbetext\"><ahelp hid=\".\">Fare clic per aprire una barra degli strumenti dove selezionare il colore di sfondo per il paragrafo. Il colore è applicato allo sfondo del paragrafo corrente o ai paragrafi selezionati.</ahelp></variable>"
#: 02170000.xhp
msgctxt ""
@@ -11893,7 +11893,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=\".\">Carica un documento specificato da un URL. Da qui potete indicare un nuovo URL, modificare un URL o selezionarne uno dalla lista. Visualizza il percorso completo del documento corrente.</ahelp>"
+msgstr "<ahelp hid=\".\">Carica un documento specificato da un URL. Da qui si può indicare un nuovo URL, modificare un URL o selezionarne uno dalla lista. Visualizza il percorso completo del documento corrente.</ahelp>"
#: 07010000.xhp
msgctxt ""
@@ -12289,7 +12289,7 @@ msgctxt ""
"par_id0122200902231573\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Hyperlink dialog.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la finestra di dialogo collegamento ipertestuale.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la finestra di dialogo Collegamento ipertestuale.</ahelp>"
#: 09070000.xhp
msgctxt ""
@@ -12305,7 +12305,7 @@ msgctxt ""
"par_id0122200902231630\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Removes the hyperlink, leaving plain text.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Rimuove il collegamento ipertestuale lasciando il testo normale.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Rimuove il collegamento ipertestuale lasciando il testo semplice.</ahelp>"
#: 09070000.xhp
msgctxt ""
@@ -12474,7 +12474,7 @@ msgctxt ""
"par_id9887081\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a URL for the file that you want to open when you click the hyperlink. If you do not specify a target frame, the file opens in the current document or frame.</ahelp>"
-msgstr "<ahelp hid=\".\">Digitate un indirizzo URL per il file da aprire quando si pigia il collegamento ipertestuale. Se non specificate un frame di arrivo, il file si apre nel documento o nel frame attivo.</ahelp>"
+msgstr "<ahelp hid=\".\">Digitare un indirizzo URL per il file da aprire quando si pigia il collegamento ipertestuale. Se non si specifica un frame di arrivo, il file si apre nel documento o nel frame attivo.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -12599,7 +12599,7 @@ msgctxt ""
"par_id2052980\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window.</ahelp>"
-msgstr "<ahelp hid=\".\">Inserite il nome della cornice in cui volete aprire il file collegato oppure selezionate una cornice predefinita dall'elenco. Se lasciate vuota questa casella, il file collegato viene aperto nella finestra attiva del browser.</ahelp>"
+msgstr "<ahelp hid=\".\">Inserire il nome della cornice in cui aprire il file collegato oppure selezionare una cornice predefinita dall'elenco. Se si lascia vuota questa casella, il file collegato viene aperto nella finestra attiva del browser.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -12670,7 +12670,7 @@ msgctxt ""
"par_id2801599\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a name for the hyperlink.</ahelp> $[officename] inserts a NAME tag in the hyperlink."
-msgstr "<ahelp hid=\".\">Inserite un nome per il collegamento.</ahelp> $[officename] inserisce un tag NAME nel collegamento."
+msgstr "<ahelp hid=\".\">Inserire un nome per il collegamento ipertestuale.</ahelp> $[officename] inserisce un tag NAME nel collegamento ipertestuale."
#: 09070200.xhp
msgctxt ""
@@ -12847,7 +12847,7 @@ msgctxt ""
"par_id9462263\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a URL for the file that you want to open when you click the hyperlink. If you do not specify a target frame, the file opens in the current document or frame.</ahelp>"
-msgstr "<ahelp hid=\".\">Digitate un indirizzo URL per il file da aprire quando si pigia il collegamento ipertestuale. Se non specificate un frame di arrivo, il file si apre nel documento o nel frame attivo.</ahelp>"
+msgstr "<ahelp hid=\".\">Digitare un indirizzo URL per il file da aprire quando si pigia il collegamento ipertestuale. Se non si specifica un frame di arrivo, il file si apre nel documento o nel frame attivo.</ahelp>"
#: 09070300.xhp
msgctxt ""
@@ -13025,7 +13025,7 @@ msgctxt ""
"par_id8894009\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a URL for the file that you want to open when you click the hyperlink.</ahelp>"
-msgstr "<ahelp hid=\".\">Digitate un indirizzo URL per il file da aprire quando fate clic sul collegamento ipertestuale.</ahelp>"
+msgstr "<ahelp hid=\".\">Digitare un indirizzo URL per il file da aprire quando si fa clic sul collegamento ipertestuale.</ahelp>"
#: 09070400.xhp
msgctxt ""
@@ -13347,7 +13347,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Closes the connection to the data source. See <emph>%PRODUCTNAME Base - Connections</emph> in the Options dialog box.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chiude il collegamento alla sorgente dati. Vedete <emph>%PRODUCTNAME Base - Connessioni</emph> nella finestra di dialogo Opzioni.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Chiude il collegamento alla sorgente dati. Vedi <emph>%PRODUCTNAME Base - Connessioni</emph> nella finestra di dialogo Opzioni.</ahelp>"
#: 12000000.xhp
msgctxt ""
@@ -13356,7 +13356,7 @@ msgctxt ""
"52\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">To rename an entry, call this command and enter the new name. You can also do this by selecting the entry and pressing F2. The database must support renaming, otherwise this command is not enabled.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Per rinominare una voce, selezionate questo comando e specificate il nuovo nome. Lo stesso accade se selezionate la voce e premete F2. Il database deve supportare la funzione di rinomina, altrimenti questo comando non è abilitato.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Per rinominare una voce, seleziona questo comando e specifica il nuovo nome. Lo stesso accade se selezioni la voce e premi F2. Il database deve supportare la funzione di rinomina, altrimenti questo comando non è abilitato.</ahelp>"
#: 12000000.xhp
msgctxt ""
@@ -17002,7 +17002,7 @@ msgctxt ""
"par_id3156183\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the source text of the current HTML document. This view is available when creating a new HTML document or opening an existing one.</ahelp>"
-msgstr "<ahelp hid=\".\">Mostra il testo sorgente del documento HTML visualizzato. Questa vista è disponibile quando create un documento HTML o ne aprite uno esistente.</ahelp>"
+msgstr "<ahelp hid=\".\">Mostra il testo sorgente del documento HTML visualizzato. Questa vista è disponibile quando si crea un documento HTML o se ne apre uno esistente.</ahelp>"
#: 19090000.xhp
msgctxt ""
@@ -18534,7 +18534,7 @@ msgctxt ""
"par_idN10567\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Basic Shapes toolbar which you can use to insert graphics into your document.</ahelp>"
-msgstr "<ahelp hid=\".\">Apre la barra degli strumenti Forme base, con cui potete inserire immagini nel documento.</ahelp>"
+msgstr "<ahelp hid=\".\">Apre la barra degli strumenti Forme base, con cui si possono inserire immagini nel documento.</ahelp>"
#: basicshapes.xhp
msgctxt ""
@@ -18542,7 +18542,7 @@ msgctxt ""
"par_idN10591\n"
"help.text"
msgid "<ahelp hid=\".\">Click an icon on the Basic Shapes toolbar, and then drag in the document to draw the shape.</ahelp>"
-msgstr "<ahelp hid=\".\">Fate clic su un'icona nella barra degli strumenti Forme base, poi trascinatela all'interno del documento per creare la forma.</ahelp>"
+msgstr "<ahelp hid=\".\">Fare clic su un'icona nella barra degli strumenti Forme base, poi trascinarla all'interno del documento per creare la forma.</ahelp>"
#: basicshapes.xhp
msgctxt ""
@@ -18574,7 +18574,7 @@ msgctxt ""
"par_idN1056A\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Block Arrows toolbar from which you can insert graphics into your document.</ahelp>"
-msgstr "<ahelp hid=\".\">Apre la barra degli strumenti Frecce blocchi, con cui potete inserire immagini nel documento.</ahelp>"
+msgstr "<ahelp hid=\".\">Apre la barra degli strumenti Frecce blocchi, con cui si possono inserire immagini nel documento.</ahelp>"
#: blockarrows.xhp
msgctxt ""
@@ -18582,7 +18582,7 @@ msgctxt ""
"par_idN1059A\n"
"help.text"
msgid "<ahelp hid=\".\">Click an icon from the Block Arrows toolbar, then drag in the document to draw the shape.</ahelp>"
-msgstr "<ahelp hid=\".\">Fate clic su un'icona nella barra degli strumenti Frecce blocchi, poi trascinatela all'interno del documento per creare la forma.</ahelp>"
+msgstr "<ahelp hid=\".\">Fare clic su un'icona nella barra degli strumenti Frecce blocchi, poi trascinarla all'interno del documento per creare la forma.</ahelp>"
#: blockarrows.xhp
msgctxt ""
@@ -18622,7 +18622,7 @@ msgctxt ""
"par_idN1056A\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Callouts toolbar from which you can insert graphics into your document.</ahelp>"
-msgstr "<ahelp hid=\".\">Apre la barra degli strumenti Legende, con cui potete inserire immagini nel documento.</ahelp>"
+msgstr "<ahelp hid=\".\">Apre la barra degli strumenti Legende, con cui si possono inserire immagini nel documento.</ahelp>"
#: callouts.xhp
msgctxt ""
@@ -18630,7 +18630,7 @@ msgctxt ""
"par_idN10594\n"
"help.text"
msgid "<ahelp hid=\".\">Click an icon from the Callouts toolbar, then drag in the document to draw the shape.</ahelp>"
-msgstr "<ahelp hid=\".\">Fate clic su un'icona nella barra degli strumenti Legende, poi trascinatela all'interno del documento per creare la forma.</ahelp>"
+msgstr "<ahelp hid=\".\">Fare clic su un'icona nella barra degli strumenti Legende, poi trascinarla all'interno del documento per creare la forma.</ahelp>"
#: callouts.xhp
msgctxt ""
@@ -18694,7 +18694,7 @@ msgctxt ""
"par_idN10567\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Flowchart toolbar from which you can insert graphics into your document.</ahelp>"
-msgstr "<ahelp hid=\".\">Apre la barra degli strumenti Diagrammi di flusso, con cui potete inserire immagini nel documento.</ahelp>"
+msgstr "<ahelp hid=\".\">Apre la barra degli strumenti Diagrammi di flusso, con cui si possono inserire immagini nel documento.</ahelp>"
#: flowcharts.xhp
msgctxt ""
@@ -18702,7 +18702,7 @@ msgctxt ""
"par_idN10597\n"
"help.text"
msgid "<ahelp hid=\".\">Click an icon from the Flowchart toolbar, then drag in the document to draw the shape.</ahelp>"
-msgstr "<ahelp hid=\".\">Fate clic su un'icona nella barra degli strumenti Diagrammi di flusso, poi trascinatela all'interno del documento per creare la forma.</ahelp>"
+msgstr "<ahelp hid=\".\">Fare clic su un'icona nella barra degli strumenti Diagrammi di flusso, poi trascinarla all'interno del documento per creare la forma.</ahelp>"
#: fontwork.xhp
msgctxt ""
@@ -18726,7 +18726,7 @@ msgctxt ""
"par_idN10567\n"
"help.text"
msgid "<ahelp hid=\".\">The icon opens the Fontwork Gallery from which you can insert graphical text art into your document.</ahelp>"
-msgstr "<ahelp hid=\".\">L'icona apre la Galleria fontwork, da cui potete inserire oggetti di testo in forma grafica nel documento.</ahelp>"
+msgstr "<ahelp hid=\".\">L'icona apre la Galleria fontwork, da cui si possono inserire oggetti di testo in forma grafica nel documento.</ahelp>"
#: fontwork.xhp
msgctxt ""
@@ -18742,7 +18742,7 @@ msgctxt ""
"par_idN10595\n"
"help.text"
msgid "<ahelp hid=\".\">The Fontwork Gallery displays previews of Fontwork objects. To insert an object into your document, select the object, and then click OK.</ahelp>"
-msgstr "<ahelp hid=\".\">La Galleria fontwork mostra un'anteprima degli oggetti fontwork disponibili. Per inserire un oggetto nel documento, selezionatelo e fate clic su OK.</ahelp>"
+msgstr "<ahelp hid=\".\">La Galleria fontwork mostra un'anteprima degli oggetti fontwork disponibili. Per inserire un oggetto nel documento, selezionarlo e fare clic su OK.</ahelp>"
#: fontwork.xhp
msgctxt ""
@@ -18838,7 +18838,7 @@ msgctxt ""
"par_idN1057A\n"
"help.text"
msgid "<ahelp hid=\".\">First select some text or an object, then click this icon. Then click on or drag across other text or click an object to apply the same formatting.</ahelp>"
-msgstr "<ahelp hid=\".\">Prima selezionate del testo o un oggetto, quindi fate clic su questa icona. Fate poi clic su un'altra porzione di testo o trascinatevi sopra il cursore per applicare la stessa formattazione.</ahelp>"
+msgstr "<ahelp hid=\".\">Prima selezionare del testo o un oggetto, quindi fare clic su questa icona. Fare poi clic su un'altra porzione di testo o trascinarvi sopra il cursore per applicare la stessa formattazione.</ahelp>"
#: paintbrush.xhp
msgctxt ""
@@ -18974,7 +18974,7 @@ msgctxt ""
"par_idN1056A\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Stars and Banners toolbar from which you can insert graphics into your document.</ahelp>"
-msgstr "<ahelp hid=\".\">Apre la barra degli strumenti Stelle e striscioni, con cui potete inserire immagini nel documento.</ahelp>"
+msgstr "<ahelp hid=\".\">Apre la barra degli strumenti Stelle e striscioni, con cui si possono inserire immagini nel documento.</ahelp>"
#: stars.xhp
msgctxt ""
@@ -18982,7 +18982,7 @@ msgctxt ""
"par_idN10594\n"
"help.text"
msgid "<ahelp hid=\".\">Click an icon on the Stars and Banners toolbar, and then drag in the document to draw the shape.</ahelp>"
-msgstr "<ahelp hid=\".\">Fate clic su un'icona nella barra degli strumenti Stelle e striscioni, poi trascinatela all'interno del documento per creare la forma.</ahelp>"
+msgstr "<ahelp hid=\".\">Fare clic su un'icona nella barra degli strumenti Stelle e striscioni, poi trascinarla all'interno del documento per creare la forma.</ahelp>"
#: stars.xhp
msgctxt ""
@@ -19014,7 +19014,7 @@ msgctxt ""
"par_idN1056A\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Symbol Shapes toolbar from which you can insert graphics into your document.</ahelp>"
-msgstr "<ahelp hid=\".\">Apre la barra degli strumenti Forme simboli, con cui potete inserire immagini nel documento.</ahelp>"
+msgstr "<ahelp hid=\".\">Apre la barra degli strumenti Forme simboli, con cui si possono inserire immagini nel documento.</ahelp>"
#: symbolshapes.xhp
msgctxt ""
@@ -19022,7 +19022,7 @@ msgctxt ""
"par_idN105EB\n"
"help.text"
msgid "<ahelp hid=\".\">Click an icon on the Symbol Shapes toolbar, and then drag in the document to draw the shape.</ahelp>"
-msgstr "<ahelp hid=\".\">Fate clic su un'icona nella barra degli strumenti Forme simboli, poi trascinatela all'interno del documento per creare la forma.</ahelp>"
+msgstr "<ahelp hid=\".\">Fare clic su un'icona nella barra degli strumenti Forme simboli, poi trascinarla all'interno del documento per creare la forma.</ahelp>"
#: symbolshapes.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/autopi.po b/source/it/helpcontent2/source/text/shared/autopi.po
index d19278ee155..04ebc22ba63 100644
--- a/source/it/helpcontent2/source/text/shared/autopi.po
+++ b/source/it/helpcontent2/source/text/shared/autopi.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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2016-01-24 19:44+0000\n"
-"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
+"PO-Revision-Date: 2016-03-04 01:55+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1453664663.000000\n"
+"X-POOTLE-MTIME: 1457056503.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "<ahelp hid=\".\">Specify whether you want to create a business or personal letter template.</ahelp>"
-msgstr "<ahelp hid=\".\">Indicate qui se desiderate creare il modello per una lettera privata o commerciale.</ahelp>"
+msgstr "<ahelp hid=\".\">Indicare qui se si vuole creare il modello per una lettera privata o commerciale.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -768,7 +768,7 @@ msgctxt ""
"par_idN105DE\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies your address information.</ahelp>"
-msgstr "<ahelp hid=\".\">Questi campi permettono di specificare i dati del vostro indirizzo.</ahelp>"
+msgstr "<ahelp hid=\".\">Questi campi permettono di specificare i dati del proprio indirizzo.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -963,7 +963,7 @@ msgctxt ""
"par_idN10600\n"
"help.text"
msgid "<ahelp hid=\".\">Select to suppress the footer on the first page.</ahelp>"
-msgstr "<ahelp hid=\".\">Selezionate questa opzione per sopprimere il piè di pagina nella prima pagina.</ahelp>"
+msgstr "<ahelp hid=\".\">Selezionare questa opzione per sopprimere il piè di pagina nella prima pagina.</ahelp>"
#: 01010500.xhp
msgctxt ""
@@ -1161,7 +1161,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "<ahelp hid=\".\">Click the<emph> Back </emph>button to view the settings chosen on the previous page. The current settings will not be modified or deleted if you click this button.<emph> Back </emph>will be active from the second page onwards.</ahelp>"
-msgstr "<ahelp hid=\".\">Facendo clic sul pulsante <emph>Indietro</emph> potete visualizzare le impostazioni della pagina precedente. La scelta di questo pulsante non comporta la modifica né l'eliminazione delle impostazioni attuali. Il pulsante<emph>Indietro</emph> è disponibile solo dalla seconda pagina in avanti.</ahelp>"
+msgstr "<ahelp hid=\".\">Facendo clic sul pulsante <emph>Indietro</emph> si possono visualizzare le impostazioni della pagina precedente. La scelta di questo pulsante non comporta la modifica né l'eliminazione delle impostazioni attuali. Il pulsante<emph>Indietro</emph> è disponibile solo dalla seconda pagina in avanti.</ahelp>"
#: 01020000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/optionen.po b/source/it/helpcontent2/source/text/shared/optionen.po
index 23d29255bdd..0f2d30a7bfc 100644
--- a/source/it/helpcontent2/source/text/shared/optionen.po
+++ b/source/it/helpcontent2/source/text/shared/optionen.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-11-16 19:02+0100\n"
-"PO-Revision-Date: 2016-02-23 18:56+0000\n"
+"PO-Revision-Date: 2016-03-12 11:02+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456253807.000000\n"
+"X-POOTLE-MTIME: 1457780520.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -5953,7 +5953,7 @@ msgctxt ""
"39\n"
"help.text"
msgid "<ahelp hid=\".\">If you mark this field, the print layout of the current document (for example, table of contents with justified page numbers and dot leaders) is exported as well.</ahelp> It can be read by $[officename], Mozilla Firefox, and MS Internet Explorer."
-msgstr "<ahelp hid=\".\">Se contrassegnate questo campo, viene esportato anche il layout di stampa del documento corrente (per esempio, l'indice generale con i numeri di pagina giustificati e i punti davanti).</ahelp> Esso può essere letto da $[officename], Mozilla Firefox e MS Internet Explorer."
+msgstr "<ahelp hid=\".\">Se si contrassegna questo campo, viene esportato anche il layout di stampa del documento corrente (per esempio, l'indice generale con i numeri di pagina giustificati e i punti davanti).</ahelp> Esso può essere letto da $[officename], Mozilla Firefox e MS Internet Explorer."
#: 01030500.xhp
msgctxt ""
@@ -6814,7 +6814,7 @@ msgctxt ""
"par_id2021546\n"
"help.text"
msgid "<ahelp hid=\".\">Enable this option to print text that is marked as hidden.</ahelp> The following hidden text is printed: text that is formatted as hidden by <link href=\"text/shared/01/05020200.xhp\">Format - Character - Font Effects - Hidden</link>, and the text fields <link href=\"text/swriter/01/04090003.xhp\">Hidden text and Hidden paragraphs</link>."
-msgstr "<ahelp hid=\".\">Abilitate questa opzione per stampare il testo marcato come nascosto.</ahelp> I seguenti tipi di testo nascosto verranno stampati: testo che è formattato come nascosto per mezzo di <link href=\"text/shared/01/05020200.xhp\">Formato - Carattere - Effetti - Nascosto</link> e i campi testo <link href=\"text/swriter/01/04090003.xhp\">Testo nascosto e Paragrafo nascosto</link>."
+msgstr "<ahelp hid=\".\">Abilitare questa opzione per stampare il testo marcato come nascosto.</ahelp> I seguenti tipi di testo nascosto verranno stampati: testo che è formattato come nascosto per mezzo di <link href=\"text/shared/01/05020200.xhp\">Formato - Carattere - Effetti - Nascosto</link> e i campi testo <link href=\"text/swriter/01/04090003.xhp\">Testo nascosto e Paragrafo nascosto</link>."
#: 01040400.xhp
msgctxt ""
@@ -6830,7 +6830,7 @@ msgctxt ""
"par_id7242042\n"
"help.text"
msgid "<ahelp hid=\".\">Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout.</ahelp><link href=\"text/swriter/01/04090003.xhp\">Text placeholders</link> are fields."
-msgstr "<ahelp hid=\".\">Abilitate questa opzione per stampare i segnaposto testo. Disabilitate questa opzione per lasciare i segnaposto testo vuoti nello stampato.</ahelp> I <link href=\"text/swriter/01/04090003.xhp\">segnaposto testo</link> sono campi di controllo."
+msgstr "<ahelp hid=\".\">Abilitare questa opzione per stampare i segnaposto testo. Disabilitare questa opzione per lasciare i segnaposto testo vuoti nello stampato.</ahelp> I <link href=\"text/swriter/01/04090003.xhp\">segnaposto testo</link> sono campi di controllo."
#: 01040400.xhp
msgctxt ""
@@ -6927,7 +6927,7 @@ msgctxt ""
"par_id7894222\n"
"help.text"
msgid "<ahelp hid=\".\">Check to print the pages of the brochure in the correct order for a right-to-left script.</ahelp>"
-msgstr "<ahelp hid=\".\">Selezionate per stampare le pagine di un opuscolo nell'ordine corretto per una scrittura da destra a sinistra.</ahelp>"
+msgstr "<ahelp hid=\".\">Selezionare per stampare le pagine di un opuscolo nell'ordine corretto per una scrittura da destra a sinistra.</ahelp>"
#: 01040400.xhp
msgctxt ""
@@ -8301,7 +8301,7 @@ msgctxt ""
"par_id3150419\n"
"help.text"
msgid "<ahelp hid=\".\">When this setting is enabled, the measurement units of indents and spacing on <emph>Format - Paragraph - Indents & Spacing</emph> tab will be character (ch) and line.</ahelp>"
-msgstr "<ahelp hid=\".\">Se abilitate questa opzione, le unità di misura dei rientri e la spaziatura nella scheda <emph>Formato - Paragrafo - Rientri e spaziatura</emph> saranno il carattere (ch) e la riga.</ahelp>"
+msgstr "<ahelp hid=\".\">Se si abilita questa opzione, le unità di misura dei rientri e la spaziatura nella scheda <emph>Formato - Paragrafo - Rientri e spaziatura</emph> saranno il carattere (ch) e la riga.</ahelp>"
#: 01040900.xhp
msgctxt ""
@@ -8317,7 +8317,7 @@ msgctxt ""
"par_id3150418\n"
"help.text"
msgid "<ahelp hid=\".\">When this setting is enabled, the text grid will look like square page.</ahelp> Square page is a kind of page layout which is used to train students to write articles in China and Japan."
-msgstr "<ahelp hid=\".\">Se abilitate questa opzione, la griglia di testo apparirà come una pagina quadrata.</ahelp> La pagina quadrata è un tipo di layout pagina usata in Cina e Giappone per allenare gli studenti nella stesura di articoli."
+msgstr "<ahelp hid=\".\">Se si abilita questa opzione, la griglia di testo apparirà come una pagina quadrata.</ahelp> La pagina quadrata è un tipo di layout di pagina usato in Cina e Giappone per allenare gli studenti nella stesura di articoli."
#: 01040900.xhp
msgctxt ""
@@ -8786,7 +8786,7 @@ msgctxt ""
"par_idN1058C\n"
"help.text"
msgid "<ahelp hid=\".\">Select the object type for which the AutoCaption settings are to be valid.</ahelp>"
-msgstr "<ahelp hid=\".\">Selezionate il tipo di oggetto a cui devono essere applicate le impostazioni per la didascalia automatica.</ahelp>"
+msgstr "<ahelp hid=\".\">Selezionare il tipo di oggetto a cui devono essere applicate le impostazioni per la didascalia automatica.</ahelp>"
#: 01041100.xhp
msgctxt ""
@@ -9146,7 +9146,7 @@ msgctxt ""
"16\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the number of intermediate spaces between grid points on the X-axis.</ahelp>"
-msgstr "<ahelp hid=\".\">Specifica il numero di spazi intermedi fra i punti della griglia sull'asse X.</ahelp>"
+msgstr "<ahelp hid=\".\">Specificare il numero di spazi intermedi fra i punti della griglia sull'asse X.</ahelp>"
#: 01050100.xhp
msgctxt ""
@@ -9164,7 +9164,7 @@ msgctxt ""
"20\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the number of intermediate spaces between grid points on the Y-axis.</ahelp>"
-msgstr "<ahelp hid=\".\">Specifica il numero di spazi intermedi fra i punti della griglia sull'asse Y.</ahelp>"
+msgstr "<ahelp hid=\".\">Specificare il numero di spazi intermedi fra i punti della griglia sull'asse Y.</ahelp>"
#: 01050100.xhp
msgctxt ""
@@ -10819,7 +10819,7 @@ msgctxt ""
"par_id315343818\n"
"help.text"
msgid "<ahelp hid=\".\">You can specify the maximum number of decimal places that are shown by default for cells with General number format. If not enabled, cells with General number format show as many decimal places as the column width allows.</ahelp>"
-msgstr "<ahelp hid=\".\">Potete specificare il numero massimo di posizioni decimali da mostrare, per impostazione predefinita, nelle celle con formato di numero standard. Se l'opzione non è attivata, le celle con formato di numero standard mostrano tante posizioni decimali quante ne consente la larghezza della colonna.</ahelp>"
+msgstr "<ahelp hid=\".\">È possibile specificare il numero massimo di posizioni decimali da mostrare, per impostazione predefinita, nelle celle con formato di numero standard. Se l'opzione non è attivata, le celle con formato di numero standard mostrano tante posizioni decimali quante ne consente la larghezza della colonna.</ahelp>"
#: 01060500.xhp
msgctxt ""
@@ -12426,7 +12426,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "<variable id=\"schnellbearb\"><ahelp hid=\".\">If on, you can edit text immediately after clicking a text object. If off, you must double-click to edit text.</ahelp></variable>"
-msgstr "<variable id=\"schnellbearb\"><ahelp hid=\".\">Vi permette di modificare il testo immediatamente dopo aver fatto clic su un oggetto di testo. Se quest'opzione è disattivata, è necessario fare doppio clic per modificare il testo.</ahelp></variable>"
+msgstr "<variable id=\"schnellbearb\"><ahelp hid=\".\">Permette di modificare il testo immediatamente dopo aver fatto clic su un oggetto di testo. Se quest'opzione è disattivata, è necessario fare doppio clic per modificare il testo.</ahelp></variable>"
#: 01070500.xhp
msgctxt ""
@@ -13486,7 +13486,7 @@ msgctxt ""
"par_idN10685\n"
"help.text"
msgid "<ahelp hid=\".\">Select the language used for the user interface, for example menus, dialogs, help files. You must have installed at least one additional language pack or a multi-language version of %PRODUCTNAME.</ahelp>"
-msgstr "<ahelp hid=\".\">Selezionate la lingua utilizzata per l'interfaccia utente, ad esempio i menu, i dialoghi, i file della guida. Deve essere installato almeno un pacchetto di lingua aggiuntivo o una versione multilingue di %PRODUCTNAME.</ahelp>"
+msgstr "<ahelp hid=\".\">Selezionare la lingua utilizzata per l'interfaccia utente, ad esempio i menu, i dialoghi, i file della guida. Deve essere installato almeno un pacchetto di lingua aggiuntivo o una versione multilingue di %PRODUCTNAME.</ahelp>"
#: 01140000.xhp
msgctxt ""
@@ -15732,7 +15732,7 @@ msgctxt ""
"par_idN105C1\n"
"help.text"
msgid "<ahelp hid=\".\">Trusted sources can be set on the Trusted Sources tab page. Signed macros from a trusted source are allowed to run. In addition, any macro from a trusted file location is allowed to run. All other macros require your confirmation.</ahelp>"
-msgstr "<ahelp hid=\".\">Le fonti considerate attendibili possono essere impostate nella scheda Fonti attendibili. Le macro firmate provenienti da una fonte attendibile sono abilitate all'esecuzione. Sono inoltre abilitate le macro residenti in una posizione considerata attendibile. Tutte le altre macro richiedono una vostra conferma.</ahelp>"
+msgstr "<ahelp hid=\".\">Le fonti considerate attendibili possono essere impostate nella scheda Fonti attendibili. Le macro firmate provenienti da una fonte attendibile sono abilitate all'esecuzione. Sono inoltre abilitate le macro residenti in una posizione considerata attendibile. Tutte le altre macro richiedono la conferma dell'utente.</ahelp>"
#: macrosecurity_sl.xhp
msgctxt ""
@@ -15860,7 +15860,7 @@ msgctxt ""
"par_idN105B8\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a folder selection dialog. Select a folder from which all macros are allowed to execute.</ahelp>"
-msgstr "<ahelp hid=\".\">Apre una finestra di dialogo per la selezione delle cartelle. Selezionate una cartella le cui macro siano tutte abilitate all'esecuzione.</ahelp>"
+msgstr "<ahelp hid=\".\">Apre una finestra di dialogo per la selezione delle cartelle. Selezionare una cartella le cui macro siano tutte abilitate all'esecuzione.</ahelp>"
#: macrosecurity_ts.xhp
msgctxt ""
@@ -15932,7 +15932,7 @@ msgctxt ""
"par_idN1058E\n"
"help.text"
msgid "<ahelp hid=\".\">Enter your name.</ahelp>"
-msgstr "<ahelp hid=\".\">Digitate il vostro nome.</ahelp>"
+msgstr "<ahelp hid=\".\">Digitare il proprio nome.</ahelp>"
#: mailmerge.xhp
msgctxt ""
@@ -15948,7 +15948,7 @@ msgctxt ""
"par_idN105A9\n"
"help.text"
msgid "<ahelp hid=\".\">Enter your e-mail address for replies.</ahelp>"
-msgstr "<ahelp hid=\".\">Inserite l'indirizzo di posta elettronica a cui volete ricevere le risposte.</ahelp>"
+msgstr "<ahelp hid=\".\">Inserire l'indirizzo di posta elettronica a cui si vogliono ricevere le risposte.</ahelp>"
#: mailmerge.xhp
msgctxt ""
@@ -15980,7 +15980,7 @@ msgctxt ""
"par_idN105DF\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the address to use for e-mail replies.</ahelp>"
-msgstr "<ahelp hid=\".\">Inserite l'indirizzo da utilizzare per i messaggi di risposta.</ahelp>"
+msgstr "<ahelp hid=\".\">Inserire l'indirizzo da utilizzare per i messaggi di risposta.</ahelp>"
#: mailmerge.xhp
msgctxt ""
@@ -16012,7 +16012,7 @@ msgctxt ""
"par_idN10601\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the SMTP server name.</ahelp>"
-msgstr "<ahelp hid=\".\">Inserite il nome del server SMTP.</ahelp>"
+msgstr "<ahelp hid=\".\">Inserire il nome del server SMTP.</ahelp>"
#: mailmerge.xhp
msgctxt ""
@@ -16028,7 +16028,7 @@ msgctxt ""
"par_idN1061C\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the SMTP port.</ahelp>"
-msgstr "<ahelp hid=\".\">Inserite la porta SMTP.</ahelp>"
+msgstr "<ahelp hid=\".\">Inserire la porta SMTP.</ahelp>"
#: mailmerge.xhp
msgctxt ""
@@ -16044,7 +16044,7 @@ msgctxt ""
"par_idN10637\n"
"help.text"
msgid "<ahelp hid=\".\">When available, uses a secure connection to send e-mails.</ahelp>"
-msgstr "<ahelp hid=\".\">Se possibile, usa una connessione sicura per l'invio della posta elettronica.</ahelp>"
+msgstr "<ahelp hid=\".\">Se disponibile, usa una connessione sicura per l'invio della posta elettronica.</ahelp>"
#: mailmerge.xhp
msgctxt ""
@@ -16060,7 +16060,7 @@ msgctxt ""
"par_idN10652\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/optionen/serverauthentication.xhp\">Server Authentication</link> dialog where you can specify the server authentication settings for secure e-mail.</ahelp>"
-msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/shared/optionen/serverauthentication.xhp\">Autenticazione del server</link>, in cui potete specificare le impostazioni di autenticazione del server per la protezione della posta elettronica.</ahelp>"
+msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/shared/optionen/serverauthentication.xhp\">Autenticazione del server</link>, in cui si può specificare le impostazioni di autenticazione del server per la protezione della posta elettronica.</ahelp>"
#: mailmerge.xhp
msgctxt ""
@@ -16076,7 +16076,7 @@ msgctxt ""
"par_idN1067B\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/optionen/testaccount.xhp\">Test Account Settings</link> dialog to test the current settings.</ahelp>"
-msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/shared/optionen/testaccount.xhp\">Prova impostazioni dell'account</link>, con cui potete provare le impostazioni attuali.</ahelp>"
+msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/shared/optionen/testaccount.xhp\">Prova impostazioni dell'account</link>, con cui si possono provare le impostazioni attuali.</ahelp>"
#: online_update.xhp
msgctxt ""
@@ -16124,7 +16124,7 @@ msgctxt ""
"par_id7523728\n"
"help.text"
msgid "<ahelp hid=\".\">Mark to check for online updates periodically, then select the time interval how often %PRODUCTNAME will check for online updates.</ahelp> %PRODUCTNAME will check once a day, week, or month, as soon as a working Internet connection is detected. If you connect to the Internet by a proxy server, set the proxy on <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet - Proxy</item>."
-msgstr "<ahelp hid=\".\">Selezionate questa casella per controllare periodicamente gli aggiornamenti in linea, quindi scegliete ogni quanto %PRODUCTNAME deve effettuare il controllo.</ahelp> %PRODUCTNAME controllerà una volta al giorno, alla settimana o al mese fino a quando troverà una connessione Internet attiva. Se vi connettete a Internet tramite un server proxy, impostate il proxy in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferenze</caseinline><defaultinline>Strumenti - Opzioni</defaultinline></switchinline> - Internet - Proxy</item>."
+msgstr "<ahelp hid=\".\">Selezionare questa casella per controllare periodicamente gli aggiornamenti in linea, quindi scegliere ogni quanto %PRODUCTNAME deve effettuare il controllo.</ahelp> %PRODUCTNAME controllerà una volta al giorno, alla settimana o al mese fino a quando troverà una connessione Internet attiva. Se vi connettete a Internet tramite un server proxy, impostate il proxy in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferenze</caseinline><defaultinline>Strumenti - Opzioni</defaultinline></switchinline> - Internet - Proxy</item>."
#: online_update.xhp
msgctxt ""
@@ -16228,7 +16228,7 @@ msgctxt ""
"par_id7870113\n"
"help.text"
msgid "<ahelp hid=\".\">Select to download an available online update file automatically to the specified folder.</ahelp>"
-msgstr "<ahelp hid=\".\">Scegliete di scaricare automaticamente un aggiornamento disponibile in linea nella cartella indicata.</ahelp>"
+msgstr "<ahelp hid=\".\">Selezionare per scaricare automaticamente un aggiornamento disponibile in linea nella cartella indicata.</ahelp>"
#: online_update.xhp
msgctxt ""
@@ -16260,7 +16260,7 @@ msgctxt ""
"par_id2143925\n"
"help.text"
msgid "<ahelp hid=\".\">Click to show a dialog box where you can select another folder.</ahelp>"
-msgstr "<ahelp hid=\".\">Fate clic per mostrare una finestra di dialogo in cui potete selezionare un'altra cartella.</ahelp>"
+msgstr "<ahelp hid=\".\">Fare clic per mostrare una finestra di dialogo in cui è possibile selezionare un'altra cartella.</ahelp>"
#: opencl.xhp
msgctxt ""
@@ -16532,7 +16532,7 @@ msgctxt ""
"par_idN105D2\n"
"help.text"
msgid "<ahelp hid=\".\">Select if your SMTP server requires a user name and password.</ahelp>"
-msgstr "<ahelp hid=\".\">Selezionate questa opzione se il server SMTP richiede un nome utente e una password.</ahelp>"
+msgstr "<ahelp hid=\".\">Selezionare questa opzione se il server SMTP richiede un nome utente e una password.</ahelp>"
#: serverauthentication.xhp
msgctxt ""
@@ -16548,7 +16548,7 @@ msgctxt ""
"par_idN105EA\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the user name for the SMTP server.</ahelp>"
-msgstr "<ahelp hid=\".\">Inserite il nome utente per il server SMTP.</ahelp>"
+msgstr "<ahelp hid=\".\">Inserire il nome utente per il server SMTP.</ahelp>"
#: serverauthentication.xhp
msgctxt ""
@@ -16564,7 +16564,7 @@ msgctxt ""
"par_idN10602\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the password for the user name.</ahelp>"
-msgstr "<ahelp hid=\".\">Inserite la password per il nome utente.</ahelp>"
+msgstr "<ahelp hid=\".\">Inserire la password per il nome utente.</ahelp>"
#: serverauthentication.xhp
msgctxt ""
@@ -16580,7 +16580,7 @@ msgctxt ""
"par_idN1061A\n"
"help.text"
msgid "<ahelp hid=\".\">Select if you are required to first read your e-mail before you can send e-mail.</ahelp> This method is also called \"SMTP after POP3\"."
-msgstr "<ahelp hid=\".\">Selezionate questa opzione per rendere necessaria la lettura dei messaggi prima di poterne inviare.</ahelp> Questo metodo è detto anche \"SMTP dopo POP3\"."
+msgstr "<ahelp hid=\".\">Selezionare questa opzione per rendere necessaria la lettura dei messaggi prima di poterne inviare.</ahelp> Questo metodo è detto anche \"SMTP dopo POP3\"."
#: serverauthentication.xhp
msgctxt ""
@@ -16596,7 +16596,7 @@ msgctxt ""
"par_idN1062C\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the server name of your POP 3 or IMAP mail server.</ahelp>"
-msgstr "<ahelp hid=\".\">Inserite il nome del server di posta POP 3 o IMAP.</ahelp>"
+msgstr "<ahelp hid=\".\">Inserire il nome del server di posta POP3 o IMAP.</ahelp>"
#: serverauthentication.xhp
msgctxt ""
@@ -16612,7 +16612,7 @@ msgctxt ""
"par_idN10640\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the port on the POP3 or IMAP server.</ahelp>"
-msgstr "<ahelp hid=\".\">Inserite la porta del server POP3 o IMAP.</ahelp>"
+msgstr "<ahelp hid=\".\">Inserire la porta del server POP3 o IMAP.</ahelp>"
#: serverauthentication.xhp
msgctxt ""
@@ -16628,7 +16628,7 @@ msgctxt ""
"par_idN10658\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that the incoming mail server uses POP 3.</ahelp>"
-msgstr "<ahelp hid=\".\">Specifica l'uso di POP 3 sul server di ricezione della posta.</ahelp>"
+msgstr "<ahelp hid=\".\">Specifica l'uso di POP3 sul server di ricezione della posta.</ahelp>"
#: serverauthentication.xhp
msgctxt ""
@@ -16660,7 +16660,7 @@ msgctxt ""
"par_idN1067E\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the user name for the IMAP server.</ahelp>"
-msgstr "<ahelp hid=\".\">Inserite il nome utente per il server IMAP.</ahelp>"
+msgstr "<ahelp hid=\".\">Inserire il nome utente per il server IMAP.</ahelp>"
#: serverauthentication.xhp
msgctxt ""
@@ -16676,7 +16676,7 @@ msgctxt ""
"par_idN10696\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the password.</ahelp>"
-msgstr "<ahelp hid=\".\">Inserite la password.</ahelp>"
+msgstr "<ahelp hid=\".\">Inserire la password.</ahelp>"
#: testaccount.xhp
msgctxt ""
@@ -16748,7 +16748,7 @@ msgctxt ""
"par_idN105AE\n"
"help.text"
msgid "<ahelp hid=\".\">Click the <emph>Stop</emph> button to stop a test session manually.</ahelp>"
-msgstr "<ahelp hid=\".\">Fate clic su <emph>Stop</emph> per interrompere manualmente una sessione di prova.</ahelp>"
+msgstr "<ahelp hid=\".\">Fare clic su <emph>Stop</emph> per interrompere manualmente una sessione di prova.</ahelp>"
#: viewcertificate.xhp
msgctxt ""
@@ -16828,7 +16828,7 @@ msgctxt ""
"par_idN10562\n"
"help.text"
msgid "<ahelp hid=\".\">The Details page of the <link href=\"text/shared/optionen/viewcertificate.xhp\">View Certificate</link> dialog displays detailed information about the certificate.</ahelp>"
-msgstr "<ahelp hid=\".\">La pagina Dettagli della finestra di dialogo <link href=\"text/shared/optionen/viewcertificate.xhp\">Visualizza certificato</link> mostra informazioni dettagliate sul certificato.</ahelp>"
+msgstr "<ahelp hid=\".\">La pagina \"Dettagli\" della finestra di dialogo <link href=\"text/shared/optionen/viewcertificate.xhp\">Visualizza certificato</link> mostra informazioni dettagliate sul certificato.</ahelp>"
#: viewcertificate_d.xhp
msgctxt ""
@@ -16836,7 +16836,7 @@ msgctxt ""
"par_idN105DB\n"
"help.text"
msgid "<ahelp hid=\".\">Use the value list box to view values and copy them to the clipboard.</ahelp>"
-msgstr "<ahelp hid=\".\">Usate la casella di riepilogo valore per visualizzare i valori e copiarli negli appunti.</ahelp>"
+msgstr "<ahelp hid=\".\">Usare la casella di riepilogo valore per visualizzare i valori e copiarli negli appunti.</ahelp>"
#: viewcertificate_g.xhp
msgctxt ""
@@ -16860,4 +16860,4 @@ msgctxt ""
"par_idN1056B\n"
"help.text"
msgid "<ahelp hid=\".\">The General page of the <link href=\"text/shared/optionen/viewcertificate.xhp\">View Certificate</link> dialog displays basic information about the certificate.</ahelp>"
-msgstr "<ahelp hid=\".\">La pagina Generale della finestra di dialogo <link href=\"text/shared/optionen/viewcertificate.xhp\">Visualizza certificato</link> mostra informazioni di base sul certificato.</ahelp>"
+msgstr "<ahelp hid=\".\">La pagina \"Generale\" della finestra di dialogo <link href=\"text/shared/optionen/viewcertificate.xhp\">Visualizza certificato</link> mostra informazioni di base sul certificato.</ahelp>"
diff --git a/source/it/helpcontent2/source/text/simpress.po b/source/it/helpcontent2/source/text/simpress.po
index bae2f64b98f..49db442a30d 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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-01-21 20:44+0000\n"
+"PO-Revision-Date: 2016-03-12 11:05+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1453409062.000000\n"
+"X-POOTLE-MTIME: 1457780716.000000\n"
#: main0000.xhp
msgctxt ""
@@ -458,7 +458,7 @@ msgctxt ""
"par_id3145801\n"
"help.text"
msgid "<ahelp hid=\".\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
-msgstr "<ahelp hid=\".\">Contiene comandi con cui potete formattare il layout e il contenuto di un documento.</ahelp>"
+msgstr "<ahelp hid=\".\">Contiene comandi con cui formattare il layout e il contenuto di un documento.</ahelp>"
#: main0105.xhp
msgctxt ""
@@ -562,7 +562,7 @@ msgctxt ""
"par_id3155064\n"
"help.text"
msgid "<ahelp hid=\".\">Contains spelling tools, a gallery of object art that you can add to your document, as well as tools for configuring menus, and setting program preferences.</ahelp>"
-msgstr "<ahelp hid=\".\">Contiene strumenti di controllo ortografico, una galleria di oggetti decorativi che potete aggiungere al documento e strumenti per la configurazione dei menu e l'impostazione delle preferenze per il programma.</ahelp>"
+msgstr "<ahelp hid=\".\">Contiene strumenti di controllo ortografico, una galleria di oggetti decorativi che si possono aggiungere al documento e strumenti per la configurazione dei menu e l'impostazione delle preferenze per il programma.</ahelp>"
#: main0106.xhp
msgctxt ""
@@ -1145,7 +1145,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Drawing</emph> bar contains frequently used editing tools. Click the arrow next to an icon to open a toolbar that contains additional commands.</ahelp>"
-msgstr "<ahelp hid=\".\">La barra <emph>Disegno</emph> contiene gli strumenti di modifica di uso frequente. Fate clic sulla freccia vicina alle icone per aprire una barra degli strumenti contenente ulteriori comandi.</ahelp>"
+msgstr "<ahelp hid=\".\">La barra <emph>Disegno</emph> contiene gli strumenti di modifica di uso frequente. Fare clic sulla freccia vicino alle icone per aprire una barra degli strumenti contenente ulteriori comandi.</ahelp>"
#: main0210.xhp
msgctxt ""
@@ -1380,7 +1380,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".\">In<emph> Outline View</emph>, the Outline bar contains frequently used editing tools.</ahelp> Click the arrow next to an icon to open a toolbar that contains additional commands."
-msgstr "<ahelp hid=\".\">Nella <emph>Vista struttura</emph>, la barra degli strumenti per struttura contiene gli strumenti di modifica di uso frequente.</ahelp> Fate clic sulla freccia vicina all'icona per aprire una barra degli strumenti contenente ulteriori comandi."
+msgstr "<ahelp hid=\".\">Nella <emph>Vista struttura</emph>, la barra degli strumenti per struttura contiene gli strumenti di modifica di uso frequente.</ahelp> Fate clic sulla freccia vicino all'icona per aprire una barra degli strumenti contenente ulteriori comandi."
#: main0211.xhp
msgctxt ""
@@ -1415,7 +1415,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".\">In<emph> Slide Sorter</emph> view, the <emph>Slide Sorter</emph> bar can be used.</ahelp>"
-msgstr "<ahelp hid=\".\">Nella vista <emph>Ordine diapositive</emph> potete utilizzare la barra <emph>Ordine diapositive</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">Nella vista <emph>Ordine diapositive</emph> si può utilizzare la barra <emph>Ordine diapositive</emph>.</ahelp>"
#: main0212.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/simpress/01.po b/source/it/helpcontent2/source/text/simpress/01.po
index dbe04fa008d..423b444adc4 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: 2015-11-16 19:02+0100\n"
-"PO-Revision-Date: 2016-02-25 12:37+0000\n"
+"PO-Revision-Date: 2016-03-12 17:26+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456403839.000000\n"
+"X-POOTLE-MTIME: 1457803597.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -824,7 +824,7 @@ msgctxt ""
"par_id9635914\n"
"help.text"
msgid "<ahelp hid=\".\">In the submenu you can choose to display a list of all shapes or only the named shapes. Use drag-and-drop in the list to reorder the shapes. When you set the focus to a slide and press the <item type=\"keycode\">Tab</item> key, the next shape in the defined order is selected.</ahelp>"
-msgstr "<ahelp hid=\".\">Nel sottomenu potete scegliere di mostrare un elenco di tutte le forme o solo quelle nominate. Utilizzate la tecnica trascina e rilascia nell'elenco per cambiare l'ordine delle forme. Quando il fuoco è su una diapositiva e premete <item type=\"keycode\">Tab</item>, viene selezionata la forma successiva nell'ordine definito.</ahelp>"
+msgstr "<ahelp hid=\".\">Nel sottomenu si può scegliere di mostrare un elenco di tutte le forme o solo quelle nominate. Utilizzare la tecnica trascina e rilascia nell'elenco per cambiare l'ordine delle forme. Quando il fuoco è su una diapositiva e si preme <item type=\"keycode\">Tab</item>, viene selezionata la forma successiva nell'ordine definito.</ahelp>"
#: 02110000.xhp
msgctxt ""
@@ -1880,7 +1880,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "<ahelp hid=\".\">Switches to slide master view, where you can add elements that you want to appear on all of the slides that use the same slide master.</ahelp>"
-msgstr "<ahelp hid=\".\">Passa alla vista schema diapositive, in cui potete aggiungere gli elementi da visualizzare in tutte le diapositive che utilizzano lo stesso schema.</ahelp>"
+msgstr "<ahelp hid=\".\">Passa alla vista schema diapositive, in cui è possibile aggiungere gli elementi da visualizzare in tutte le diapositive che utilizzano lo stesso schema.</ahelp>"
#: 03150100.xhp
msgctxt ""
@@ -1944,7 +1944,7 @@ msgctxt ""
"par_id3154491\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the notes master, where you can set the default formatting for notes.</ahelp>"
-msgstr "<ahelp hid=\".\">Visualizza lo schema per le note, in cui potete impostare la formattazione predefinita per le note a commento delle presentazioni.</ahelp>"
+msgstr "<ahelp hid=\".\">Visualizza lo schema per le note, in cui si può impostare la formattazione predefinita per le note a commento delle presentazioni.</ahelp>"
#: 03151000.xhp
msgctxt ""
@@ -5204,7 +5204,7 @@ msgctxt ""
"par_idN106AB\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the transition properties.</ahelp>"
-msgstr "<ahelp hid=\".\">Inserite le proprietà della transizione.</ahelp>"
+msgstr "<ahelp hid=\".\">Inserire le proprietà della transizione.</ahelp>"
#: 06040000.xhp
msgctxt ""
@@ -5256,7 +5256,7 @@ msgctxt ""
"par_idN10724\n"
"help.text"
msgid "<ahelp hid=\".\">Select to play the sound repeatedly until another sound starts.</ahelp>"
-msgstr "<ahelp hid=\".\">Selezionate questa opzione per riprodurre il suono ripetutamente finché non ne inizia un altro.</ahelp>"
+msgstr "<ahelp hid=\".\">Selezionare questa opzione per riprodurre il suono ripetutamente finché non ne inizia un altro.</ahelp>"
#: 06040000.xhp
msgctxt ""
@@ -5288,7 +5288,7 @@ msgctxt ""
"par_idN10744\n"
"help.text"
msgid "<ahelp hid=\".\">Select to advance to the next slide on a mouse click.</ahelp>"
-msgstr "<ahelp hid=\".\">Selezionate questa opzione per passare alla diapositiva successiva con un clic del mouse.</ahelp>"
+msgstr "<ahelp hid=\".\">Selezionare questa opzione per passare alla diapositiva successiva con un clic del mouse.</ahelp>"
#: 06040000.xhp
msgctxt ""
@@ -5304,7 +5304,7 @@ msgctxt ""
"par_idN10751\n"
"help.text"
msgid "<ahelp hid=\".\">Select to advance to the next slide after a number of seconds. Enter the seconds in the numerical field next to the spin button, or click the spin button.</ahelp>"
-msgstr "<ahelp hid=\".\">Selezionate questa opzione per avanzare alla diapositiva successiva dopo un certo numero di secondi. Inserite tale numero nel campo numerico accanto al pulsante di selezione, fate clic sul pulsante di selezione.</ahelp>"
+msgstr "<ahelp hid=\".\">Selezionare questa opzione per avanzare alla diapositiva successiva dopo un certo numero di secondi. Inserire tale numero nel campo numerico accanto al pulsante di selezione oppure fare clic sul pulsante di selezione.</ahelp>"
#: 06040000.xhp
msgctxt ""
@@ -5368,7 +5368,7 @@ msgctxt ""
"par_idN10785\n"
"help.text"
msgid "<ahelp hid=\".\">Select to see the slide transitions automatically in the document.</ahelp>"
-msgstr "<ahelp hid=\".\">Selezionate questa opzione per impostare il cambio automatico delle diapositive nel documento.</ahelp>"
+msgstr "<ahelp hid=\".\">Selezionare questa opzione per impostare il cambio automatico delle diapositive nel documento.</ahelp>"
#: 06050000.xhp
msgctxt ""
@@ -6010,7 +6010,7 @@ msgctxt ""
"par_idN107BC\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/simpress/01/animationeffect.xhp\">Custom Animation</link> dialog to add another animation effect for the selected object on the slide.</ahelp>"
-msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/simpress/01/animationeffect.xhp\">Animazione personalizzata</link>, in cui potete aggiungere un nuovo effetto di animazione per la voce selezionata nell'elenco di animazione.</ahelp>"
+msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/simpress/01/animationeffect.xhp\">Animazione personalizzata</link>, in cui si può aggiungere un nuovo effetto di animazione per l'oggetto selezionato nella diapositiva.</ahelp>"
#: 06060000.xhp
msgctxt ""
@@ -6026,7 +6026,7 @@ msgctxt ""
"par_idN107D1\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/simpress/01/animationeffect.xhp\">Custom Animation</link> dialog to change the animation effect for the selected entry on the animation list.</ahelp>"
-msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/simpress/01/animationeffect.xhp\">Animazione personalizzata</link>, in cui potete modificare l'effetto di animazione associato alla voce selezionata nell'elenco di animazione.</ahelp>"
+msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/simpress/01/animationeffect.xhp\">Animazione personalizzata</link> in cui si può modificare l'effetto di animazione per la voce selezionata nell'elenco di animazione.</ahelp>"
#: 06060000.xhp
msgctxt ""
@@ -6098,7 +6098,7 @@ msgctxt ""
"par_idN1080B\n"
"help.text"
msgid "<ahelp hid=\".\">Selects the additional properties of the animation. Click the <emph>...</emph> button to open the <link href=\"text/simpress/01/effectoptions.xhp\">Effect Options</link> dialog, where you can select and apply properties.</ahelp>"
-msgstr "<ahelp hid=\".\">Potete selezionare ulteriori proprietà per l'animazione. Fate clic sul pulsante <emph>...</emph> per aprire la finestra di dialogo <link href=\"text/simpress/01/effectoptions.xhp\">Opzioni effetti</link>, in cui potete selezionare e applicare le proprietà desiderate.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleziona ulteriori proprietà per l'animazione. Fare clic sul pulsante <emph>...</emph> per aprire la finestra di dialogo <link href=\"text/simpress/01/effectoptions.xhp\">Opzioni effetti</link>, in cui si possono selezionare e applicare le proprietà desiderate.</ahelp>"
#: 06060000.xhp
msgctxt ""
@@ -6130,7 +6130,7 @@ msgctxt ""
"par_idN1082B\n"
"help.text"
msgid "<ahelp hid=\".\">Click one of the buttons to move the selected animation effect up or down in the list.</ahelp>"
-msgstr "<ahelp hid=\".\">Fate clic su questi pulsanti per spostare l'effetto di animazione selezionato più in alto o più in basso nell'elenco.</ahelp>"
+msgstr "<ahelp hid=\".\">Fare clic su questi pulsanti per spostare l'effetto di animazione selezionato più in alto o più in basso nell'elenco.</ahelp>"
#: 06060000.xhp
msgctxt ""
@@ -6178,7 +6178,7 @@ msgctxt ""
"par_idN10840\n"
"help.text"
msgid "<ahelp hid=\".\">Select to preview new or edited effects on the slide while you assign them.</ahelp>"
-msgstr "<ahelp hid=\".\">Selezionate questa opzione per visualizzare l'anteprima dei nuovi effetti o degli effetti modificati nella diapositiva mentre li assegnate.</ahelp>"
+msgstr "<ahelp hid=\".\">Selezionare questa opzione per visualizzare, mentre si assegnano, l'anteprima degli effetti nuovi o modificati nella diapositiva.</ahelp>"
#: 06070000.xhp
msgctxt ""
@@ -7129,7 +7129,7 @@ msgctxt ""
"par_id5168919\n"
"help.text"
msgid "<ahelp hid=\".\">Select a monitor to use for full screen slide show mode.</ahelp>"
-msgstr "<ahelp hid=\".\">Selezionate un monitor da usare per il modo di presentazione a schermo intero.</ahelp>"
+msgstr "<ahelp hid=\".\">Selezionare un monitor da usare per la presentazione a schermo intero.</ahelp>"
#: 06080000.xhp
msgctxt ""
@@ -8450,7 +8450,7 @@ msgctxt ""
"par_id5049287\n"
"help.text"
msgid "<ahelp hid=\".\">Enable this option to assign a gradually increasing speed to the start of the effect.</ahelp>"
-msgstr "<ahelp hid=\".\">Attivate questa opzione per assegnare una velocità che incrementi gradualmente all'inizio dell'animazione.</ahelp>"
+msgstr "<ahelp hid=\".\">Attivare questa opzione per assegnare una velocità che incrementi gradualmente all'inizio dell'animazione.</ahelp>"
#: effectoptionseffect.xhp
msgctxt ""
@@ -8466,7 +8466,7 @@ msgctxt ""
"par_id1145359\n"
"help.text"
msgid "<ahelp hid=\".\">Enable this option to assign a gradually decreasing speed to the end of the effect.</ahelp>"
-msgstr "<ahelp hid=\".\">Abilitate questa opzione per assegnare una velocità gradualmente decrescente verso la fine dell'animazione.</ahelp>"
+msgstr "<ahelp hid=\".\">Attivare questa opzione per assegnare una velocità gradualmente decrescente verso la fine dell'animazione.</ahelp>"
#: effectoptionseffect.xhp
msgctxt ""
@@ -9050,7 +9050,7 @@ msgctxt ""
"par_idN10652\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Master Pages tab page, where you apply a master page (background) to all slides (left-click) or to the selected slides (right-click).</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la scheda Pagine schema in cui potete applicare uno schema pagina (sfondo) a tutte le diapositive (clic col pulsante sinistro) o a quelle selezionate (clic col pulsante destro).</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la scheda Pagine schema in cui puoi applicare una pagina schema (sfondo) a tutte le diapositive (clic col pulsante sinistro) o a quelle selezionate (clic col pulsante destro).</ahelp>"
#: taskpanel.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/simpress/02.po b/source/it/helpcontent2/source/text/simpress/02.po
index eb162dce0f5..bbdd1204141 100644
--- a/source/it/helpcontent2/source/text/simpress/02.po
+++ b/source/it/helpcontent2/source/text/simpress/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: 2015-08-25 12:34+0200\n"
-"PO-Revision-Date: 2015-09-19 17:14+0000\n"
+"PO-Revision-Date: 2016-03-12 17: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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1442682850.000000\n"
+"X-POOTLE-MTIME: 1457803671.000000\n"
#: 04010000.xhp
msgctxt ""
@@ -117,7 +117,7 @@ msgctxt ""
"par_idN1059C\n"
"help.text"
msgid "<ahelp hid=\".\">Select the transition effect that appears before the current slide is shown.</ahelp>"
-msgstr "<ahelp hid=\".\">Selezionate l'effetto di transizione che deve precedere la visualizzazione della diapositiva.</ahelp>"
+msgstr "<ahelp hid=\".\">Seleziona l'effetto di transizione che deve precedere la visualizzazione della diapositiva.</ahelp>"
#: 04040000.xhp
msgctxt ""
@@ -159,7 +159,7 @@ msgctxt ""
"par_idN1059C\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the amount of time before the slide show automatically advances to the next slide.</ahelp> This option is only available for automatic transition."
-msgstr "<ahelp hid=\".\">Specificate l'intervallo di tempo che deve trascorrere prima che la presentazione avanzi automaticamente alla diapositiva successiva.</ahelp> Questa opzione è disponibile solo per il cambio diapositive automatico."
+msgstr "<ahelp hid=\".\">Specifica l'intervallo di tempo che deve trascorrere prima che la presentazione avanzi automaticamente alla diapositiva successiva.</ahelp> Questa opzione è disponibile solo per il cambio diapositive automatico."
#: 04070000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/simpress/guide.po b/source/it/helpcontent2/source/text/simpress/guide.po
index 6f216a2a0ad..ad4034d346e 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: 2015-05-11 16:11+0200\n"
-"PO-Revision-Date: 2015-09-22 12:40+0000\n"
+"PO-Revision-Date: 2016-03-13 11:37+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1442925609.000000\n"
+"X-POOTLE-MTIME: 1457869062.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -985,7 +985,7 @@ msgctxt ""
"par_id624713\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click Set Background Picture for Slide in the context menu of a slide in Normal view to select a bitmap file. This file is used as a background picture.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate clic su Imposta immagine di sfondo per la diapositiva nel menu di contesto di una diapositiva nella vista Normale per selezionare un file bitmap. Questo file viene utilizzato come immagine di sfondo.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic su Imposta immagine di sfondo per la diapositiva nel menu di contesto di una diapositiva nella vista Normale per selezionare un file bitmap. Questo file viene utilizzato come immagine di sfondo.</ahelp>"
#: background.xhp
msgctxt ""
@@ -5081,7 +5081,7 @@ msgctxt ""
"par_id137333\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the number of columns for the new table.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserite il numero di colonne della nuova tabella.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserisci il numero di colonne della nuova tabella.</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5089,7 +5089,7 @@ msgctxt ""
"par_id8626667\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the number of rows for the new table.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserite il numero di righe della nuova tabella.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Inserisci il numero di righe della nuova tabella.</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5097,7 +5097,7 @@ msgctxt ""
"par_id0916200803551581\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Define the vertical alignment of selected or all cell contents. Split or merge cells.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Definite l'allineamento verticale dei contenuti delle celle selezionate o di tutte le celle. Dividi o unisci celle.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Definisci l'allineamento verticale dei contenuti delle celle selezionate o di tutte le celle. Dividi o unisci celle.</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5113,7 +5113,7 @@ msgctxt ""
"par_id0916200803551535\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">The selected cell is split into several cells. You see the Split Cells dialog box.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Divide la cella selezionata in varie celle. Vedete la finestra di dialogo Dividi celle.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Divide la cella selezionata in varie celle. Vedi la finestra di dialogo Dividi celle.</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5137,7 +5137,7 @@ msgctxt ""
"par_id0916200803551632\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">The cell contents are aligned at the bottom of the cells.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">I contenuti delle celle sono allineati in basso.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Il contenuto delle celle è allineato in basso.</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5153,7 +5153,7 @@ msgctxt ""
"par_id0916200803551734\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Choose commands for the selected or all rows.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Scegliete i comandi per tutte le righe o per quelle selezionate.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Scegli i comandi per tutte le righe o per quelle selezionate.</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5161,7 +5161,7 @@ msgctxt ""
"par_id0916200804080035\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Distributes the height of the selected or all rows to the same size. The height of the table is not changed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Distribuisce uniformemente l'altezza di tutte le righe o di quelle selezionate. L'altezza della tabella non è cambiata.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Distribuisce uniformemente l'altezza di tutte le righe o di quelle selezionate. L'altezza della tabella non viene cambiata.</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5169,7 +5169,7 @@ msgctxt ""
"par_id0916200804080063\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">If currently no cell is selected, all rows will be selected. If currently cells are selected, all rows containing the selected cells will be selected.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Se non è stata selezionata nessuna cella, saranno selezionate tutte le righe. Se sono state selezionate delle celle, verranno selezionate tutte le righe che contengono quelle celle.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Se non è selezionata alcuna cella, saranno selezionate tutte le righe. Se sono selezionate delle celle, saranno selezionate le righe che le contengono.</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5177,7 +5177,7 @@ msgctxt ""
"par_id091620080408008\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">If currently no cell is selected, a new row will be inserted at the bottom of the table. If currently cells are selected, as many new rows as the selection has will be inserted below the selection.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Se non sono state selezionate delle celle, sarà inserita una nuova riga in fondo alla tabella. Se sono state selezionate delle celle, un numero di righe pari a quelle selezionate sarà inserito al di sotto della selezione stessa.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Se non è selezionata alcuna cella, sarà inserita una nuova riga in fondo alla tabella. Se sono selezionate delle celle, sarà inserito un numero di righe pari a quelle selezionate, al di sotto della selezione stessa.</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5185,7 +5185,7 @@ msgctxt ""
"par_id0916200804080050\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">All rows of the current selection will be deleted.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tutte le righe selezionate saranno cancellate.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tutte le righe selezionate saranno eliminate.</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5193,7 +5193,7 @@ msgctxt ""
"par_id0916200804163012\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Choose commands for the selected or all columns.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Scegliete i comandi per tutte le colonne o per quelle selezionate.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Scegli i comandi per tutte le colonne o per quelle selezionate.</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5201,7 +5201,7 @@ msgctxt ""
"par_id0916200804163092\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Distributes the width of the selected or all columns to the same size. The width of the table is not changed.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Distribuisce uniformemente la larghezza di tutte le colonne o di quelle selezionate. La larghezza della tabella non è cambiato.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Distribuisce uniformemente la larghezza di tutte le colonne o di quelle selezionate. La larghezza della tabella non viene cambiata.</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5209,7 +5209,7 @@ msgctxt ""
"par_id0916200804163046\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">If currently no cell is selected, all columns will be selected. If currently cells are selected, all columns containing the selected cells will be selected.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Se non è stata selezionata nessuna cella, saranno selezionate tutte le colonne. Se sono state selezionate delle celle, saranno selezionate tutte le colonne che contengono quelle celle.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Se non è stata selezionata alcuna cella, saranno selezionate tutte le colonne. Se sono state selezionate delle celle, saranno selezionate tutte le colonne che le contengono.</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5217,7 +5217,7 @@ msgctxt ""
"par_id0916200804163128\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">If currently no cell is selected, a new column will be inserted at the right border of the table. If currently cells are selected, as many new columns as the selection has will be inserted right of the selection.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Se non sono state selezionate delle celle, sarà inserita una nuova colonne in fondo alla tabella. Se sono state selezionate delle celle, un numero di colonne pari a quelle selezionate sarà inserito a destra della selezione stessa.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Se non è stata selezionata alcuna cella, sarà inserita una nuova colonna nel bordo destro della tabella. Se sono state selezionate delle celle, un numero di colonne pari a quelle selezionate sarà inserito a destra della stessa selezione.</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5225,7 +5225,7 @@ msgctxt ""
"par_id0916200804163127\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">All columns of the current selection will be deleted.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tutte le righe della selezione attiva saranno cancellate.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tutte le righe della selezione attiva saranno eliminate.</ahelp>"
#: table_insert.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/smath/01.po b/source/it/helpcontent2/source/text/smath/01.po
index 38fe797df70..ef96dd01035 100644
--- a/source/it/helpcontent2/source/text/smath/01.po
+++ b/source/it/helpcontent2/source/text/smath/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-01-24 17:24+0000\n"
+"PO-Revision-Date: 2016-03-13 11:38+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1453656253.000000\n"
+"X-POOTLE-MTIME: 1457869123.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -347,7 +347,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".\">Automatically updates a modified formula. If you do not select this option, the formula will only be updated after you choose <emph>View - Update</emph> or press F9.</ahelp>"
-msgstr "<ahelp hid=\".\">Attivate questo comando se una formula modificata deve essere aggiornata automaticamente. Se questa opzione non è selezionata, la formula viene disegnata di nuovo, solo dopo aver avviato <emph>Visualizza - Aggiorna</emph> o premuto F9.</ahelp>"
+msgstr "<ahelp hid=\".\">Attivare questo comando per aggiornare automaticamente una formula modificata. Se questa opzione non è selezionata, la formula sarà aggiornata solo dopo aver scelto <emph>Visualizza - Aggiorna</emph> o premuto F9.</ahelp>"
#: 03090000.xhp
msgctxt ""
@@ -2461,7 +2461,7 @@ msgctxt ""
"70\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts x raised to the yth power.</ahelp> You can also type <emph><?>^{<?>}</emph> in the <emph>Commands</emph> window. You can replace the <emph>^</emph> character with <emph>rsup</emph> or <emph>sup</emph>."
-msgstr "<ahelp hid=\".\">Inserisce x elevato alla potenza di y.</ahelp> Per inserire manualmente la funzione, nella finestra <emph>Comandi</emph> digitate <emph><?>^{<?>}</emph>. Potete sostituire il carattere <emph>^</emph> con <emph>rsup</emph> oppure <emph>sup</emph>."
+msgstr "<ahelp hid=\".\">Inserisce x elevato alla potenza di y.</ahelp> Per inserire manualmente la funzione, nella finestra <emph>Comandi</emph> digitare <emph><?>^{<?>}</emph>. Potete sostituire il carattere <emph>^</emph> con <emph>rsup</emph> oppure <emph>sup</emph>."
#: 03090400.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/swriter.po b/source/it/helpcontent2/source/text/swriter.po
index 2281a09b776..335969f8739 100644
--- a/source/it/helpcontent2/source/text/swriter.po
+++ b/source/it/helpcontent2/source/text/swriter.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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-01-04 12:03+0000\n"
+"PO-Revision-Date: 2016-03-12 17:50+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1451909008.000000\n"
+"X-POOTLE-MTIME: 1457805008.000000\n"
#: main0000.xhp
msgctxt ""
@@ -108,7 +108,7 @@ msgctxt ""
"par_id3147352\n"
"help.text"
msgid "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
-msgstr "<ahelp hid=\".\">L'esecuzione di questi comandi viene applicata al documento aperto. Aprite un nuovo documento oppure chiudete l'applicazione.</ahelp>"
+msgstr "<ahelp hid=\".\">Questi comandi si applicano al documento aperto, creano un nuovo documento o chiudono l'applicazione.</ahelp>"
#: main0102.xhp
msgctxt ""
@@ -132,7 +132,7 @@ msgctxt ""
"par_id3149626\n"
"help.text"
msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
-msgstr "<ahelp hid=\".\">Questo menu contiene i comandi con cui potete modificare il contenuto del documento.</ahelp>"
+msgstr "<ahelp hid=\".\">Questo menu contiene i comandi con cui si può modificare il contenuto del documento.</ahelp>"
#: main0102.xhp
msgctxt ""
@@ -637,7 +637,7 @@ msgctxt ""
"par_id3147258\n"
"help.text"
msgid "<ahelp hid=\".\">Contains spelling tools, a gallery of object art that you can add to your document, as well as tools for configuring menus, and setting program preferences.</ahelp>"
-msgstr "<ahelp hid=\".\">Contiene strumenti di controllo ortografico, una galleria di oggetti decorativi che potete aggiungere al documento e strumenti per la configurazione dei menu e l'impostazione delle preferenze per il programma.</ahelp>"
+msgstr "<ahelp hid=\".\">Contiene strumenti di controllo ortografico, una galleria di oggetti decorativi che si possono aggiungere al documento e strumenti per la configurazione dei menu e l'impostazione delle preferenze per il programma.</ahelp>"
#: main0106.xhp
msgctxt ""
@@ -1071,7 +1071,7 @@ msgctxt ""
"par_idN1074F\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog where you can convert the selected text to a table.</ahelp> Opens <link href=\"text/swriter/01/06090000.xhp\">a dialog</link> where you can convert the selected text to a table."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre una finestra di dialogo in cui potete convertire il testo selezionato in una tabella.</ahelp> Apre una <link href=\"text/swriter/01/06090000.xhp\">finestra di dialogo</link> in cui potete convertire il testo selezionato in una tabella."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre una finestra di dialogo in cui puoi convertire il testo selezionato in una tabella.</ahelp> Apre una <link href=\"text/swriter/01/06090000.xhp\">finestra di dialogo</link> in cui potete convertire il testo selezionato in una tabella."
#: main0110.xhp
msgctxt ""
@@ -1087,7 +1087,7 @@ msgctxt ""
"par_idN10766\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog where you can convert the current table to text.</ahelp> Opens <link href=\"text/swriter/01/06090000.xhp\">a dialog</link> where you can convert the current table to text."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre una finestra di dialogo in cui potete convertire la tabella in testo.</ahelp> Apre una <link href=\"text/swriter/01/06090000.xhp\">finestra di dialogo</link> in cui potete convertire la tabella in testo."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre una finestra di dialogo in cui puoi convertire la tabella attiva in testo.</ahelp> Apre una <link href=\"text/swriter/01/06090000.xhp\">finestra di dialogo</link> in cui potete convertire la tabella attiva in testo."
#: main0110.xhp
msgctxt ""
@@ -1593,7 +1593,7 @@ msgctxt ""
"par_id8193914\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the language for the selected text. <br/>Click to open a menu where you can choose another language for the selected text or for the current paragraph. <br/>Choose None to exclude the text from spellchecking and hyphenation. <br/>Choose Reset to Default Language to re-apply the default language for the selection or the paragraph. <br/>Choose More to open a dialog with more options.</ahelp>"
-msgstr "<ahelp hid=\".\">Mostra la lingua applicata al testo selezionato. <br/>Fate clic per aprire un menu dove è possibile scegliere una lingua diversa per il testo selezionato o per il paragrafo in uso. <br/>Scegliete Nessuna per escludere il testo dalla correzione automatica e dalla sillabazione. <br/>Scegliete Ripristina la lingua predefinita per applicare nuovamente la lingua predefinita al testo selezionato o al paragrafo. <br/>Scegliete Extra per aprire una finestra di dialogo con maggiori opzioni.</ahelp>"
+msgstr "<ahelp hid=\".\">Mostra la lingua applicata al testo selezionato. <br/>Fare clic per aprire un menu dove è possibile scegliere una lingua diversa per il testo selezionato o per il paragrafo in uso. <br/>Scegliere Nessuna per escludere il testo dalla correzione automatica e dalla sillabazione. <br/>Scegliere Ripristina la lingua predefinita per applicare nuovamente la lingua predefinita al testo selezionato o al paragrafo. <br/>Scegliere Extra per aprire una finestra di dialogo con altre opzioni.</ahelp>"
#: main0208.xhp
msgctxt ""
@@ -1728,7 +1728,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Formula</emph> Bar allows you to create and insert calculations into a text document.</ahelp> To activate the <emph>Formula</emph> Bar, press F2."
-msgstr "<ahelp hid=\".\">La barra della <emph>Formula</emph> vi permette di creare e inserire operazioni matematiche in un documento di testo.</ahelp> Per attivarla, premete F2."
+msgstr "<ahelp hid=\".\">La barra della <emph>Formula</emph> permette di creare e inserire operazioni matematiche in un documento di testo.</ahelp> Per attivarla, premete F2."
#: main0215.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/swriter/01.po b/source/it/helpcontent2/source/text/swriter/01.po
index 3aaebd1feb5..cbe8266c1fb 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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2016-01-24 19:49+0000\n"
+"PO-Revision-Date: 2016-03-13 13:00+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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1453664994.000000\n"
+"X-POOTLE-MTIME: 1457874032.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -71,7 +71,7 @@ msgctxt ""
"par_id5027008\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">To exit the print preview, click the <emph>Close Preview</emph> button.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Per uscire dall'anteprima di stampa, fate clic sul pulsante <emph>Chiudi anteprima.</emph></ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Per uscire dall'anteprima di stampa, fai clic sul pulsante <emph>Chiudi anteprima.</emph></ahelp>"
#: 01120000.xhp
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"par_id8186895\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a database and table.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate un database e una tabella.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona un database e una tabella.</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -130,7 +130,7 @@ msgctxt ""
"par_id3101901\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to create one big document containing all data records.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate clic per creare un unico grande documento contenente tutti i record di dati.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic per creare un unico grande documento contenente tutti i record di dati.</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -138,7 +138,7 @@ msgctxt ""
"par_id5345011\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to create one document for every one data record.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate clic per creare un documento per ogni record di dati.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic per creare un documento per ogni record di dati.</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -146,7 +146,7 @@ msgctxt ""
"par_id5631580\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Generate each file name from data contained in a database.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Generate ogni nome dei file dai dati contenuti in un database.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Genera ciascun nome dei file dai dati contenuti in un database.</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -154,7 +154,7 @@ msgctxt ""
"par_id8992889\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the file format.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate il formato del file.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona il formato del file.</ahelp>"
#: 01150000.xhp
msgctxt ""
@@ -715,7 +715,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<ahelp hid=\".\">Shows or hides the Navigator window, where you can quickly jump to different parts of your document. Navigator is also available as a deck of the Sidebar. You can also use the Navigator to insert elements from the current document or other open documents, and to organize master documents.</ahelp> To edit an item in the Navigator, right-click the item, and then choose a command from the context menu. If you want, you can <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dock\">dock</link> the Navigator at the edge of your workspace."
-msgstr "<ahelp hid=\".\">Mostra o nasconde la finestra del Navigatore, che vi permette di accedere rapidamente a diverse parti del documento. Il Navigatore è disponibile anche nell'area della barra laterale e può anche essere usato per inserire elementi del documento attivo o di altri documenti aperti e per organizzare i documenti master.</ahelp> Per modificare un elemento nel Navigatore, fate clic sull'elemento col pulsante destro del mouse e scegliete un comando dal menu di contesto. Per maggiore comodità, il Navigatore può essere <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"ancorato\">ancorato</link> al bordo dell'area di lavoro."
+msgstr "<ahelp hid=\".\">Mostra o nasconde la finestra del Navigatore, che permette di accedere rapidamente a diverse parti del documento. Il Navigatore è disponibile anche nell'area della barra laterale e può anche essere usato per inserire elementi del documento attivo o di altri documenti aperti e per organizzare i documenti master.</ahelp> Per modificare un elemento nel Navigatore, fate clic sull'elemento col pulsante destro del mouse e scegliete un comando dal menu di contesto. Per maggiore comodità, il Navigatore può essere <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"ancorato\">ancorato</link> al bordo dell'area di lavoro."
#: 02110000.xhp
msgctxt ""
@@ -804,7 +804,7 @@ msgctxt ""
"70\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the <emph>Navigation</emph> toolbar, where you can quickly jump to the next or the previous item in the category that you select. Select the category, and then click the \"Previous\" and \"Next\" arrows.</ahelp> Opens the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">Navigation</link> toolbar, where you can quickly jump to the next or the previous item in the category that you select. Select the category, and then click the \"Previous\" and \"Next\" arrows."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la barra <emph>Navigazione</emph>, con cui potete accedere velocemente all'elemento precedente o successivo della categoria selezionata. Selezionate la categoria e fate clic sulle frecce \"Pagina precedente\" e \"Pagina successiva\".</ahelp> Apre la <link href=\"text/swriter/01/02110100.xhp\" name=\"barra di navigazione\">barra di navigazione</link>, con cui potete accedere velocemente all'elemento precedente o successivo della categoria selezionata. Selezionate la categoria e fate clic sulle frecce \"Pagina precedente\" e \"Pagina successiva\"."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la barra <emph>Navigazione</emph>, da cui puoi accedere velocemente all'elemento precedente o successivo della categoria selezionata. Seleziona la categoria e fai clic sulle frecce \"Pagina precedente\" e \"Pagina successiva\".</ahelp> Apre la <link href=\"text/swriter/01/02110100.xhp\" name=\"barra di navigazione\">barra di navigazione</link>, da cui potete accedere velocemente all'elemento precedente o successivo della categoria selezionata. Selezionate la categoria e fate clic sulle frecce \"Pagina precedente\" e \"Pagina successiva\"."
#: 02110000.xhp
msgctxt ""
@@ -848,7 +848,7 @@ msgctxt ""
"29\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the previous item in the document. To specify the type of item to jump to, click the <emph>Navigation</emph> icon, and then click an item category - for example, \"Images\".</ahelp> Jumps to the previous item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">Navigation</link> icon, and then click an item category - for example, \"Images\"."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Visualizza l'elemento precedente nel documento. Per specificare il tipo di elemento desiderato, fate clic sull'icona <emph>Navigazione</emph> e quindi su una categoria - ad esempio, \"Immagini\".</ahelp> Visualizza l'elemento precedente nel documento. Per specificare il tipo di elemento desiderato, fate clic sull'icona <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigazione\">Navigazione</link> e quindi su una categoria - ad esempio, \"Immagini\"."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Visualizza l'elemento precedente nel documento. Per specificare il tipo di elemento desiderato, fai clic sull'icona <emph>Navigazione</emph> e quindi su una categoria - ad esempio, \"Immagini\".</ahelp> Visualizza l'elemento precedente nel documento. Per specificare il tipo di elemento desiderato, fate clic sull'icona <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigazione\">Navigazione</link> e quindi su una categoria - ad esempio, \"Immagini\"."
#: 02110000.xhp
msgctxt ""
@@ -883,7 +883,7 @@ msgctxt ""
"32\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, and then click an item category - for example, \"Images\".</ahelp> Jumps to the next item in the document. To specify the type of item to jump to, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">Navigation</link> icon, and then click an item category - for example, \"Images\"."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Visualizza l'elemento successivo nel documento. Per specificare il tipo di elemento desiderato, fate clic sull'icona <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigazione\"><emph>Navigazione</emph></link> e quindi su una categoria - ad esempio, \"Immagini\".</ahelp> Visualizza l'elemento successivo nel documento. Per specificare il tipo di elemento desiderato, fate clic sull'icona <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigazione\">Navigazione</link> e quindi su una categoria - ad esempio, \"Immagini\"."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Visualizza l'elemento successivo nel documento. Per specificare il tipo di elemento desiderato, fai clic sull'icona <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigazione\"><emph>Navigazione</emph></link> e quindi su una categoria - ad esempio, \"Immagini\".</ahelp> Visualizza l'elemento successivo nel documento. Per specificare il tipo di elemento desiderato, fate clic sull'icona <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigazione\">Navigazione</link> e quindi su una categoria - ad esempio, \"Immagini\"."
#: 02110000.xhp
msgctxt ""
@@ -1024,7 +1024,7 @@ msgctxt ""
"14\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\"><emph>Navigation</emph></link> icon, in the <emph>Navigation</emph> window click the <emph>Reminder</emph> icon, and then click the <emph>Previous</emph> or <emph>Next</emph> button.</ahelp> Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigation\">Navigation</link> icon, in the Navigation window click the Reminder icon, and then click the Previous or Next button."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fate clic in questo punto per inserire un contrassegno nella posizione attuale del cursore. Potete definire un massimo di cinque contrassegni. Per accedere velocemente a un contrassegno, fate clic sull'icona <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigazione\"><emph>Navigazione</emph></link>, nella finestra <emph>Navigazione</emph> fate clic sull'icona <emph>Imposta contrassegno</emph> e quindi sul pulsante <emph>Pagina precedente</emph> o <emph>Pagina successiva</emph>.</ahelp> Fate clic in questo punto per inserire un contrassegno nella posizione attuale del cursore. Potete definire un massimo di cinque contrassegni. Per accedere velocemente a un contrassegno, fate clic sull'icona <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigazione\">Navigazione</link>, nella finestra di navigazione fate clic sull'icona del contrassegno e quindi sul pulsante Precedente o Successivo."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic in questo punto per inserire un contrassegno nella posizione attuale del cursore. Puoi definire un massimo di cinque contrassegni. Per accedere velocemente a un contrassegno, fai clic sull'icona <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigazione\"><emph>Navigazione</emph></link>, nella finestra <emph>Navigazione</emph> fai clic sull'icona <emph>Imposta contrassegno</emph> e quindi sul pulsante <emph>Pagina precedente</emph> o <emph>Pagina successiva</emph>.</ahelp> Fate clic in questo punto per inserire un contrassegno nella posizione attuale del cursore. Potete definire un massimo di cinque contrassegni. Per accedere velocemente a un contrassegno, fate clic sull'icona <link href=\"text/swriter/01/02110100.xhp\" name=\"Navigazione\">Navigazione</link>, nella finestra di navigazione fate clic sull'icona del contrassegno e quindi sul pulsante Precedente o Successivo."
#: 02110000.xhp
msgctxt ""
@@ -1596,7 +1596,7 @@ msgctxt ""
"par_idN106DD\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select this icon to browse through bookmarks.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate questa icona per esplorare i segnalibri.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona questa icona per navigare tra i segnalibri.</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1604,7 +1604,7 @@ msgctxt ""
"par_idN106F4\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select this icon to browse through control fields.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate questa icona per esplorare i campi di controllo.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona questa icona per navigare tra i campi di controllo.</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1612,7 +1612,7 @@ msgctxt ""
"par_idN1070B\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select this icon to browse through drawing objects.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate questa icona per esplorare gli oggetti di disegno.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona questa icona per navigare tra gli oggetti di disegno.</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1620,7 +1620,7 @@ msgctxt ""
"par_idN10722\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select this icon to browse through text frames.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate questa icona per esplorare le cornici di testo.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona questa icona per navigare tra le cornici di testo.</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1628,7 +1628,7 @@ msgctxt ""
"par_idN10739\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select this icon to browse through footnotes.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate questo simbolo per esplorare le note a piè di pagina.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona questa icona per navigare tra le note a piè di pagina.</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1636,7 +1636,7 @@ msgctxt ""
"par_idN10750\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select this icon to browse through graphics.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate questa icona per esplorare le immagini.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona questa icona per navigare tra le immagini.</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1644,7 +1644,7 @@ msgctxt ""
"par_idN10767\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select this icon to browse through index entries.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate questa icona per esplorare le voci di indice.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona questa icona per navigare tra le voci di indice.</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1652,7 +1652,7 @@ msgctxt ""
"par_idN1077E\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select this icon to browse through reminders.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate questa icona per esplorare i contrassegni.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona questa icona per navigare tra i contrassegni.</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1668,7 +1668,7 @@ msgctxt ""
"par_idN107AF\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select this icon to browse through OLE objects.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate questa icona per esplorare gli oggetti OLE.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona questa icona per navigare tra gli oggetti OLE.</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1676,7 +1676,7 @@ msgctxt ""
"par_idN107C6\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select this icon to browse through headings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate questa icona per esplorare le intestazioni.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona questa icona per navigare tra le intestazioni.</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1684,7 +1684,7 @@ msgctxt ""
"par_idN107DD\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select this icon to browse through pages.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate questa icona per esplorare le pagine.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona questa icona per navigare tra le pagine.</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1692,7 +1692,7 @@ msgctxt ""
"par_idN107F4\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select this icon to browse through comments.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate questa icona per esplorare i commenti.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona questa icona per navigare tra i commenti.</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1708,7 +1708,7 @@ msgctxt ""
"par_idN10829\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select this icon to browse through sections.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate questa icona per esplorare le sezioni.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona questa icona per navigare tra le sezioni.</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1716,7 +1716,7 @@ msgctxt ""
"par_idN10840\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select this icon to browse through selections.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate questa icona per esplorare le selezioni.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona questa icona per navigare tra le selezioni.</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1724,7 +1724,7 @@ msgctxt ""
"par_idN10857\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select this icon to browse through search results.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate questa icona per esplorare i risultati.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona questa icona per navigare tra i risultati.</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1732,7 +1732,7 @@ msgctxt ""
"par_idN1086E\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select this icon to browse through table formulas.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate questa icona per esplorare le formule di tabella.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona questa icona per navigare tra le formule di tabella.</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1740,7 +1740,7 @@ msgctxt ""
"par_idN10885\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select this icon to browse through wrong table formulas.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate questa icona per esplorare le formule di tabella errate.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona questa icona per navigare tra le formule di tabella errate.</ahelp>"
#: 02110100.xhp
msgctxt ""
@@ -1748,7 +1748,7 @@ msgctxt ""
"par_idN1089C\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select this icon to browse through tables.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Selezionate questa icona per esplorare le tabelle.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Seleziona questa icona per navigare tra le tabelle.</ahelp>"
#: 02120000.xhp
msgctxt ""
@@ -2026,7 +2026,7 @@ msgctxt ""
"24\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Rename AutoText dialog, where you can change the name of the selected AutoText entry.</ahelp> Opens the <link href=\"text/swriter/01/02120100.xhp\" name=\"Rename Text Block\">Rename AutoText</link> dialog, where you can change the name of the selected AutoText entry."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la finestra di dialogo Rinomina modulo di testo, in cui potete cambiare nome al testo automatico selezionato.</ahelp> Apre la finestra di dialogo <link href=\"text/swriter/01/02120100.xhp\" name=\"Rinomina testo\">Rinomina modulo di testo</link>, in cui potete cambiare nome al testo automatico selezionato."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la finestra di dialogo Rinomina modulo di testo, in cui puoi cambiare nome al testo automatico selezionato.</ahelp> Apre la finestra di dialogo <link href=\"text/swriter/01/02120100.xhp\" name=\"Rinomina testo\">Rinomina modulo di testo</link>, in cui potete cambiare nome al testo automatico selezionato."
#: 02120000.xhp
msgctxt ""
@@ -2062,7 +2062,7 @@ msgctxt ""
"44\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Assign Macro dialog, where you attach a macro to the selected AutoText entry.</ahelp> Opens the <link href=\"text/swriter/01/05060700.xhp\" name=\"Assign Macro\">Assign Macro</link> dialog, where you attach a macro to the selected AutoText entry."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la finestra di dialogo Assegna macro, in cui potete associare una macro al testo automatico selezionato.</ahelp> Apre la finestra di dialogo <link href=\"text/swriter/01/05060700.xhp\" name=\"Assegna macro\">Assegna macro</link>, in cui potete associare una macro al testo automatico selezionato."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la finestra di dialogo Assegna macro, in cui puoi associare una macro al testo automatico selezionato.</ahelp> Apre la finestra di dialogo <link href=\"text/swriter/01/05060700.xhp\" name=\"Assegna macro\">Assegna macro</link>, in cui potete associare una macro al testo automatico selezionato."
#: 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\">Apre la finestra di dialogo Modifica percorsi, in cui potete selezionare la cartella in cui memorizzare il testo automatico.</ahelp> Apre la finestra di dialogo <link href=\"text/shared/optionen/01010301.xhp\" name=\"Edit Paths\">Modifica percorsi</link>, in cui potete selezionare la cartella in cui memorizzare il testo automatico."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Apre la finestra di dialogo Modifica percorsi, in cui puoi selezionare la cartella in cui memorizzare il testo automatico.</ahelp> Apre la finestra di dialogo <link href=\"text/shared/optionen/01010301.xhp\" name=\"Edit Paths\">Modifica percorsi</link>, in cui potete selezionare la cartella in cui memorizzare il testo automatico."
#: 02120000.xhp
msgctxt ""
@@ -4088,7 +4088,7 @@ msgctxt ""
"7\n"
"help.text"
msgid "<ahelp hid=\".\">Type a name for the new section.</ahelp> By default, $[officename] automatically assigns the name \"Section X\" to new sections, where X is a consecutive number."
-msgstr "<ahelp hid=\".\">Indicate un nome per la nuova sezione.</ahelp> $[officename] assegna automaticamente alle nuove sezioni il nome \"Sezione X\", dove X è un numero consecutivo."
+msgstr "<ahelp hid=\".\">Indicare un nome per la nuova sezione.</ahelp> $[officename] assegna automaticamente alle nuove sezioni il nome \"Sezione X\", dove X è un numero consecutivo."
#: 04020100.xhp
msgctxt ""
@@ -4133,7 +4133,7 @@ msgctxt ""
"27\n"
"help.text"
msgid "<ahelp hid=\".\">Creates a <emph>DDE </emph>link. Select this check box, and then enter the <emph>DDE </emph>command that you want to use. The <emph>DDE</emph> option is only available if the <emph>Link</emph> check box is selected.</ahelp>"
-msgstr "<ahelp hid=\".\">Crea un collegamento <emph>DDE</emph>. Selezionate questa casella e quindi inserite il comando <emph>DDE</emph> da utilizzare. L'opzione <emph>DDE</emph> è disponibile solo se la casella <emph>Collegamento</emph> è selezionata.</ahelp>"
+msgstr "<ahelp hid=\".\">Crea un collegamento <emph>DDE</emph>. Selezionare questa casella e quindi inserire il comando <emph>DDE</emph> da utilizzare. L'opzione <emph>DDE</emph> è disponibile solo se la casella <emph>Collegamento</emph> è selezionata.</ahelp>"
#: 04020100.xhp
msgctxt ""
@@ -4169,7 +4169,7 @@ msgctxt ""
"29\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the path and the filename for the file that you want to insert, or click the browse button (<emph>...</emph>) to locate the file.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\">If the <emph>DDE </emph>check box is selected, enter the DDE command that you want to use.</caseinline></switchinline>"
-msgstr "<ahelp hid=\".\">Inserite il percorso e il nome del file da inserire, oppure fate clic sul pulsante con i tre puntini (<emph>...</emph>) per ricercare il file.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\">Se la casella <emph>DDE</emph> è selezionata, inserite il comando DDE da utilizzare.</caseinline></switchinline>"
+msgstr "<ahelp hid=\".\">Inserire il percorso e il nome del file da inserire, oppure fare clic sul pulsante con i tre puntini (<emph>...</emph>) per ricercare il file.</ahelp><switchinline select=\"sys\"><caseinline select=\"WIN\">Se la casella <emph>DDE</emph> è selezionata, inserite il comando DDE da utilizzare.</caseinline></switchinline>"
#: 04020100.xhp
msgctxt ""
@@ -4187,7 +4187,7 @@ msgctxt ""
"40\n"
"help.text"
msgid "<ahelp hid=\".\">Locate the file that you want to insert as a link, and then click <emph>Insert</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\">Individuate il file da inserire come collegamento e fate clic su <emph>Inserisci</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">Individuare il file da inserire come collegamento e fare clic su <emph>Inserisci</emph>.</ahelp>"
#: 04020100.xhp
msgctxt ""
@@ -4205,7 +4205,7 @@ msgctxt ""
"24\n"
"help.text"
msgid "<ahelp hid=\".\">Select the section in the file that you want to insert as a link.</ahelp>"
-msgstr "<ahelp hid=\".\">Selezionate la sezione del file che desiderate inserire come collegamento.</ahelp>"
+msgstr "<ahelp hid=\".\">Selezionare la sezione del file da inserire come collegamento.</ahelp>"
#: 04020100.xhp
msgctxt ""
@@ -4277,7 +4277,7 @@ msgctxt ""
"47\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a dialog where you can change the current password.</ahelp>"
-msgstr "<ahelp hid=\".\">Apre una finestra di dialogo in cui potete modificare la password attuale.</ahelp>"
+msgstr "<ahelp hid=\".\">Apre una finestra di dialogo in cui modificare la password attuale.</ahelp>"
#: 04020100.xhp
msgctxt ""
@@ -4331,7 +4331,7 @@ msgctxt ""
"17\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the condition that must be met to hide the section.</ahelp> A condition is a <link href=\"text/swriter/01/04090200.xhp\" name=\"logical expression\">logical expression</link>, such as \"SALUTATION EQ Mr.\". For example, if you use the <link href=\"text/swriter/guide/form_letters_main.xhp\" name=\"mail merge\">mail merge</link> form letter feature to define a database field called \"Salutation\" that contains \"Mr.\", \"Ms.\", or \"Sir or Madam\", you can then specify that a section will only be printed if the salutation is \"Mr.\"."
-msgstr "<ahelp hid=\".\">Inserite la condizione che deve essere soddisfatta perché la sezione venga nascosta.</ahelp> Una condizione è un'<link href=\"text/swriter/01/04090200.xhp\" name=\"espressione logica\">espressione logica</link>, ad esempio \"APPELLATIVO EQ Sig.\". Ad esempio, se usate la funzione di <link href=\"text/swriter/guide/form_letters_main.xhp\" name=\"stampa in serie\">stampa in serie</link> per definire un campo di database di nome \"Appellativo\" che contenga \"Sig.\", \"Sig.ra\" o \"Sig./Sig.ra\", potete specificare che una certa sezione venga stampata solo se l'appellativo è \"Sig.\"."
+msgstr "<ahelp hid=\".\">Inserire la condizione che deve essere soddisfatta affinché la sezione venga nascosta.</ahelp> Una condizione è un'<link href=\"text/swriter/01/04090200.xhp\" name=\"espressione logica\">espressione logica</link>, ad esempio \"APPELLATIVO EQ Sig.\". Ad esempio, se usate la funzione di <link href=\"text/swriter/guide/form_letters_main.xhp\" name=\"stampa in serie\">stampa in serie</link> per definire un campo di database di nome \"Appellativo\" che contenga \"Sig.\", \"Sig.ra\" o \"Sig./Sig.ra\", potete specificare che una certa sezione venga stampata solo se l'appellativo è \"Sig.\"."
#: 04020100.xhp
msgctxt ""
@@ -4851,7 +4851,7 @@ msgctxt ""
"par_idN10690\n"
"help.text"
msgid "<ahelp hid=\".\">Enter optional text characters to appear between the number and the caption text.</ahelp>"
-msgstr "<ahelp hid=\".\">Inserite i caratteri opzionali che devono comparire tra il numero e il testo della didascalia.</ahelp>"
+msgstr "<ahelp hid=\".\">Inserire i caratteri opzionali che devono comparire tra il numero e il testo della didascalia.</ahelp>"
#: 04060000.xhp
msgctxt ""
@@ -4894,7 +4894,7 @@ msgctxt ""
"par_idN1074A\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Caption dialog. It has the same information as the dialog you get by menu %PRODUCTNAME Writer - AutoCaption in the Options dialog box.</ahelp>"
-msgstr "<ahelp hid=\".\">Apre la finestra di dialogo Cattura. La finestra ha lo stesso contenuto della finestra di dialogo del menu %PRODUCTNAME Writer - AutoCattura presente nella finestra di dialogo Opzioni.</ahelp>"
+msgstr "<ahelp hid=\".\">Apre la finestra di dialogo Didascalia. La finestra ha lo stesso contenuto della finestra di dialogo del menu %PRODUCTNAME Writer - Didascalia automatica presente nella finestra di dialogo Opzioni.</ahelp>"
#: 04060100.xhp
msgctxt ""
@@ -6493,7 +6493,7 @@ msgctxt ""
"2\n"
"help.text"
msgid "<variable id=\"reftext\"><ahelp hid=\".\">This is where you insert the references or referenced fields into the current document. References are referenced fields within the same document or within sub-documents of a master document.</ahelp></variable>"
-msgstr "<variable id=\"reftext\"><ahelp hid=\".\">In questo campo potete inserire riferimenti nel documento corrente. I riferimenti incrociati possono trovarsi all'interno di uno stesso documento o di diversi file che costituiscono un documento master.</ahelp></variable>"
+msgstr "<variable id=\"reftext\"><ahelp hid=\".\">In questo campo si possono inserire riferimenti nel documento attivo. I riferimenti incrociati possono trovarsi all'interno di uno stesso documento o dei sotto-documenti che costituiscono un documento master.</ahelp></variable>"
#: 04090002.xhp
msgctxt ""
@@ -6518,7 +6518,7 @@ msgctxt ""
"par_id4516129\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the available field types. To add a field to your document, click a field type, click a field in the Selection list, and then click Insert.</ahelp> The following fields are available:"
-msgstr "<ahelp hid=\".\">Elenca i tipi di comandi di campo disponibili. Per aggiungere un comando di campo al documento, fate clic su un tipo di campo, quindi su un comando di campo nell'elenco Selezione e infine su Inserisci.</ahelp> Sono disponibili le seguenti opzioni:"
+msgstr "<ahelp hid=\".\">Elenca i tipi di comandi di campo disponibili. Per aggiungere un comando di campo al documento, fare clic su un tipo di campo, quindi su un comando di campo nell'elenco Selezione e infine su Inserisci.</ahelp> Sono disponibili le seguenti opzioni:"
#: 04090002.xhp
msgctxt ""
@@ -7007,7 +7007,7 @@ msgctxt ""
"par_id0903200802250745\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the contents that you want to add to a user-defined fields.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indicate i contenuti che volete aggiungere ai campi personalizzati.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indica il contenuto da aggiungere ai campi personalizzati.</ahelp>"
#: 04090002.xhp
msgctxt ""
@@ -7067,7 +7067,7 @@ msgctxt ""
"par_id0902200804352037\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 <emph>Select </emph>list, and then click <emph>Insert</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elenca le tipologie dei campi disponibili. Per aggiungere un campo al vostro documento, fate clic su un tipo di campo, fate clic su un campo nell'elenco <emph>Seleziona </emph>e, al termine, fate clic su <emph>Inserisci</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elenca le tipologie dei campi disponibili. Per aggiungere un campo al documento, fai clic su un tipo di campo, poi su un campo nell'elenco <emph>Seleziona</emph> e, per finire, su <emph>Inserisci</emph>.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -7237,7 +7237,7 @@ msgctxt ""
"par_id0902200804352213\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\">Fate clic sul formato che desiderate applicare al comando di campo selezionato, oppure su \"Ulteriori formati\" per definire un formato personalizzato.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic sul formato da applicare al comando di campo selezionato, oppure su \"Formati aggiuntivi\" per definire un formato personalizzato.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -7694,7 +7694,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\">Elenca le tipologie dei campi disponibili. Per aggiungere un campo al vostro documento, fate clic su un tipo di campo, fate clic su un campo nell'elenco Seleziona e, al termine, fate clic su Inserisci.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elenca le tipologie dei campi disponibili. Per aggiungere un campo al documento, fai clic su un tipo di campo, poi su un campo nell'elenco Seleziona e, per finire, su Inserisci.</ahelp>"
#: 04090004.xhp
msgctxt ""
@@ -7900,7 +7900,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\">Elenca i comandi di campo disponibili che appartengono al tipo selezionato nell'elenco <emph>Tipo di campo</emph>. Per inserire un comando di campo, fate clic sul comando di campo desiderato e quindi su <emph>Inserisci</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elenca i comandi di campo disponibili che appartengono al tipo selezionato nell'elenco <emph>Tipo di campo</emph>. Per inserire un comando di campo, fai clic sul comando di campo desiderato e quindi su <emph>Inserisci</emph>.</ahelp>"
#: 04090004.xhp
msgctxt ""
@@ -7917,7 +7917,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\">Fate clic sul formato che desiderate applicare al comando di campo selezionato, oppure su \"Ulteriori formati\" per definire un formato personalizzato.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic sul formato da applicare al comando di campo selezionato, oppure su \"Formati aggiuntivi\" per definire un formato personalizzato.</ahelp>"
#: 04090004.xhp
msgctxt ""
@@ -7995,7 +7995,7 @@ msgctxt ""
"par_id0903200802243625\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 <emph>Select </emph>list, and then click <emph>Insert</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elenca le tipologie dei campi disponibili. Per aggiungere un campo al vostro documento, fate clic su un tipo di campo, fate clic su un campo nell'elenco <emph>Seleziona </emph>e, al termine, fate clic su <emph>Inserisci</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elenca le tipologie dei campi disponibili. Per aggiungere un campo al documento, fai clic su un tipo di campo, poi su un campo nell'elenco <emph>Seleziona</emph> e, per finire, su <emph>Inserisci</emph>.</ahelp>"
#: 04090005.xhp
msgctxt ""
@@ -8201,7 +8201,7 @@ msgctxt ""
"par_id0903200802243892\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\">Fate clic sul formato che desiderate applicare al comando di campo selezionato, oppure su \"Ulteriori formati\" per definire un formato personalizzato.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Fai clic sul formato da applicare al comando di campo selezionato, oppure su \"Formati aggiuntivi\" per definire un formato personalizzato.</ahelp>"
#: 04090005.xhp
msgctxt ""
@@ -8218,7 +8218,7 @@ msgctxt ""
"par_id0903200802243880\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Type the name of the user-defined field that you want to create.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Digitate il nome del campo personalizzato che volete creare.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Digita il nome del campo personalizzato da creare.</ahelp>"
#: 04090005.xhp
msgctxt ""
@@ -8226,7 +8226,7 @@ msgctxt ""
"par_id0903200802243951\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the contents that you want to add to a user-defined field.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Digitate i contenuti che volete aggiungere ad un campo personalizzato.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Digita i contenuti da aggiungere a un campo personalizzato.</ahelp>"
#: 04090005.xhp
msgctxt ""
@@ -8454,7 +8454,7 @@ msgctxt ""
"par_id090220080439090\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 <emph>Select </emph>list, and then click <emph>Insert</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elenca le tipologie dei campi disponibili. Per aggiungere un campo al vostro documento, fate clic su un tipo di campo, fate clic su un campo nell'elenco <emph>Seleziona </emph>e, al termine, fate clic su <emph>Inserisci</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Elenca le tipologie dei campi disponibili. Per aggiungere un campo al documento, fai clic su un tipo di campo, poi su un campo nell'elenco <emph>Seleziona</emph> e, per finire, su <emph>Inserisci</emph>.</ahelp>"
#: 04090006.xhp
msgctxt ""
@@ -8660,7 +8660,7 @@ msgctxt ""
"24\n"
"help.text"
msgid "<ahelp hid=\".\">Select the format of the field that you want to insert. This option is available for numerical, boolean, date and time fields.</ahelp>"
-msgstr "<ahelp hid=\".\">Selezionate il formato del comando di campo da inserire. Questa opzione è disponibile solo per i comandi di campo numerici, logici e di data e ora.</ahelp>"
+msgstr "<ahelp hid=\".\">Selezionare il formato del comando di campo da inserire. Questa opzione è disponibile solo per i comandi di campo numerici, logici e di data e ora.</ahelp>"
#: 04090006.xhp
msgctxt ""
@@ -8746,7 +8746,7 @@ msgctxt ""
"par_idN10803\n"
"help.text"
msgid "<ahelp hid=\".\">When you print a document that contains database fields, a dialog asks you if you want to print a form letter. If you answer Yes, the <link href=\"text/swriter/01/01150000.xhp\">Mail Merge</link> dialog opens where you can select the database records to print.</ahelp>"
-msgstr "<ahelp hid=\".\">Quando stampate un documento che contiene dei campi di database, una finestra di dialogo chiede se volete utilizzare la stampa in serie. Rispondendo affermativamente si apre la finestra di dialogo <link href=\"text/swriter/01/01150000.xhp\">Stampa in serie</link>, in cui potete selezionare i record del database da stampare.</ahelp>"
+msgstr "<ahelp hid=\".\">Quando si stampa un documento che contiene dei campi di database, una finestra di dialogo chiede se si vuole utilizzare la stampa in serie. Rispondendo affermativamente si apre la finestra di dialogo <link href=\"text/swriter/01/01150000.xhp\">Stampa in serie</link>, in cui si possono selezionare i record del database da stampare.</ahelp>"
#: 04090006.xhp
msgctxt ""
@@ -12249,7 +12249,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "<ahelp hid=\".\">Select the level that you want to define.</ahelp>"
-msgstr "<ahelp hid=\".\">Selezionate il livello che desiderate definire.</ahelp>"
+msgstr "<ahelp hid=\".\">Selezionare il livello da definire.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -12518,7 +12518,7 @@ msgctxt ""
"par_id6499221\n"
"help.text"
msgid "<ahelp hid=\".\">Only visible when you click the E# button in the Structure line. Select to show the chapter number with or without separator.</ahelp>"
-msgstr "<ahelp hid=\".\">Visibile solamente quando fate clic sul bottone E# sulla linea di struttura. Selezionate questa opzione per mostrare il numero del capitolo con o senza separatore.</ahelp>"
+msgstr "<ahelp hid=\".\">Visibile solamente quando si fa clic sul pulsante E# nella linea di struttura. Selezionare questa opzione per mostrare il numero del capitolo con o senza separatore.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -12878,7 +12878,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "Lists the available bibliography entries. <ahelp hid=\".\">To add an entry to the Structure line, click the entry, click in an empty box on the Structure line, and then click <emph>Insert</emph>.</ahelp> Use the <link href=\"text/swriter/01/04120229.xhp\" name=\"Define Bibliography Entry\">Define Bibliography Entry</link> dialog to add new entries."
-msgstr "Elenca le voci bibliografiche disponibili. <ahelp hid=\".\">Per aggiungere una voce alla riga Struttura fate clic sulla voce di interesse, fate clic in una casella vuota nella riga Struttura, e infine fate clic su<emph>Inserisci</emph>.</ahelp> Per aggiungere nuove voci, usate la finestra di dialogo <link href=\"text/swriter/01/04120229.xhp\" name=\"Definisci voce bibliografica\">Definisci voce bibliografica.</link>"
+msgstr "Elenca le voci bibliografiche disponibili. <ahelp hid=\".\">Per aggiungere una voce alla riga Struttura, fare clic sulla voce di interesse, poi su una casella vuota nella riga Struttura, e infine su <emph>Inserisci</emph>.</ahelp> Per aggiungere nuove voci, usate la finestra di dialogo <link href=\"text/swriter/01/04120229.xhp\" name=\"Definisci voce bibliografica\">Definisci voce bibliografica.</link>"
#: 04120227.xhp
msgctxt ""
@@ -15462,7 +15462,7 @@ msgctxt ""
"53\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Distributes the text in multi-column sections. The text flows into all columns to the same height. The height of the section adjusts automatically.</ahelp> Evenly distributes the text in <link href=\"text/swriter/01/04020000.xhp\" name=\"multi-column sections\">multi-column sections</link>."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Distribuisce il testo in sezioni multi-colonna. Il testo fluisce in tutte le colonne alla stessa altezza. L'altezza della sezione si regola automaticamente.</ahelp> Distribuisce uniformemente il testo in <link href=\"text/swriter/01/04020000.xhp\" name=\"multi-column sections\">sezioni multicolonna</link>."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Distribuisce il testo in sezioni multi-colonna. Il testo fluisce in tutte le colonne alla stessa altezza. L'altezza della sezione si regola automaticamente.</ahelp> Distribuisce uniformemente il testo in <link href=\"text/swriter/01/04020000.xhp\" name=\"sezioni multicolonna\">sezioni multicolonna</link>."
#: 05040500.xhp
msgctxt ""
@@ -18006,7 +18006,7 @@ msgctxt ""
"47\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the color tolerance for the Color Replacer as a percentage. To increase the color range that the Color Replacer selects, enter a high percentage.</ahelp>"
-msgstr "<ahelp hid=\".\">Inserite la percentuale di tolleranza per la sostituzione colore. Per incrementare l'intervallo che la sostituzione colore seleziona, inserite una percentuale alta.</ahelp>"
+msgstr "<ahelp hid=\".\">Inserire la percentuale di tolleranza per la sostituzione colore. Per incrementare l'intervallo che la sostituzione colore seleziona, inserire una percentuale alta.</ahelp>"
#: 05060300.xhp
msgctxt ""
@@ -18823,7 +18823,7 @@ msgctxt ""
"6\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the macro that executes when the selected event occurs.</ahelp>"
-msgstr "<ahelp hid=\".\">Specificate la macro da eseguire al verificarsi dell'evento selezionato.</ahelp>"
+msgstr "<ahelp hid=\".\">Specificare la macro da eseguire al verificarsi dell'evento selezionato.</ahelp>"
#: 05060700.xhp
msgctxt ""
diff --git a/source/it/svx/inc.po b/source/it/svx/inc.po
index 25672e075cd..4286754a597 100644
--- a/source/it/svx/inc.po
+++ b/source/it/svx/inc.po
@@ -1,11 +1,11 @@
-#. extracted from svx/inc test
+#. extracted from svx/inc
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-12-13 19:07+0000\n"
-"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 13:06+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1450033673.000000\n"
+"X-POOTLE-MTIME: 1457442410.000000\n"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -626,7 +626,6 @@ msgctxt ""
msgid "Open ~Smart Tag Menu"
msgstr "Apri il menu ~Smart Tag"
-#: globlmn_tmpl.hrc
msgctxt ""
"globlmn_tmpl.hrc\n"
"ITEM_EDIT_IMAP\n"
diff --git a/source/ja/basic/source/classes.po b/source/ja/basic/source/classes.po
index e100eb05677..1883b956b13 100644
--- a/source/ja/basic/source/classes.po
+++ b/source/ja/basic/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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2016-01-26 15:28+0000\n"
-"Last-Translator: Naruhiko Ogasawara <naruoga@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 10:44+0000\n"
+"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1453822126.000000\n"
+"X-POOTLE-MTIME: 1457433880.000000\n"
#: sb.src
msgctxt ""
@@ -71,14 +71,13 @@ msgid "Not enough memory."
msgstr "メモリー不足。"
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_ALREADY_DIM & ERRCODE_RES_MASK\n"
"string.text"
msgid "Array already dimensioned."
-msgstr "配列の次元化済み。"
+msgstr "配列はすでに宣言されています。"
#: sb.src
msgctxt ""
diff --git a/source/ja/helpcontent2/source/text/shared/00.po b/source/ja/helpcontent2/source/text/shared/00.po
index 819a91f32f7..bfa14378523 100644
--- a/source/ja/helpcontent2/source/text/shared/00.po
+++ b/source/ja/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-09-01 18:02+0000\n"
-"Last-Translator: paz Ohhashi <paz.ohhashi@gmail.com>\n"
+"PO-Revision-Date: 2016-03-04 01:13+0000\n"
+"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1441130560.000000\n"
+"X-POOTLE-MTIME: 1457053991.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3971,12 +3971,13 @@ msgid "ODF 1.2 (Extended)"
msgstr "ODF 1.2 (拡張)"
#: 00000021.xhp
+#, fuzzy
msgctxt ""
"00000021.xhp\n"
"par_id100120091238112\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 00000021.xhp
msgctxt ""
diff --git a/source/ja/helpcontent2/source/text/shared/01.po b/source/ja/helpcontent2/source/text/shared/01.po
index c42b52fed22..089b72f2424 100644
--- a/source/ja/helpcontent2/source/text/shared/01.po
+++ b/source/ja/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-31 05:51+0000\n"
-"Last-Translator: nishbone <ml.nishibori.kiyotaka@gmail.com>\n"
+"PO-Revision-Date: 2016-03-04 01:45+0000\n"
+"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1454219515.000000\n"
+"X-POOTLE-MTIME: 1457055950.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7489,13 +7489,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr "指定しない場合、所定の文字列を表します。"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7507,13 +7508,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr "行ブレークと段落ブレーク以外のすべての単一文字を表します。たとえば、検索語として「sh.rt」を指定すると、「shirt」と「short」の両方が戻されます。"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7525,13 +7527,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr "検索語句が段落の先頭にある場合にのみ検索されます。段落の先頭にある特殊オブジェクト (空のフィードや文字にアンカーされた枠) は無視されます。たとえば、「^Peter」です。"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7551,13 +7554,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7596,13 +7600,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr "段落内で可能な限り長いテキストが常に検索されます。段落にテキスト「AX 4 AX4」が含まれている場合、先頭の A から末尾の 4 までが検索されます。"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7614,13 +7619,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr "「?」 の直前にある文字が0回または1回出現することを示します。たとえば 「テキ?ト」 と指定すると 「テスト」 と 「テキスト」 が検索されます。「x(ab|c)?y」 と指定すると 「xaby」 や 「xcy」 が検索されます。"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -15822,13 +15828,14 @@ msgid "Explanation"
msgstr "<emph>意味</emph>"
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
diff --git a/source/ja/helpcontent2/source/text/shared/02.po b/source/ja/helpcontent2/source/text/shared/02.po
index 5f0f54d4375..78f9e80cbb8 100644
--- a/source/ja/helpcontent2/source/text/shared/02.po
+++ b/source/ja/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-10-24 12:03+0000\n"
-"Last-Translator: paz Ohhashi <paz.ohhashi@gmail.com>\n"
+"PO-Revision-Date: 2016-03-04 01:56+0000\n"
+"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1445688195.000000\n"
+"X-POOTLE-MTIME: 1457056585.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -13865,13 +13865,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">リストに表示されているデータベースフィールドをすべて <emph>テーブルの列</emph> リストボックスに移動します。</ahelp> <emph>テーブルの列</emph> リストボックスに表示されているフィールドはすべて、ドキュメントに挿入されます。"
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13883,13 +13884,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">選択したデータベースフィールドを <emph>テーブル列</emph> リストボックスに移動します。</ahelp> また、項目をダブルクリックして、リストボックス <emph>テーブル列</emph> にその項目を移動することもできます。<emph>テーブル列</emph> リストボックスにリストされているフィールドはすべて、ドキュメントに挿入されます。"
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -14178,13 +14180,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr "データベーステーブルのすべての列が表示されます。ここに表示されている列は、ドキュメントに挿入するための選択リストボックスに移動できます。<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/insertdbcolumnsdialog/tabletxtcols\">ドキュメントに挿入するデータベース列を選択します。</ahelp>"
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15682,13 +15685,14 @@ msgid "Example"
msgstr "例"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15718,13 +15722,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr "「M?ller」は、たとえば Muller と Moller を検出"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15808,31 +15813,34 @@ msgid "Search with regular expressions"
msgstr "正規表現による検索"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/ka/cui/uiconfig/ui.po b/source/ka/cui/uiconfig/ui.po
index f36ec41fb14..44a5f41d02d 100644
--- a/source/ka/cui/uiconfig/ui.po
+++ b/source/ka/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 14:03+0000\n"
+"PO-Revision-Date: 2016-03-08 12:00+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: ka\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452261813.000000\n"
+"X-POOTLE-MTIME: 1457438424.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14104,31 +14104,34 @@ msgid "N_one"
msgstr "შენიშვნა"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
@@ -17410,40 +17413,44 @@ msgid "(None)"
msgstr "(არცერთი)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"1\n"
"stringlist.text"
msgid "("
-msgstr ""
+msgstr "("
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"2\n"
"stringlist.text"
msgid "["
-msgstr ""
+msgstr "["
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"3\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
#: twolinespage.ui
msgctxt ""
@@ -17464,40 +17471,44 @@ msgid "(None)"
msgstr "(არცერთი)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
#: twolinespage.ui
msgctxt ""
diff --git a/source/ka/dbaccess/uiconfig/ui.po b/source/ka/dbaccess/uiconfig/ui.po
index 1826728e711..d2f11eef714 100644
--- a/source/ka/dbaccess/uiconfig/ui.po
+++ b/source/ka/dbaccess/uiconfig/ui.po
@@ -4,15 +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: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2016-03-08 12:05+0000\n"
+"Last-Translator: system 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"
-"X-Generator: LibreOffice\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457438752.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1926,22 +1928,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1953,13 +1957,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3015,58 +3020,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/ka/extensions/uiconfig/sabpilot/ui.po b/source/ka/extensions/uiconfig/sabpilot/ui.po
index a77e6ecfa29..3b22c66acbf 100644
--- a/source/ka/extensions/uiconfig/sabpilot/ui.po
+++ b/source/ka/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:00+0000\n"
+"PO-Revision-Date: 2016-03-08 12:14+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435280433.000000\n"
+"X-POOTLE-MTIME: 1457439243.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/ka/helpcontent2/source/text/scalc/01.po b/source/ka/helpcontent2/source/text/scalc/01.po
index 571b72161d7..fed1c613fb6 100644
--- a/source/ka/helpcontent2/source/text/scalc/01.po
+++ b/source/ka/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 19:34+0000\n"
+"PO-Revision-Date: 2016-03-04 00:37+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431372862.000000\n"
+"X-POOTLE-MTIME: 1457051826.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -59995,13 +59995,14 @@ msgid "equal"
msgstr "ტოლია"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -60013,13 +60014,14 @@ msgid "less than"
msgstr "ნაკლებია ვიდრე"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
diff --git a/source/ka/helpcontent2/source/text/scalc/05.po b/source/ka/helpcontent2/source/text/scalc/05.po
index d450ea5c142..23cbc065a33 100644
--- a/source/ka/helpcontent2/source/text/scalc/05.po
+++ b/source/ka/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2015-04-23 16:01+0000\n"
+"PO-Revision-Date: 2016-03-04 00:39+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429804869.000000\n"
+"X-POOTLE-MTIME: 1457051982.000000\n"
#: 02140000.xhp
msgctxt ""
@@ -102,12 +102,13 @@ msgid "Explanation"
msgstr "ახსნა"
#: 02140000.xhp
+#, fuzzy
msgctxt ""
"02140000.xhp\n"
"par_id1668467\n"
"help.text"
msgid "###"
-msgstr ""
+msgstr "###"
#: 02140000.xhp
msgctxt ""
diff --git a/source/ka/helpcontent2/source/text/shared/00.po b/source/ka/helpcontent2/source/text/shared/00.po
index fd7bb992230..e8a57514dbc 100644
--- a/source/ka/helpcontent2/source/text/shared/00.po
+++ b/source/ka/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 16:01+0000\n"
+"PO-Revision-Date: 2016-03-04 00:56+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429804883.000000\n"
+"X-POOTLE-MTIME: 1457053011.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3972,12 +3972,13 @@ msgid "ODF 1.2 (Extended)"
msgstr ""
#: 00000021.xhp
+#, fuzzy
msgctxt ""
"00000021.xhp\n"
"par_id100120091238112\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 00000021.xhp
msgctxt ""
diff --git a/source/ka/helpcontent2/source/text/shared/01.po b/source/ka/helpcontent2/source/text/shared/01.po
index d2145a739ae..49785e4a4e7 100644
--- a/source/ka/helpcontent2/source/text/shared/01.po
+++ b/source/ka/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-12 13:11+0000\n"
+"PO-Revision-Date: 2016-03-04 01:13+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452604293.000000\n"
+"X-POOTLE-MTIME: 1457054008.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7490,13 +7490,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr "განსაზღვრის გარეშე ნებისმიერი ერთეული სიმბოლოს ჩვენება"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7508,13 +7509,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr "ნებისმიერი ერთეული სიმბოლოს წარმოდგენა გარდა სტრიქონის წყვეტისა და აბზაცის წყვეტისა. მაგალითად, ძიების ტერმინი \"sh.rt\" დააბრუნებს როგორც \"shirt\" ასევე \"short\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7526,13 +7528,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr "პოულობს მხოლოდ საძიებო ტერმინს, თუ ეს ტერმინი აბზაცის დასაწყისშია. საგანგებო ობიექტები, როგორიცაა ცარიელი ველები ან წამყვან სიმბოლოიანი ჩარჩოები უგულებელყოფილია აბზაცის დასაწყისში. მაგალითად: \"^Peter\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7552,13 +7555,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7597,13 +7601,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr "ყოველთვის პოულობს აბზაცში ძიების შაბლონის შესაფერის ყველაზე გრძელ სტრიქონს. პარაგრაფი შეიცავს \"AX 4 AX4\" სტრიქონს, მთლიანი ნაწყვეტი მოინიშნება."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7615,13 +7620,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -7703,13 +7709,14 @@ msgid "Match a word boundary. For example, \"\\bbook\" finds \"bookmark\" but no
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3149576\n"
"37\n"
"help.text"
msgid "^$"
-msgstr ""
+msgstr "^$"
#: 02100001.xhp
msgctxt ""
@@ -7721,13 +7728,14 @@ msgid "Finds an empty paragraph."
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3148550\n"
"41\n"
"help.text"
msgid "^."
-msgstr ""
+msgstr "^."
#: 02100001.xhp
msgctxt ""
@@ -7970,13 +7978,14 @@ msgid "Defines the minimum number of times that the character in front of the op
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3148616\n"
"213\n"
"help.text"
msgid "( )"
-msgstr ""
+msgstr "( )"
#: 02100001.xhp
msgctxt ""
@@ -15751,13 +15760,14 @@ msgid "Explanation"
msgstr "ახსნა"
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
@@ -15841,13 +15851,14 @@ msgid "3456.78 as 3456.8"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3150355\n"
"12\n"
"help.text"
msgid "####.#"
-msgstr ""
+msgstr "####.#"
#: 05020301.xhp
msgctxt ""
@@ -15895,13 +15906,14 @@ msgid "5.75 as 5 3/4 and 6.3 as 6 3/10"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3145315\n"
"18\n"
"help.text"
msgid "# ???/???"
-msgstr ""
+msgstr "# ???/???"
#: 05020301.xhp
msgctxt ""
@@ -15985,13 +15997,14 @@ msgid "15000 as 15,000"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3151223\n"
"25\n"
"help.text"
msgid "#,###"
-msgstr ""
+msgstr "#,###"
#: 05020301.xhp
msgctxt ""
@@ -16003,13 +16016,14 @@ msgid "16000 as 16"
msgstr ""
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3153961\n"
"27\n"
"help.text"
msgid "#,"
-msgstr ""
+msgstr "#,"
#: 05020301.xhp
msgctxt ""
@@ -19791,13 +19805,14 @@ msgid "<ahelp hid=\"cui/ui/paratabspage/radiobuttonBTN_FILLCHAR_NO\">Inserts no
msgstr ""
#: 05030300.xhp
+#, fuzzy
msgctxt ""
"05030300.xhp\n"
"hd_id3152933\n"
"26\n"
"help.text"
msgid "......."
-msgstr ""
+msgstr "......."
#: 05030300.xhp
msgctxt ""
@@ -19809,13 +19824,14 @@ msgid "<ahelp hid=\"cui/ui/paratabspage/radiobuttonBTN_FILLCHAR_POINTS\">Fills t
msgstr ""
#: 05030300.xhp
+#, fuzzy
msgctxt ""
"05030300.xhp\n"
"hd_id3156280\n"
"28\n"
"help.text"
msgid "------"
-msgstr ""
+msgstr "------"
#: 05030300.xhp
msgctxt ""
@@ -19827,13 +19843,14 @@ msgid "<ahelp hid=\"cui/ui/paratabspage/radiobuttonBTN_FILLCHAR_DASHLINE\">Fills
msgstr ""
#: 05030300.xhp
+#, fuzzy
msgctxt ""
"05030300.xhp\n"
"hd_id3157960\n"
"30\n"
"help.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: 05030300.xhp
msgctxt ""
@@ -34580,13 +34597,14 @@ msgid "The following table summarizes the line thickness for the different chara
msgstr ""
#: 06040100.xhp
+#, fuzzy
msgctxt ""
"06040100.xhp\n"
"par_id3148576\n"
"37\n"
"help.text"
msgid "---"
-msgstr ""
+msgstr "---"
#: 06040100.xhp
msgctxt ""
@@ -34598,13 +34616,14 @@ msgid "0.5pt single underline"
msgstr ""
#: 06040100.xhp
+#, fuzzy
msgctxt ""
"06040100.xhp\n"
"par_id3154472\n"
"39\n"
"help.text"
msgid "___"
-msgstr ""
+msgstr "___"
#: 06040100.xhp
msgctxt ""
@@ -34634,13 +34653,14 @@ msgid "1.1pt double underline"
msgstr ""
#: 06040100.xhp
+#, fuzzy
msgctxt ""
"06040100.xhp\n"
"par_id3148647\n"
"43\n"
"help.text"
msgid "***"
-msgstr ""
+msgstr "***"
#: 06040100.xhp
msgctxt ""
@@ -34670,13 +34690,14 @@ msgid "6.0pt double underline"
msgstr ""
#: 06040100.xhp
+#, fuzzy
msgctxt ""
"06040100.xhp\n"
"par_id3145591\n"
"47\n"
"help.text"
msgid "###"
-msgstr ""
+msgstr "###"
#: 06040100.xhp
msgctxt ""
@@ -41134,13 +41155,14 @@ msgid "File Property"
msgstr ""
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3151056\n"
"3\n"
"help.text"
msgid "<TITLE>"
-msgstr ""
+msgstr "<TITLE>"
#: about_meta_tags.xhp
msgctxt ""
@@ -41152,13 +41174,14 @@ msgid "Subject"
msgstr "თემა"
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3147228\n"
"5\n"
"help.text"
msgid "<META NAME=\"CLASSIFICATION\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"CLASSIFICATION\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
@@ -41170,13 +41193,14 @@ msgid "Keywords"
msgstr "საკვანძო სიტყვები"
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3156422\n"
"7\n"
"help.text"
msgid "<META NAME=\"KEYWORDS\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"KEYWORDS\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
@@ -41188,13 +41212,14 @@ msgid "Description"
msgstr "წარწერა"
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3125863\n"
"9\n"
"help.text"
msgid "<META NAME=\"DESCRIPTION\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"DESCRIPTION\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
@@ -41206,13 +41231,14 @@ msgid "Info fields 1...4"
msgstr ""
#: about_meta_tags.xhp
+#, fuzzy
msgctxt ""
"about_meta_tags.xhp\n"
"par_id3157892\n"
"11\n"
"help.text"
msgid "<META NAME=\"Info field name\" CONTENT=\"Field Content\">"
-msgstr ""
+msgstr "<META NAME=\"Info field name\" CONTENT=\"Field Content\">"
#: about_meta_tags.xhp
msgctxt ""
diff --git a/source/ka/helpcontent2/source/text/shared/02.po b/source/ka/helpcontent2/source/text/shared/02.po
index 6d63e1b9501..578502ba38e 100644
--- a/source/ka/helpcontent2/source/text/shared/02.po
+++ b/source/ka/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 19:35+0000\n"
+"PO-Revision-Date: 2016-03-04 01:22+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431372926.000000\n"
+"X-POOTLE-MTIME: 1457054555.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -6043,13 +6043,14 @@ msgid "Not possible"
msgstr ""
#: 01170102.xhp
+#, fuzzy
msgctxt ""
"01170102.xhp\n"
"par_id3153109\n"
"26\n"
"help.text"
msgid "\"\""
-msgstr ""
+msgstr "\"\""
#: 01170102.xhp
msgctxt ""
@@ -13873,13 +13874,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr ""
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13891,13 +13893,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr ""
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -14188,13 +14191,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr ""
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15695,13 +15699,14 @@ msgid "Example"
msgstr "მაგალითად"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15731,13 +15736,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr ""
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15821,40 +15827,44 @@ msgid "Search with regular expressions"
msgstr ""
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150428\n"
"73\n"
"help.text"
msgid ".*"
-msgstr ""
+msgstr ".*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/ka/helpcontent2/source/text/shared/autopi.po b/source/ka/helpcontent2/source/text/shared/autopi.po
index 67f34807519..d01cadf44aa 100644
--- a/source/ka/helpcontent2/source/text/shared/autopi.po
+++ b/source/ka/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-05-11 19:35+0000\n"
+"PO-Revision-Date: 2016-03-04 01:28+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431372932.000000\n"
+"X-POOTLE-MTIME: 1457054910.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3422,13 +3422,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3459,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3496,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr ""
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4524,13 +4527,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr ""
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4560,13 +4564,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr ""
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4720,13 +4725,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr ""
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4738,13 +4744,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr ""
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
@@ -7738,13 +7745,14 @@ msgid "<ahelp hid=\"HID_DLGCONVERT_TBTARGET\">Specifies the folder and path in w
msgstr ""
#: 01150000.xhp
+#, fuzzy
msgctxt ""
"01150000.xhp\n"
"par_id3154151\n"
"19\n"
"help.text"
msgid "<emph>...</emph>"
-msgstr ""
+msgstr "<emph>...</emph>"
#: 01150000.xhp
msgctxt ""
diff --git a/source/ka/helpcontent2/source/text/shared/explorer/database.po b/source/ka/helpcontent2/source/text/shared/explorer/database.po
index 813de797cd3..ffe4196fcb4 100644
--- a/source/ka/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/ka/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-11 19:35+0000\n"
+"PO-Revision-Date: 2016-03-04 01:35+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431372952.000000\n"
+"X-POOTLE-MTIME: 1457055356.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1760,13 +1760,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr "... ველის შიგთავსი არ შეესაბამება კონკრეტულ გამოსახულებას."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1787,13 +1788,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr "... ველის შიგთავსი კონკრეტულ გამოსახულებაზე მეტია"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2793,13 +2795,14 @@ msgid "No"
msgstr "არა"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6232,13 +6235,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6268,13 +6272,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr ""
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12477,12 +12482,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr ""
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14505,12 +14511,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr ""
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/ka/helpcontent2/source/text/smath/01.po b/source/ka/helpcontent2/source/text/smath/01.po
index 5807c9d9d6e..a8013af1073 100644
--- a/source/ka/helpcontent2/source/text/smath/01.po
+++ b/source/ka/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 19:36+0000\n"
+"PO-Revision-Date: 2016-03-04 02:14+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431372998.000000\n"
+"X-POOTLE-MTIME: 1457057646.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -6278,22 +6278,24 @@ msgid "\\{ or \\lbrace, \\} or \\rbrace"
msgstr ""
#: 03091100.xhp
+#, fuzzy
msgctxt ""
"03091100.xhp\n"
"par_id3150756\n"
"26\n"
"help.text"
msgid "\\(, \\)"
-msgstr ""
+msgstr "\\(, \\)"
#: 03091100.xhp
+#, fuzzy
msgctxt ""
"03091100.xhp\n"
"par_id3145207\n"
"27\n"
"help.text"
msgid "\\[, \\]"
-msgstr ""
+msgstr "\\[, \\]"
#: 03091100.xhp
msgctxt ""
diff --git a/source/ka/helpcontent2/source/text/swriter/01.po b/source/ka/helpcontent2/source/text/swriter/01.po
index 198b8049cc4..0827c000c65 100644
--- a/source/ka/helpcontent2/source/text/swriter/01.po
+++ b/source/ka/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 19:37+0000\n"
+"PO-Revision-Date: 2016-03-04 02:34+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431373048.000000\n"
+"X-POOTLE-MTIME: 1457058866.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -11030,13 +11030,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">მონიშნეთ პარაგრაფის სტილი, რომლის გამოყენებაც გსურთ მონიშნულ ინდექსის დონეზე და შემდეგ დააჭირეთ გამოყენების<emph><) </emph>ღილაკს.</ahelp>"
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -27774,12 +27775,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">მონიშნეთ ველი და გადაათრიეთ სხვა სიის ველში.</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27790,12 +27792,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">ამატებს მონიშნულ ველს მისამართტა ელემენტთა სიიდან სხვა სიაზე. შეგიძლიათ იგივე ველის დამატება ერთჯერ მეტად.</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27982,12 +27985,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">მონიშნეთ ველი და გადაათრიეთ სხვა სიის ველში.</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27998,12 +28002,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elem
msgstr "<ahelp hid=\".\">ამატებს მონიშნულ ველებს მისალმების ელემენტების სიიდან სხვა სიას. შეგიძიათ დაამატოთ ველი ერთჯერ მეტად.</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28438,12 +28443,13 @@ msgid "<ahelp hid=\".\">Select an address field and drag the field to the other
msgstr "<ahelp hid=\".\">მონიშნეთ მისამართთა ველი და ჩააგდეთ სხვა სიის ველში.</ahelp>"
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28454,12 +28460,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">ამატებს მონიშნულ ველს მისამართთა ელემენტების სიიდან სხვა სიაზე.</ahelp> შეგიძლიათ იგივე ველის ერთჯერ მეტად დამატება."
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/ka/helpcontent2/source/text/swriter/02.po b/source/ka/helpcontent2/source/text/swriter/02.po
index 51c44d971d1..a14a165f4c3 100644
--- a/source/ka/helpcontent2/source/text/swriter/02.po
+++ b/source/ka/helpcontent2/source/text/swriter/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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 16:03+0000\n"
+"PO-Revision-Date: 2016-03-04 02:36+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429804999.000000\n"
+"X-POOTLE-MTIME: 1457059014.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1672,13 +1672,14 @@ msgid "Subtraction"
msgstr "გამოკლება"
#: 14020000.xhp
+#, fuzzy
msgctxt ""
"14020000.xhp\n"
"par_id3150087\n"
"12\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 14020000.xhp
msgctxt ""
diff --git a/source/ka/librelogo/source/pythonpath.po b/source/ka/librelogo/source/pythonpath.po
index dd89eb681fd..231defe433b 100644
--- a/source/ka/librelogo/source/pythonpath.po
+++ b/source/ka/librelogo/source/pythonpath.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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2013-02-17 21:01+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 12:26+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361134917.0\n"
+"X-POOTLE-MTIME: 1457440013.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -769,20 +769,22 @@ msgid "pi|π"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
"property.text"
msgid "."
-msgstr ""
+msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/ka/officecfg/registry/data/org/openoffice/Office.po b/source/ka/officecfg/registry/data/org/openoffice/Office.po
index 1aecebd650c..c812d121cac 100644
--- a/source/ka/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/ka/officecfg/registry/data/org/openoffice/Office.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-08-06 22:53+0000\n"
+"PO-Revision-Date: 2016-03-08 12:38+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438901622.000000\n"
+"X-POOTLE-MTIME: 1457440711.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1430,13 +1430,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/ka/reportdesign/uiconfig/dbreport/ui.po b/source/ka/reportdesign/uiconfig/dbreport/ui.po
index 2a2c21a02b3..ec04d2e6ebb 100644
--- a/source/ka/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/ka/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-19 02:19+0000\n"
+"PO-Revision-Date: 2016-03-08 13:04+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416363545.000000\n"
+"X-POOTLE-MTIME: 1457442278.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/ka/sc/source/ui/src.po b/source/ka/sc/source/ui/src.po
index 8eb05fb4815..ba0dc0878e5 100644
--- a/source/ka/sc/source/ui/src.po
+++ b/source/ka/sc/source/ui/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-12-11 12:57+0100\n"
-"PO-Revision-Date: 2015-06-26 01:17+0000\n"
+"PO-Revision-Date: 2016-03-08 13:21+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435281465.000000\n"
+"X-POOTLE-MTIME: 1457443283.000000\n"
#: condformatdlg.src
#, fuzzy
@@ -2772,13 +2772,14 @@ msgid "Text Attributes"
msgstr "ტექსტის ატრიბუტები"
#: globstr.src
+#, fuzzy
msgctxt ""
"globstr.src\n"
"RID_GLOBSTR\n"
"STR_HFCMD_DELIMITER\n"
"string.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: globstr.src
msgctxt ""
diff --git a/source/ka/sd/source/ui/app.po b/source/ka/sd/source/ui/app.po
index 45649cc92e9..14567689c31 100644
--- a/source/ka/sd/source/ui/app.po
+++ b/source/ka/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-12 19:22+0000\n"
+"PO-Revision-Date: 2016-03-08 13:46+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431458530.000000\n"
+"X-POOTLE-MTIME: 1457444793.000000\n"
#: menuids3_tmpl.src
msgctxt ""
@@ -3735,12 +3735,13 @@ msgid "<number>"
msgstr "<რიცხვი>"
#: strings.src
+#, fuzzy
msgctxt ""
"strings.src\n"
"STR_FIELD_PLACEHOLDER_COUNT\n"
"string.text"
msgid "<count>"
-msgstr ""
+msgstr "<count>"
#: strings.src
msgctxt ""
diff --git a/source/ka/sd/uiconfig/simpress/ui.po b/source/ka/sd/uiconfig/simpress/ui.po
index 02236a138fd..c7da5b12e99 100644
--- a/source/ka/sd/uiconfig/simpress/ui.po
+++ b/source/ka/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:21+0000\n"
+"PO-Revision-Date: 2016-03-08 13:50+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: ka\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435281692.000000\n"
+"X-POOTLE-MTIME: 1457445000.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -1005,22 +1005,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/ka/sw/source/core/undo.po b/source/ka/sw/source/core/undo.po
index d13e59d0bde..e97fa53323c 100644
--- a/source/ka/sw/source/core/undo.po
+++ b/source/ka/sw/source/core/undo.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:40+0200\n"
-"PO-Revision-Date: 2015-05-12 19:28+0000\n"
+"PO-Revision-Date: 2016-03-08 14:27+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431458929.000000\n"
+"X-POOTLE-MTIME: 1457447254.000000\n"
#: undo.src
msgctxt ""
@@ -794,20 +794,22 @@ msgid "Table/index changed"
msgstr "შეცვლილია ცხრილი/ინდექსი"
#: undo.src
+#, fuzzy
msgctxt ""
"undo.src\n"
"STR_START_QUOTE\n"
"string.text"
msgid "'"
-msgstr ""
+msgstr "'"
#: undo.src
+#, fuzzy
msgctxt ""
"undo.src\n"
"STR_END_QUOTE\n"
"string.text"
msgid "'"
-msgstr ""
+msgstr "'"
#: undo.src
msgctxt ""
diff --git a/source/ka/sw/source/ui/dbui.po b/source/ka/sw/source/ui/dbui.po
index fcf8183d14b..609c7314c9f 100644
--- a/source/ka/sw/source/ui/dbui.po
+++ b/source/ka/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-12 19:29+0000\n"
+"PO-Revision-Date: 2016-03-08 14:30+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431458992.000000\n"
+"X-POOTLE-MTIME: 1457447424.000000\n"
#: dbui.src
msgctxt ""
@@ -488,31 +488,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/ka/sw/source/ui/index.po b/source/ka/sw/source/ui/index.po
index 624f5c8a9ea..e4bf203fe42 100644
--- a/source/ka/sw/source/ui/index.po
+++ b/source/ka/sw/source/ui/index.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2012-01-05 13:20+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 14:32+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457447541.000000\n"
#: cnttab.src
msgctxt ""
@@ -56,20 +57,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -104,12 +107,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/ka/sw/source/ui/misc.po b/source/ka/sw/source/ui/misc.po
index 4e213103588..7b80e185c30 100644
--- a/source/ka/sw/source/ui/misc.po
+++ b/source/ka/sw/source/ui/misc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-05-11 16:12+0200\n"
-"PO-Revision-Date: 2015-05-12 19:30+0000\n"
+"PO-Revision-Date: 2016-03-08 14:32+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431459017.000000\n"
+"X-POOTLE-MTIME: 1457447550.000000\n"
#: glossary.src
msgctxt ""
@@ -41,12 +41,13 @@ msgid "Delete the category "
msgstr "კატეგორიის წაშლა"
#: glossary.src
+#, fuzzy
msgctxt ""
"glossary.src\n"
"STR_QUERY_DELETE_GROUP2\n"
"string.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: glossary.src
msgctxt ""
diff --git a/source/ka/sw/uiconfig/swriter/ui.po b/source/ka/sw/uiconfig/swriter/ui.po
index b8c7a3530dd..f5d3081ecfc 100644
--- a/source/ka/sw/uiconfig/swriter/ui.po
+++ b/source/ka/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 22:54+0000\n"
+"PO-Revision-Date: 2016-03-08 14:48+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: ka\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438901690.000000\n"
+"X-POOTLE-MTIME: 1457448512.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2294,13 +2294,14 @@ msgid "Convert Table to Text"
msgstr "გადააკონვერტე ცხრილი ტექსტად"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2475,13 +2476,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2493,13 +2495,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4392,13 +4395,14 @@ msgid "None"
msgstr "შენიშვნა"
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5352,22 +5356,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6287,13 +6293,14 @@ msgid "Numbering separator:"
msgstr ""
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
#, fuzzy
@@ -8616,13 +8623,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8634,13 +8642,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9485,13 +9494,14 @@ msgid "Position:"
msgstr "მდებარეობა"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
msgctxt ""
@@ -15545,40 +15555,44 @@ msgid "[none]"
msgstr "[არცერთი]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/ka/vcl/source/src.po b/source/ka/vcl/source/src.po
index 20fd4857d05..f2e38dfc181 100644
--- a/source/ka/vcl/source/src.po
+++ b/source/ka/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 17:37+0000\n"
+"PO-Revision-Date: 2016-03-08 14:52+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449855442.000000\n"
+"X-POOTLE-MTIME: 1457448746.000000\n"
#: app.src
msgctxt ""
@@ -1214,12 +1214,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1378,13 +1379,14 @@ msgid "pc"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"\"\n"
"itemlist.text"
msgid "\""
-msgstr ""
+msgstr "\""
#: units.src
msgctxt ""
@@ -1405,13 +1407,14 @@ msgid "inch"
msgstr "დიუმი"
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"'\n"
"itemlist.text"
msgid "'"
-msgstr ""
+msgstr "'"
#: units.src
msgctxt ""
@@ -1495,13 +1498,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/ka/wizards/source/formwizard.po b/source/ka/wizards/source/formwizard.po
index cd4ab53f123..28245d007ca 100644
--- a/source/ka/wizards/source/formwizard.po
+++ b/source/ka/wizards/source/formwizard.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: 2015-05-12 19:31+0000\n"
+"PO-Revision-Date: 2016-03-08 14:59+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431459097.000000\n"
+"X-POOTLE-MTIME: 1457449156.000000\n"
#: dbwizres.src
msgctxt ""
@@ -2529,12 +2529,13 @@ msgid "+"
msgstr ""
#: dbwizres.src
+#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_DB_TABLE_WIZARD_START + 22\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: dbwizres.src
msgctxt ""
diff --git a/source/kk/filter/source/config/fragments/filters.po b/source/kk/filter/source/config/fragments/filters.po
index b6f33c5aef3..3da7bbbc50b 100644
--- a/source/kk/filter/source/config/fragments/filters.po
+++ b/source/kk/filter/source/config/fragments/filters.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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-15 09:44+0000\n"
-"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 13:11+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1450172655.000000\n"
+"X-POOTLE-MTIME: 1457442697.000000\n"
#: AbiWord.xcu
msgctxt ""
@@ -1898,7 +1898,6 @@ msgid "OpenOffice.org 1.0 HTML Template"
msgstr "OpenOffice.org 1.0 HTML үлгісі"
#: writer_web_jpg_Export.xcu
-#, fuzzy
msgctxt ""
"writer_web_jpg_Export.xcu\n"
"writer_web_jpg_Export\n"
@@ -1917,7 +1916,6 @@ msgid "PDF - Portable Document Format"
msgstr "PDF - Portable Document Format"
#: writer_web_png_Export.xcu
-#, fuzzy
msgctxt ""
"writer_web_png_Export.xcu\n"
"writer_web_png_Export\n"
diff --git a/source/kk/sfx2/uiconfig/ui.po b/source/kk/sfx2/uiconfig/ui.po
index 0703ed1c90a..433f3f68fe5 100644
--- a/source/kk/sfx2/uiconfig/ui.po
+++ b/source/kk/sfx2/uiconfig/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-12 04:05+0000\n"
-"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 14:58+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: kk\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452571529.000000\n"
+"X-POOTLE-MTIME: 1457449093.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -1538,7 +1538,6 @@ msgid "_Open File"
msgstr "Файлды а_шу"
#: startcenter.ui
-#, fuzzy
msgctxt ""
"startcenter.ui\n"
"open_remote\n"
diff --git a/source/kk/vcl/source/src.po b/source/kk/vcl/source/src.po
index 0c657056278..f85b0700e72 100644
--- a/source/kk/vcl/source/src.po
+++ b/source/kk/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 17:52+0000\n"
+"PO-Revision-Date: 2016-03-08 15:57+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449856376.000000\n"
+"X-POOTLE-MTIME: 1457452624.000000\n"
#: app.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"SV_APP_CPUTHREADS\n"
"string.text"
msgid "CPU Threads: "
-msgstr ""
+msgstr "ОП процестер саны: "
#: app.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"SV_APP_OSVERSION\n"
"string.text"
msgid "OS Version: "
-msgstr ""
+msgstr "ОЖ нұсқасы: "
#: app.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"SV_APP_UIRENDER\n"
"string.text"
msgid "UI Render: "
-msgstr ""
+msgstr "ПИ бейнеленуі: "
#: app.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"SV_APP_GL\n"
"string.text"
msgid "GL"
-msgstr ""
+msgstr "GL"
#: app.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"SV_APP_DEFAULT\n"
"string.text"
msgid "default"
-msgstr ""
+msgstr "үнсіз келісім бойынша"
#. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string
#: btntext.src
diff --git a/source/km/dbaccess/uiconfig/ui.po b/source/km/dbaccess/uiconfig/ui.po
index b3d8eb6593a..dd805fea7d4 100644
--- a/source/km/dbaccess/uiconfig/ui.po
+++ b/source/km/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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-05-12 20:36+0000\n"
+"PO-Revision-Date: 2016-03-08 13:52+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431462960.000000\n"
+"X-POOTLE-MTIME: 1457445173.000000\n"
#: admindialog.ui
#, fuzzy
@@ -3054,58 +3054,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/km/extensions/uiconfig/sabpilot/ui.po b/source/km/extensions/uiconfig/sabpilot/ui.po
index be24d0e9c7d..982107c4eef 100644
--- a/source/km/extensions/uiconfig/sabpilot/ui.po
+++ b/source/km/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:25+0000\n"
+"PO-Revision-Date: 2016-03-08 14:01+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435281907.000000\n"
+"X-POOTLE-MTIME: 1457445699.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -290,13 +290,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -308,13 +309,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -389,22 +391,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -668,13 +672,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/km/reportdesign/uiconfig/dbreport/ui.po b/source/km/reportdesign/uiconfig/dbreport/ui.po
index 148a6a79bed..d7e4113a5bc 100644
--- a/source/km/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/km/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-19 03:06+0000\n"
+"PO-Revision-Date: 2016-03-08 14:56+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416366374.000000\n"
+"X-POOTLE-MTIME: 1457448989.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/km/sw/uiconfig/swriter/ui.po b/source/km/sw/uiconfig/swriter/ui.po
index af18bc34a0d..4af497f862b 100644
--- a/source/km/sw/uiconfig/swriter/ui.po
+++ b/source/km/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 23:02+0000\n"
+"PO-Revision-Date: 2016-03-08 16:44+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: km\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438902154.000000\n"
+"X-POOTLE-MTIME: 1457455498.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2491,13 +2491,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2509,13 +2510,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -8608,13 +8610,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8626,13 +8629,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
diff --git a/source/kmr-Latn/cui/uiconfig/ui.po b/source/kmr-Latn/cui/uiconfig/ui.po
index 4ef898760ae..524b0f463a1 100644
--- a/source/kmr-Latn/cui/uiconfig/ui.po
+++ b/source/kmr-Latn/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 14:09+0000\n"
+"PO-Revision-Date: 2016-03-08 14:12+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: kmr-Latn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452262197.000000\n"
+"X-POOTLE-MTIME: 1457446366.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14071,31 +14071,34 @@ msgid "N_one"
msgstr ""
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
@@ -17375,40 +17378,44 @@ msgid "(None)"
msgstr "(Tune)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"1\n"
"stringlist.text"
msgid "("
-msgstr ""
+msgstr "("
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"2\n"
"stringlist.text"
msgid "["
-msgstr ""
+msgstr "["
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"3\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
#: twolinespage.ui
#, fuzzy
@@ -17431,40 +17438,44 @@ msgid "(None)"
msgstr "(Tune)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
#: twolinespage.ui
#, fuzzy
diff --git a/source/kmr-Latn/dbaccess/uiconfig/ui.po b/source/kmr-Latn/dbaccess/uiconfig/ui.po
index dbd74ddbc24..d0e3c4449f8 100644
--- a/source/kmr-Latn/dbaccess/uiconfig/ui.po
+++ b/source/kmr-Latn/dbaccess/uiconfig/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-04-22 23:40+0200\n"
-"PO-Revision-Date: 2013-02-17 21:06+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 14:18+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361135209.0\n"
+"X-POOTLE-MTIME: 1457446683.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1928,22 +1928,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1955,13 +1957,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3017,58 +3020,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/kmr-Latn/extensions/uiconfig/sabpilot/ui.po b/source/kmr-Latn/extensions/uiconfig/sabpilot/ui.po
index dae3b5179b3..7baaf91ed87 100644
--- a/source/kmr-Latn/extensions/uiconfig/sabpilot/ui.po
+++ b/source/kmr-Latn/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:16+0000\n"
+"PO-Revision-Date: 2016-03-08 14:25+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435281416.000000\n"
+"X-POOTLE-MTIME: 1457447140.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/kmr-Latn/librelogo/source/pythonpath.po b/source/kmr-Latn/librelogo/source/pythonpath.po
index d2c565c2d0c..dedf65ec1cd 100644
--- a/source/kmr-Latn/librelogo/source/pythonpath.po
+++ b/source/kmr-Latn/librelogo/source/pythonpath.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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2013-02-17 21:06+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 14:40+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361135209.0\n"
+"X-POOTLE-MTIME: 1457448041.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -793,20 +793,22 @@ msgid "pi|π"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
"property.text"
msgid "."
-msgstr ""
+msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office.po b/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office.po
index 89bd85353cd..9e1415d6618 100644
--- a/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office.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-08-06 22:54+0000\n"
+"PO-Revision-Date: 2016-03-08 14:52+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438901654.000000\n"
+"X-POOTLE-MTIME: 1457448722.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1430,13 +1430,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/kmr-Latn/reportdesign/uiconfig/dbreport/ui.po b/source/kmr-Latn/reportdesign/uiconfig/dbreport/ui.po
index fad4887f62f..ecd7a3a5a0a 100644
--- a/source/kmr-Latn/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/kmr-Latn/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-19 03:22+0000\n"
+"PO-Revision-Date: 2016-03-08 15:12+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416367337.000000\n"
+"X-POOTLE-MTIME: 1457449941.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/kmr-Latn/sc/uiconfig/scalc/ui.po b/source/kmr-Latn/sc/uiconfig/scalc/ui.po
index 861fece427f..7d2251257aa 100644
--- a/source/kmr-Latn/sc/uiconfig/scalc/ui.po
+++ b/source/kmr-Latn/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-06-26 01:29+0000\n"
+"PO-Revision-Date: 2016-03-08 15:35+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: kmr-Latn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435282173.000000\n"
+"X-POOTLE-MTIME: 1457451318.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6390,22 +6390,24 @@ msgid "Distribution:"
msgstr ""
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter1-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter2-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
msgctxt ""
diff --git a/source/kmr-Latn/sd/source/ui/app.po b/source/kmr-Latn/sd/source/ui/app.po
index b0daae6617f..39b082df98b 100644
--- a/source/kmr-Latn/sd/source/ui/app.po
+++ b/source/kmr-Latn/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-12 21:13+0000\n"
+"PO-Revision-Date: 2016-03-08 15:52+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431465206.000000\n"
+"X-POOTLE-MTIME: 1457452323.000000\n"
#: menuids3_tmpl.src
msgctxt ""
@@ -3750,12 +3750,13 @@ msgid "<number>"
msgstr "<number>"
#: strings.src
+#, fuzzy
msgctxt ""
"strings.src\n"
"STR_FIELD_PLACEHOLDER_COUNT\n"
"string.text"
msgid "<count>"
-msgstr ""
+msgstr "<count>"
#: strings.src
msgctxt ""
diff --git a/source/kmr-Latn/sd/uiconfig/simpress/ui.po b/source/kmr-Latn/sd/uiconfig/simpress/ui.po
index ee3163d25be..c5fdd383e88 100644
--- a/source/kmr-Latn/sd/uiconfig/simpress/ui.po
+++ b/source/kmr-Latn/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:31+0000\n"
+"PO-Revision-Date: 2016-03-08 15:54+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: kmr-Latn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435282282.000000\n"
+"X-POOTLE-MTIME: 1457452476.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -998,22 +998,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/kmr-Latn/sw/source/ui/dbui.po b/source/kmr-Latn/sw/source/ui/dbui.po
index d0bc72deb2c..dba5ef29593 100644
--- a/source/kmr-Latn/sw/source/ui/dbui.po
+++ b/source/kmr-Latn/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-12 21:21+0000\n"
+"PO-Revision-Date: 2016-03-08 16:24+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431465691.000000\n"
+"X-POOTLE-MTIME: 1457454248.000000\n"
#: dbui.src
msgctxt ""
@@ -487,31 +487,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/kmr-Latn/sw/source/ui/index.po b/source/kmr-Latn/sw/source/ui/index.po
index 6162548b61c..0e5bed15dda 100644
--- a/source/kmr-Latn/sw/source/ui/index.po
+++ b/source/kmr-Latn/sw/source/ui/index.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2012-01-05 13:34+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 16:25+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457454342.000000\n"
#: cnttab.src
#, fuzzy
@@ -57,20 +58,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -105,12 +108,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/kmr-Latn/sw/uiconfig/swriter/ui.po b/source/kmr-Latn/sw/uiconfig/swriter/ui.po
index b8abcd6841b..c750ab3bfb2 100644
--- a/source/kmr-Latn/sw/uiconfig/swriter/ui.po
+++ b/source/kmr-Latn/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 22:54+0000\n"
+"PO-Revision-Date: 2016-03-08 16:36+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: kmr-Latn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438901693.000000\n"
+"X-POOTLE-MTIME: 1457454980.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2311,13 +2311,14 @@ msgid "Convert Table to Text"
msgstr "Tabloyê veguherîne nivîsê"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2503,13 +2504,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2521,13 +2523,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4434,13 +4437,14 @@ msgid "None"
msgstr ""
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5422,22 +5426,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6347,13 +6353,14 @@ msgid "Position:"
msgstr "Cih"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"separator_edit\n"
"text\n"
"string.text"
msgid ": "
-msgstr ""
+msgstr ": "
#: insertcaption.ui
msgctxt ""
@@ -6365,13 +6372,14 @@ msgid "Numbering separator:"
msgstr ""
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
msgctxt ""
@@ -8708,13 +8716,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8726,13 +8735,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9580,13 +9590,14 @@ msgid "Position:"
msgstr "Cih"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
#, fuzzy
@@ -15705,40 +15716,44 @@ msgid "[none]"
msgstr "[Ne yek]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/kmr-Latn/vcl/source/src.po b/source/kmr-Latn/vcl/source/src.po
index 7de99de3b65..b5d2a4d2ea5 100644
--- a/source/kmr-Latn/vcl/source/src.po
+++ b/source/kmr-Latn/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 17:52+0000\n"
+"PO-Revision-Date: 2016-03-08 16:39+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449856320.000000\n"
+"X-POOTLE-MTIME: 1457455187.000000\n"
#: app.src
msgctxt ""
@@ -1187,12 +1187,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1470,13 +1471,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/kn/sw/source/ui/dbui.po b/source/kn/sw/source/ui/dbui.po
index 83279550598..c23505496ff 100644
--- a/source/kn/sw/source/ui/dbui.po
+++ b/source/kn/sw/source/ui/dbui.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2012-12-26 11:49+0000\n"
-"Last-Translator: Shankar <svenkate@redhat.com>\n"
+"PO-Revision-Date: 2016-03-08 17:10+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1356522570.0\n"
+"X-POOTLE-MTIME: 1457457058.000000\n"
#: dbui.src
msgctxt ""
@@ -485,31 +485,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/kn/sw/source/ui/index.po b/source/kn/sw/source/ui/index.po
index 41d4bb5f220..a5b9a9d2670 100644
--- a/source/kn/sw/source/ui/index.po
+++ b/source/kn/sw/source/ui/index.po
@@ -4,16 +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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2013-06-25 18:50+0530\n"
-"Last-Translator: \n"
+"PO-Revision-Date: 2016-03-08 17:12+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Kannada <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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457457152.000000\n"
#: cnttab.src
msgctxt ""
@@ -56,20 +57,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -104,12 +107,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/kn/sw/source/uibase/dbui.po b/source/kn/sw/source/uibase/dbui.po
index d105004cea9..f30fe1ec407 100644
--- a/source/kn/sw/source/uibase/dbui.po
+++ b/source/kn/sw/source/uibase/dbui.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2014-05-30 13:08+0200\n"
-"PO-Revision-Date: 2012-12-26 11:49+0000\n"
-"Last-Translator: Shankar <svenkate@redhat.com>\n"
+"PO-Revision-Date: 2016-03-08 17:16+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1356522570.0\n"
+"X-POOTLE-MTIME: 1457457364.000000\n"
#: createaddresslistdialog.src
msgctxt ""
@@ -609,31 +609,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/kn/sw/uiconfig/swriter/ui.po b/source/kn/sw/uiconfig/swriter/ui.po
index 1ec30f24ce5..ce2f24dc60f 100644
--- a/source/kn/sw/uiconfig/swriter/ui.po
+++ b/source/kn/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 23:16+0000\n"
+"PO-Revision-Date: 2016-03-08 17:28+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438902995.000000\n"
+"X-POOTLE-MTIME: 1457458088.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -4452,13 +4452,14 @@ msgid "None"
msgstr "ಏನೂ ಇಲ್ಲ"
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5424,22 +5425,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -8712,13 +8715,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8730,13 +8734,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -15769,40 +15774,44 @@ msgid "[none]"
msgstr "[ಏನೂ ಇಲ್ಲ]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/ko/dbaccess/uiconfig/ui.po b/source/ko/dbaccess/uiconfig/ui.po
index 5e2c39b8dbe..154e6ce354c 100644
--- a/source/ko/dbaccess/uiconfig/ui.po
+++ b/source/ko/dbaccess/uiconfig/ui.po
@@ -4,15 +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: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2016-03-08 14:33+0000\n"
+"Last-Translator: system 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"
-"X-Generator: LibreOffice\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457447609.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1926,22 +1928,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1953,13 +1957,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3015,58 +3020,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/ko/extensions/uiconfig/sabpilot/ui.po b/source/ko/extensions/uiconfig/sabpilot/ui.po
index 8aeaf8cb306..6c5acd04b3d 100644
--- a/source/ko/extensions/uiconfig/sabpilot/ui.po
+++ b/source/ko/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:25+0000\n"
+"PO-Revision-Date: 2016-03-08 14:41+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435281941.000000\n"
+"X-POOTLE-MTIME: 1457448102.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/scalc/01.po b/source/ko/helpcontent2/source/text/scalc/01.po
index e1e233b59fd..ffae1ff1a3a 100644
--- a/source/ko/helpcontent2/source/text/scalc/01.po
+++ b/source/ko/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 19:49+0000\n"
+"PO-Revision-Date: 2016-03-04 00:48+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431373796.000000\n"
+"X-POOTLE-MTIME: 1457052494.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -60132,13 +60132,14 @@ msgid "equal"
msgstr "같음"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -60150,13 +60151,14 @@ msgid "less than"
msgstr "미만"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/shared/00.po b/source/ko/helpcontent2/source/text/shared/00.po
index 190d4c5698a..1cbac1e4e7f 100644
--- a/source/ko/helpcontent2/source/text/shared/00.po
+++ b/source/ko/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-09-01 18:02+0000\n"
-"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
+"PO-Revision-Date: 2016-03-04 01:17+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1441130575.000000\n"
+"X-POOTLE-MTIME: 1457054261.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3972,12 +3972,13 @@ msgid "ODF 1.2 (Extended)"
msgstr "ODF 1.2 (확장)"
#: 00000021.xhp
+#, fuzzy
msgctxt ""
"00000021.xhp\n"
"par_id100120091238112\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 00000021.xhp
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/shared/01.po b/source/ko/helpcontent2/source/text/shared/01.po
index 1daaa760b65..2c3cecf4946 100644
--- a/source/ko/helpcontent2/source/text/shared/01.po
+++ b/source/ko/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-12 13:12+0000\n"
+"PO-Revision-Date: 2016-03-04 01:47+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452604349.000000\n"
+"X-POOTLE-MTIME: 1457056035.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7489,13 +7489,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr "달리 지정하지 않으면 주어진 문자를 나타냅니다."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7507,13 +7508,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr "줄 바꿈 또는 단락 나누기를 제외한 모든 단일 문자를 나타냅니다. 예를 들어, 검색 용어 \"sh.rt\"는 \"shirt\"와 \"short\"를 모두 반환합니다."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7525,13 +7527,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr "단락 시작 부분에 있는 검색 용어만 찾습니다. 단락 시작 부분에 있는 빈 필드나 문자 기준 위치 프레임과 같은 특수 개체는 무시합니다. 예를 들어, \"^Peter\"와 같은 경우가 있습니다."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7551,13 +7554,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7596,13 +7600,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr "항상 단락에서 이 검색 패턴과 일치하는 가장 긴 문자열을 찾습니다. 단락에 \"AX 4 AX4\" 문자열이 있으면 전체 줄이 강조 표시됩니다."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7614,13 +7619,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr "\"?\" 앞의 문자 중 0개나 한 개를 찾습니다. 예를 들어, \"Texts?\"는 \"Text\"와 \"Texts\"를 찾고 \"x(ab|c)?y\"는 \"xy\", \"xaby\" 또는 \"xcy\"를 찾습니다."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -15826,13 +15832,14 @@ msgid "Explanation"
msgstr "설명"
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/shared/02.po b/source/ko/helpcontent2/source/text/shared/02.po
index f557c7f39ca..355fcce80d8 100644
--- a/source/ko/helpcontent2/source/text/shared/02.po
+++ b/source/ko/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 19:52+0000\n"
+"PO-Revision-Date: 2016-03-04 01:58+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431373937.000000\n"
+"X-POOTLE-MTIME: 1457056693.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -13865,13 +13865,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">나열된 모든 데이터베이스 필드를 <emph>테이블 열</emph> 목록 상자로 이동합니다.</ahelp> <emph>테이블 열</emph> 목록 상자에 나열된 모든 필드가 문서에 삽입됩니다."
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13883,13 +13884,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">선택한 데이터베이스 필드를 <emph>테이블의 열</emph> 목록 상자로 이동합니다. </ahelp> 항목을 두 번 눌러 <emph>테이블 열</emph> 목록 상자로 이동할 수도 있습니다. <emph>테이블 열</emph> 목록 상자에 나열된 모든 필드가 문서에 삽입됩니다."
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -14178,13 +14180,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr "선택 목록 상자에 추가되어 문서에 삽입될 데이터베이스 열을 모두 나열합니다. <ahelp visibility=\"visible\" hid=\"modules/swriter/ui/insertdbcolumnsdialog/tabletxtcols\">문서에 삽입할 데이터베이스 열을 선택합니다.</ahelp>"
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15683,13 +15686,14 @@ msgid "Example"
msgstr "미리 보기"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15719,13 +15723,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr "\"M?ller\" 는 예를 들어 M?ler 와 M?ler를 찾아냅니다."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15809,31 +15814,34 @@ msgid "Search with regular expressions"
msgstr "일반적인 표현 찾기"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/shared/autopi.po b/source/ko/helpcontent2/source/text/shared/autopi.po
index e1d20da30de..7f4c2a8c9e3 100644
--- a/source/ko/helpcontent2/source/text/shared/autopi.po
+++ b/source/ko/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-05-11 19:53+0000\n"
+"PO-Revision-Date: 2016-03-04 02:06+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431373985.000000\n"
+"X-POOTLE-MTIME: 1457057173.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3422,13 +3422,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">선택한 테이블이나 쿼리에 있는 데이터 기반 필드의 이름을 나열합니다.</ahelp> 직접 클릭하여 필드를 선택하거나, <Shift> 키 또는 <switchinline select=\"sys\"> <caseinline select=\"MAC\"><Command></caseinline> <defaultinline><Ctrl></defaultinline> </switchinline> 키를 누른 상태에서 여러 필드를 클릭하여 선택할 수 있습니다."
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3459,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">모든 필드를 화살표가 가르키는 상자로 옮기려면 클릭합니다.</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3496,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">모든 필드를 화살표가 가리키는 상자로 옮기려면 클릭합니다.</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4524,13 +4527,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">새 보고서에 포함되는 필드를 모두 표시합니다.</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4560,13 +4564,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">모든 필드를 화살표가 가리키는 상자로 옮기려면 클릭합니다.</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4720,13 +4725,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">보고서의 그룹화 기준으로 사용할 필드를 나열합니다. 그룹화 수준 하나를 제거하려면 해당 필드 이름을 선택한 후 <emph><</emph> 버튼을 클릭합니다. 최대 4개의 그룹화 수준을 선택할 수 있습니다.</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4738,13 +4744,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">선택한 필드를 화살표가 가리키는 상자로 옮기려면 클릭합니다.</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/shared/explorer/database.po b/source/ko/helpcontent2/source/text/shared/explorer/database.po
index ac0ec149e46..6342fe715ad 100644
--- a/source/ko/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/ko/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-11 19:53+0000\n"
+"PO-Revision-Date: 2016-03-04 02:13+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431374015.000000\n"
+"X-POOTLE-MTIME: 1457057619.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1760,13 +1760,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr "... 필드 내용이 지정된 표현과 일치하지 않습니다."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1787,13 +1788,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr "... 필드 내용이 지정된 표현보다 큽니다."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2793,13 +2795,14 @@ msgid "No"
msgstr "아니요"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6230,13 +6233,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\" visibility=\"visible\">테이블에 할당할 수 있는 사용 가능한 색인을 나열합니다.</ahelp> 색인을 선택한 테이블에 할당하려면 왼쪽 화살표 아이콘을 클릭합니다. 왼쪽 이중 화살표 아이콘은 사용 가능한 색인을 모두 할당합니다."
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6266,13 +6270,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\" visibility=\"visible\">모든 자유형 색인을 <emph>테이블 색인</emph> 목록으로 이동합니다.</ahelp>"
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12420,12 +12425,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr "<ahelp hid=\".\">새로운 콘트롤 행을 추가합니다.</ahelp>"
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14444,12 +14450,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr "<ahelp hid=\".\">필드 정보를 편집하려면 필드를 선택합니다.</ahelp>"
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/swriter/01.po b/source/ko/helpcontent2/source/text/swriter/01.po
index 2a7e5ff4574..fdc77642764 100644
--- a/source/ko/helpcontent2/source/text/swriter/01.po
+++ b/source/ko/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 19:56+0000\n"
+"PO-Revision-Date: 2016-03-04 03:11+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431374173.000000\n"
+"X-POOTLE-MTIME: 1457061060.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -11037,13 +11037,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\" visibility=\"visible\">선택한 색인 수준에 적용할 단락 스타일을 선택한 다음 지정(<emph><</emph>) 버튼을 클릭합니다.</ahelp>"
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -27778,12 +27779,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">필드를 선택하여 다른 목록으로 끕니다.</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27794,12 +27796,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">주소 요소 목록에서 선택한 필드를 다른 목록에 추가합니다. 동일한 필드를 두 번 이상 추가할 수 있습니다.</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27986,12 +27989,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">필드를 선택하여 다른 목록으로 끕니다.</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28002,12 +28006,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elem
msgstr "<ahelp hid=\".\">인사말 요소 목록에서 선택한 필드를 다른 목록에 추가합니다. 한 필드를 두 번 이상 추가할 수 있습니다.</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28442,12 +28447,13 @@ msgid "<ahelp hid=\".\">Select an address field and drag the field to the other
msgstr "<ahelp hid=\".\">주소 필드를 선택하여 다른 목록으로 끕니다.</ahelp>"
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28458,12 +28464,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">주소 요소 목록에서 선택한 필드를 다른 목록에 추가합니다.</ahelp> 동일한 필드를 두 번 이상 추가할 수 있습니다."
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/swriter/02.po b/source/ko/helpcontent2/source/text/swriter/02.po
index 554b329c641..289b314963d 100644
--- a/source/ko/helpcontent2/source/text/swriter/02.po
+++ b/source/ko/helpcontent2/source/text/swriter/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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 16:12+0000\n"
+"PO-Revision-Date: 2016-03-04 03:12+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429805549.000000\n"
+"X-POOTLE-MTIME: 1457061158.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1673,13 +1673,14 @@ msgid "Subtraction"
msgstr "뺄셈"
#: 14020000.xhp
+#, fuzzy
msgctxt ""
"14020000.xhp\n"
"par_id3150087\n"
"12\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 14020000.xhp
msgctxt ""
diff --git a/source/kok/cui/uiconfig/ui.po b/source/kok/cui/uiconfig/ui.po
index f4b9d62c523..fc59987a2e4 100644
--- a/source/kok/cui/uiconfig/ui.po
+++ b/source/kok/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 14:11+0000\n"
+"PO-Revision-Date: 2016-03-08 14:51+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: kok\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452262305.000000\n"
+"X-POOTLE-MTIME: 1457448666.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14072,31 +14072,34 @@ msgid "N_one"
msgstr ""
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
diff --git a/source/kok/dbaccess/uiconfig/ui.po b/source/kok/dbaccess/uiconfig/ui.po
index b9e436d2cb9..2236d8e3a8a 100644
--- a/source/kok/dbaccess/uiconfig/ui.po
+++ b/source/kok/dbaccess/uiconfig/ui.po
@@ -4,16 +4,16 @@ 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-04-22 23:40+0200\n"
-"PO-Revision-Date: 2013-02-17 21:05+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 14:56+0000\n"
+"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361135113.0\n"
+"X-POOTLE-MTIME: 1457449006.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1927,22 +1927,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1954,13 +1956,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3016,58 +3019,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/kok/extensions/uiconfig/sabpilot/ui.po b/source/kok/extensions/uiconfig/sabpilot/ui.po
index d418b7b29c7..56937989a2e 100644
--- a/source/kok/extensions/uiconfig/sabpilot/ui.po
+++ b/source/kok/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:30+0000\n"
+"PO-Revision-Date: 2016-03-08 15:05+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kok\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435282217.000000\n"
+"X-POOTLE-MTIME: 1457449529.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -280,13 +280,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -298,13 +299,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -379,22 +381,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -647,13 +651,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/kok/librelogo/source/pythonpath.po b/source/kok/librelogo/source/pythonpath.po
index bea5b9e3ba6..48d137bf806 100644
--- a/source/kok/librelogo/source/pythonpath.po
+++ b/source/kok/librelogo/source/pythonpath.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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2014-09-26 08:49+0000\n"
-"Last-Translator: Ravikumar <ragamrravi@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 15:22+0000\n"
+"Last-Translator: system 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: Pootle 2.5.1\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1411721390.000000\n"
+"X-POOTLE-MTIME: 1457450540.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -807,12 +807,13 @@ msgid "."
msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/kok/officecfg/registry/data/org/openoffice/Office.po b/source/kok/officecfg/registry/data/org/openoffice/Office.po
index 767af6aea9a..a03bcbe22fe 100644
--- a/source/kok/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/kok/officecfg/registry/data/org/openoffice/Office.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-08-06 22:56+0000\n"
+"PO-Revision-Date: 2016-03-08 15:33+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kok\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438901770.000000\n"
+"X-POOTLE-MTIME: 1457451221.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1429,13 +1429,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/kok/reportdesign/uiconfig/dbreport/ui.po b/source/kok/reportdesign/uiconfig/dbreport/ui.po
index e0afc4201c8..a362444efc1 100644
--- a/source/kok/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/kok/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-19 04:22+0000\n"
+"PO-Revision-Date: 2016-03-08 16:01+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kok\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416370954.000000\n"
+"X-POOTLE-MTIME: 1457452886.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -196,13 +196,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -214,13 +215,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -277,13 +279,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/kok/sc/uiconfig/scalc/ui.po b/source/kok/sc/uiconfig/scalc/ui.po
index c4b4f7eab5e..9b29b2c77c9 100644
--- a/source/kok/sc/uiconfig/scalc/ui.po
+++ b/source/kok/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-06-26 01:43+0000\n"
+"PO-Revision-Date: 2016-03-08 16:27+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: kok\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435283020.000000\n"
+"X-POOTLE-MTIME: 1457454477.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6393,22 +6393,24 @@ msgid "Distribution:"
msgstr ""
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter1-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter2-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
msgctxt ""
diff --git a/source/kok/sd/uiconfig/simpress/ui.po b/source/kok/sd/uiconfig/simpress/ui.po
index 9773260f88e..0a929f3dc4f 100644
--- a/source/kok/sd/uiconfig/simpress/ui.po
+++ b/source/kok/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:46+0000\n"
+"PO-Revision-Date: 2016-03-08 16:52+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: kok\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435283166.000000\n"
+"X-POOTLE-MTIME: 1457455929.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -997,22 +997,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/kok/sw/source/ui/dbui.po b/source/kok/sw/source/ui/dbui.po
index c34a4a23222..c7f3c5dfb62 100644
--- a/source/kok/sw/source/ui/dbui.po
+++ b/source/kok/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-12 22:09+0000\n"
+"PO-Revision-Date: 2016-03-08 17:33+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kok\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431468578.000000\n"
+"X-POOTLE-MTIME: 1457458433.000000\n"
#: dbui.src
msgctxt ""
@@ -487,31 +487,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/kok/sw/source/ui/index.po b/source/kok/sw/source/ui/index.po
index b62cc27010a..2848de771b2 100644
--- a/source/kok/sw/source/ui/index.po
+++ b/source/kok/sw/source/ui/index.po
@@ -3,16 +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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2012-01-05 13:31+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 17:35+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457458533.000000\n"
#: cnttab.src
#, fuzzy
@@ -56,20 +57,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -104,12 +107,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/kok/sw/uiconfig/swriter/ui.po b/source/kok/sw/uiconfig/swriter/ui.po
index 73ac9f81c8a..0c3ff11f570 100644
--- a/source/kok/sw/uiconfig/swriter/ui.po
+++ b/source/kok/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 22:56+0000\n"
+"PO-Revision-Date: 2016-03-08 17:46+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: kok\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438901783.000000\n"
+"X-POOTLE-MTIME: 1457459183.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2312,13 +2312,14 @@ msgid "Convert Table to Text"
msgstr "कोष्टक मजकुरांत रुपांतरीत करात"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2504,13 +2505,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2522,13 +2524,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4440,13 +4443,14 @@ msgid "None"
msgstr ""
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5434,22 +5438,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6358,13 +6364,14 @@ msgid "Position:"
msgstr "स्थान"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"separator_edit\n"
"text\n"
"string.text"
msgid ": "
-msgstr ""
+msgstr ": "
#: insertcaption.ui
msgctxt ""
@@ -6376,13 +6383,14 @@ msgid "Numbering separator:"
msgstr ""
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
msgctxt ""
@@ -8720,13 +8728,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8738,13 +8747,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9592,13 +9602,14 @@ msgid "Position:"
msgstr "स्थान"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
#, fuzzy
@@ -15728,40 +15739,44 @@ msgid "[none]"
msgstr "[कोण ना] "
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/kok/vcl/source/src.po b/source/kok/vcl/source/src.po
index 52fa5d67734..16f25a6196b 100644
--- a/source/kok/vcl/source/src.po
+++ b/source/kok/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 18:19+0000\n"
+"PO-Revision-Date: 2016-03-08 17:50+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kok\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449857990.000000\n"
+"X-POOTLE-MTIME: 1457459437.000000\n"
#: app.src
msgctxt ""
@@ -1193,12 +1193,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1479,13 +1480,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/ks/cui/uiconfig/ui.po b/source/ks/cui/uiconfig/ui.po
index 08035d21bcd..6887902500c 100644
--- a/source/ks/cui/uiconfig/ui.po
+++ b/source/ks/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 14:12+0000\n"
+"PO-Revision-Date: 2016-03-08 15:21+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: ks\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452262336.000000\n"
+"X-POOTLE-MTIME: 1457450511.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14059,31 +14059,34 @@ msgid "N_one"
msgstr ""
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
@@ -17360,40 +17363,44 @@ msgid "(None)"
msgstr ""
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"1\n"
"stringlist.text"
msgid "("
-msgstr ""
+msgstr "("
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"2\n"
"stringlist.text"
msgid "["
-msgstr ""
+msgstr "["
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"3\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
#: twolinespage.ui
msgctxt ""
@@ -17414,40 +17421,44 @@ msgid "(None)"
msgstr ""
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
#: twolinespage.ui
msgctxt ""
diff --git a/source/ks/dbaccess/uiconfig/ui.po b/source/ks/dbaccess/uiconfig/ui.po
index 6d8ca3e67aa..e3413ff93f8 100644
--- a/source/ks/dbaccess/uiconfig/ui.po
+++ b/source/ks/dbaccess/uiconfig/ui.po
@@ -4,16 +4,16 @@ 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-04-22 23:40+0200\n"
-"PO-Revision-Date: 2013-04-15 11:39+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2016-03-08 15:27+0000\n"
+"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1366025982.0\n"
+"X-POOTLE-MTIME: 1457450862.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1927,22 +1927,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1954,13 +1956,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3016,58 +3019,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/ks/extensions/uiconfig/sabpilot/ui.po b/source/ks/extensions/uiconfig/sabpilot/ui.po
index 2633ac2036d..be4b8715ff9 100644
--- a/source/ks/extensions/uiconfig/sabpilot/ui.po
+++ b/source/ks/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:25+0000\n"
+"PO-Revision-Date: 2016-03-08 15:36+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ks\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435281900.000000\n"
+"X-POOTLE-MTIME: 1457451368.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -280,13 +280,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -298,13 +299,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -379,22 +381,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -647,13 +651,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/ks/librelogo/source/pythonpath.po b/source/ks/librelogo/source/pythonpath.po
index d3f586f444b..f564d019e69 100644
--- a/source/ks/librelogo/source/pythonpath.po
+++ b/source/ks/librelogo/source/pythonpath.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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2013-04-15 11:39+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 15:51+0000\n"
+"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1366025989.0\n"
+"X-POOTLE-MTIME: 1457452304.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -794,20 +794,22 @@ msgid "pi|π"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
"property.text"
msgid "."
-msgstr ""
+msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/ks/officecfg/registry/data/org/openoffice/Office.po b/source/ks/officecfg/registry/data/org/openoffice/Office.po
index aca7e8935be..d6095baaf8c 100644
--- a/source/ks/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/ks/officecfg/registry/data/org/openoffice/Office.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-08-06 22:56+0000\n"
+"PO-Revision-Date: 2016-03-08 16:02+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ks\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438901779.000000\n"
+"X-POOTLE-MTIME: 1457452965.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1429,13 +1429,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/ks/reportdesign/uiconfig/dbreport/ui.po b/source/ks/reportdesign/uiconfig/dbreport/ui.po
index 4080df6bc27..6d8d05923c8 100644
--- a/source/ks/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/ks/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-19 04:40+0000\n"
+"PO-Revision-Date: 2016-03-08 16:26+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ks\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416372033.000000\n"
+"X-POOTLE-MTIME: 1457454419.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -196,13 +196,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -214,13 +215,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -277,13 +279,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/ks/sc/uiconfig/scalc/ui.po b/source/ks/sc/uiconfig/scalc/ui.po
index 99ca6f7588b..63c1a295dc7 100644
--- a/source/ks/sc/uiconfig/scalc/ui.po
+++ b/source/ks/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-06-26 01:39+0000\n"
+"PO-Revision-Date: 2016-03-08 16:58+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: ks\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435282783.000000\n"
+"X-POOTLE-MTIME: 1457456300.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6389,22 +6389,24 @@ msgid "Distribution:"
msgstr ""
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter1-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter2-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
msgctxt ""
diff --git a/source/ks/sd/source/ui/app.po b/source/ks/sd/source/ui/app.po
index dcf7ede7d8a..592b2dc352b 100644
--- a/source/ks/sd/source/ui/app.po
+++ b/source/ks/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-12 22:21+0000\n"
+"PO-Revision-Date: 2016-03-08 17:18+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ks\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431469319.000000\n"
+"X-POOTLE-MTIME: 1457457481.000000\n"
#: menuids3_tmpl.src
msgctxt ""
@@ -3830,12 +3830,13 @@ msgid "<number>"
msgstr "<نمبر>"
#: strings.src
+#, fuzzy
msgctxt ""
"strings.src\n"
"STR_FIELD_PLACEHOLDER_COUNT\n"
"string.text"
msgid "<count>"
-msgstr ""
+msgstr "<count>"
#: strings.src
msgctxt ""
diff --git a/source/ks/sd/uiconfig/simpress/ui.po b/source/ks/sd/uiconfig/simpress/ui.po
index ddfe8e86fdb..e70324ca5a7 100644
--- a/source/ks/sd/uiconfig/simpress/ui.po
+++ b/source/ks/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:41+0000\n"
+"PO-Revision-Date: 2016-03-08 17:20+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: ks\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435282865.000000\n"
+"X-POOTLE-MTIME: 1457457649.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -997,22 +997,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/ks/sw/source/ui/dbui.po b/source/ks/sw/source/ui/dbui.po
index a816ca7cad7..ff06c293183 100644
--- a/source/ks/sw/source/ui/dbui.po
+++ b/source/ks/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-12 22:30+0000\n"
+"PO-Revision-Date: 2016-03-08 17:56+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ks\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431469800.000000\n"
+"X-POOTLE-MTIME: 1457459784.000000\n"
#: dbui.src
msgctxt ""
@@ -487,31 +487,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/ks/sw/source/ui/index.po b/source/ks/sw/source/ui/index.po
index b4d1f38b6f8..8de0c91160a 100644
--- a/source/ks/sw/source/ui/index.po
+++ b/source/ks/sw/source/ui/index.po
@@ -3,16 +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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2012-01-05 13:32+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 17:58+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457459925.000000\n"
#: cnttab.src
#, fuzzy
@@ -56,20 +57,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -104,12 +107,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/ks/sw/uiconfig/swriter/ui.po b/source/ks/sw/uiconfig/swriter/ui.po
index 7be9d4c5c0b..78b9fe357d0 100644
--- a/source/ks/sw/uiconfig/swriter/ui.po
+++ b/source/ks/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 22:57+0000\n"
+"PO-Revision-Date: 2016-03-08 18:15+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: ks\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438901825.000000\n"
+"X-POOTLE-MTIME: 1457460951.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2310,13 +2310,14 @@ msgid "Convert Table to Text"
msgstr "جدول متنمیں تبدیل کرو"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2502,13 +2503,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2520,13 +2522,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4433,13 +4436,14 @@ msgid "None"
msgstr ""
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5421,22 +5425,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6345,13 +6351,14 @@ msgid "Position:"
msgstr "مقام"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"separator_edit\n"
"text\n"
"string.text"
msgid ": "
-msgstr ""
+msgstr ": "
#: insertcaption.ui
msgctxt ""
@@ -6363,13 +6370,14 @@ msgid "Numbering separator:"
msgstr ""
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
msgctxt ""
@@ -8705,13 +8713,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8723,13 +8732,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9577,13 +9587,14 @@ msgid "Position:"
msgstr "مقام"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
#, fuzzy
@@ -15701,40 +15712,44 @@ msgid "[none]"
msgstr "[کوئی نہیں]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/ks/vcl/source/src.po b/source/ks/vcl/source/src.po
index 5abb7b9cd33..241e1e41a2f 100644
--- a/source/ks/vcl/source/src.po
+++ b/source/ks/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 18:20+0000\n"
+"PO-Revision-Date: 2016-03-08 18:21+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ks\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449858006.000000\n"
+"X-POOTLE-MTIME: 1457461299.000000\n"
#: app.src
msgctxt ""
@@ -1283,12 +1283,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1563,13 +1564,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/lo/cui/uiconfig/ui.po b/source/lo/cui/uiconfig/ui.po
index 75db69fd9fa..c4800130497 100644
--- a/source/lo/cui/uiconfig/ui.po
+++ b/source/lo/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 14:13+0000\n"
+"PO-Revision-Date: 2016-03-08 17:06+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: lo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452262406.000000\n"
+"X-POOTLE-MTIME: 1457456784.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14056,31 +14056,34 @@ msgid "N_one"
msgstr ""
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
@@ -17357,40 +17360,44 @@ msgid "(None)"
msgstr "(ບໍ່)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"1\n"
"stringlist.text"
msgid "("
-msgstr ""
+msgstr "("
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"2\n"
"stringlist.text"
msgid "["
-msgstr ""
+msgstr "["
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"3\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
#: twolinespage.ui
msgctxt ""
@@ -17412,40 +17419,44 @@ msgid "(None)"
msgstr "(ບໍ່)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
#: twolinespage.ui
msgctxt ""
diff --git a/source/lo/dbaccess/uiconfig/ui.po b/source/lo/dbaccess/uiconfig/ui.po
index 500758ba1f0..2742af7acfb 100644
--- a/source/lo/dbaccess/uiconfig/ui.po
+++ b/source/lo/dbaccess/uiconfig/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-04-22 23:40+0200\n"
-"PO-Revision-Date: 2013-02-17 21:12+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 17:11+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361135566.0\n"
+"X-POOTLE-MTIME: 1457457104.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1928,22 +1928,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1955,13 +1957,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3017,58 +3020,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/lo/extensions/uiconfig/sabpilot/ui.po b/source/lo/extensions/uiconfig/sabpilot/ui.po
index 2d6b6989876..fae651e120e 100644
--- a/source/lo/extensions/uiconfig/sabpilot/ui.po
+++ b/source/lo/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:31+0000\n"
+"PO-Revision-Date: 2016-03-08 17:20+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435282280.000000\n"
+"X-POOTLE-MTIME: 1457457613.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/lo/librelogo/source/pythonpath.po b/source/lo/librelogo/source/pythonpath.po
index a149992c89c..f2bc2ce33d6 100644
--- a/source/lo/librelogo/source/pythonpath.po
+++ b/source/lo/librelogo/source/pythonpath.po
@@ -3,16 +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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2012-11-17 19:02+0200\n"
-"Last-Translator: Automatically generated\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 17:35+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: lo\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=1; plural=0;\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457458537.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -789,20 +791,22 @@ msgid "pi|π"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
"property.text"
msgid "."
-msgstr ""
+msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/lo/officecfg/registry/data/org/openoffice/Office.po b/source/lo/officecfg/registry/data/org/openoffice/Office.po
index 6bc18c8f343..e149e032dc0 100644
--- a/source/lo/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/lo/officecfg/registry/data/org/openoffice/Office.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-08-06 22:57+0000\n"
+"PO-Revision-Date: 2016-03-08 17:45+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438901834.000000\n"
+"X-POOTLE-MTIME: 1457459109.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1430,13 +1430,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/lo/reportdesign/uiconfig/dbreport/ui.po b/source/lo/reportdesign/uiconfig/dbreport/ui.po
index 863114af66c..56660a77dd9 100644
--- a/source/lo/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/lo/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-19 05:32+0000\n"
+"PO-Revision-Date: 2016-03-08 18:13+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416375129.000000\n"
+"X-POOTLE-MTIME: 1457460792.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/lo/sc/uiconfig/scalc/ui.po b/source/lo/sc/uiconfig/scalc/ui.po
index b39579e52fe..303beeda185 100644
--- a/source/lo/sc/uiconfig/scalc/ui.po
+++ b/source/lo/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-08-25 22:20+0000\n"
+"PO-Revision-Date: 2016-03-08 18:40+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: lo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440541234.000000\n"
+"X-POOTLE-MTIME: 1457462456.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6390,22 +6390,24 @@ msgid "Distribution:"
msgstr ""
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter1-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter2-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
msgctxt ""
diff --git a/source/lo/sd/source/ui/app.po b/source/lo/sd/source/ui/app.po
index 14d2b35b930..c90f83afaf2 100644
--- a/source/lo/sd/source/ui/app.po
+++ b/source/lo/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-08-25 22:22+0000\n"
+"PO-Revision-Date: 2016-03-08 18:57+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440541334.000000\n"
+"X-POOTLE-MTIME: 1457463469.000000\n"
#: menuids3_tmpl.src
msgctxt ""
@@ -3750,12 +3750,13 @@ msgid "<number>"
msgstr "<number>"
#: strings.src
+#, fuzzy
msgctxt ""
"strings.src\n"
"STR_FIELD_PLACEHOLDER_COUNT\n"
"string.text"
msgid "<count>"
-msgstr ""
+msgstr "<count>"
#: strings.src
msgctxt ""
diff --git a/source/lo/sd/uiconfig/simpress/ui.po b/source/lo/sd/uiconfig/simpress/ui.po
index 4c749af4ab0..950a6e33337 100644
--- a/source/lo/sd/uiconfig/simpress/ui.po
+++ b/source/lo/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:48+0000\n"
+"PO-Revision-Date: 2016-03-08 19:00+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: lo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435283302.000000\n"
+"X-POOTLE-MTIME: 1457463603.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -998,22 +998,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/lo/sw/source/ui/dbui.po b/source/lo/sw/source/ui/dbui.po
index 74d325a3bcc..4b3696eb96b 100644
--- a/source/lo/sw/source/ui/dbui.po
+++ b/source/lo/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-12 22:59+0000\n"
+"PO-Revision-Date: 2016-03-08 19:31+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431471589.000000\n"
+"X-POOTLE-MTIME: 1457465483.000000\n"
#: dbui.src
msgctxt ""
@@ -488,31 +488,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/lo/sw/source/ui/index.po b/source/lo/sw/source/ui/index.po
index 0a1aba3d6ea..4e5d01a3c8e 100644
--- a/source/lo/sw/source/ui/index.po
+++ b/source/lo/sw/source/ui/index.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2012-01-05 13:38+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 19:32+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457465571.000000\n"
#: cnttab.src
#, fuzzy
@@ -57,20 +58,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -105,12 +108,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/lo/sw/uiconfig/swriter/ui.po b/source/lo/sw/uiconfig/swriter/ui.po
index bcfd8a24f08..23f9a19e423 100644
--- a/source/lo/sw/uiconfig/swriter/ui.po
+++ b/source/lo/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-25 22:25+0000\n"
+"PO-Revision-Date: 2016-03-08 19:44+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: lo\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440541532.000000\n"
+"X-POOTLE-MTIME: 1457466263.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2311,13 +2311,14 @@ msgid "Convert Table to Text"
msgstr "ປ່ຽນຕາຕະລາງເປັນຂໍ້ຄວາມ"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2503,13 +2504,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2521,13 +2523,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4434,13 +4437,14 @@ msgid "None"
msgstr ""
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5422,22 +5426,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6348,13 +6354,14 @@ msgid "Position:"
msgstr "ຕໍ່າແໜ່ງ"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"separator_edit\n"
"text\n"
"string.text"
msgid ": "
-msgstr ""
+msgstr ": "
#: insertcaption.ui
msgctxt ""
@@ -6366,13 +6373,14 @@ msgid "Numbering separator:"
msgstr ""
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
msgctxt ""
@@ -8709,13 +8717,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8727,13 +8736,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9581,13 +9591,14 @@ msgid "Position:"
msgstr "ຕໍ່າແໜ່ງ"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
#, fuzzy
@@ -15710,40 +15721,44 @@ msgid "[none]"
msgstr "[ບໍ່]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/lo/vcl/source/src.po b/source/lo/vcl/source/src.po
index 4ea50629a9c..0be3e38e01a 100644
--- a/source/lo/vcl/source/src.po
+++ b/source/lo/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 18:07+0000\n"
+"PO-Revision-Date: 2016-03-08 19:47+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449857222.000000\n"
+"X-POOTLE-MTIME: 1457466437.000000\n"
#: app.src
msgctxt ""
@@ -1219,12 +1219,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1500,13 +1501,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po b/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po
index f3751dc3100..be3634b035c 100644
--- a/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/lt/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-01-08 13:42+0100\n"
-"PO-Revision-Date: 2016-02-11 11:34+0000\n"
-"Last-Translator: embar <embar@super.lt>\n"
+"PO-Revision-Date: 2016-03-08 18:34+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1455190483.000000\n"
+"X-POOTLE-MTIME: 1457462096.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -19893,14 +19893,13 @@ msgid "~Toolbars"
msgstr "Mygtukų juostos"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:FieldMenu\n"
"Label\n"
"value.text"
msgid "Fiel~d"
-msgstr "Laukai"
+msgstr "~Laukas"
#: GenericCommands.xcu
msgctxt ""
diff --git a/source/lt/sd/uiconfig/simpress/ui.po b/source/lt/sd/uiconfig/simpress/ui.po
index aaf90731535..0f13fb227ee 100644
--- a/source/lt/sd/uiconfig/simpress/ui.po
+++ b/source/lt/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 10:58+0000\n"
-"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 19:28+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435316293.000000\n"
+"X-POOTLE-MTIME: 1457465315.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -1008,13 +1008,14 @@ msgid ">>"
msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/lt/sw/uiconfig/swriter/ui.po b/source/lt/sw/uiconfig/swriter/ui.po
index 30aeed6b9d4..e454a419e8a 100644
--- a/source/lt/sw/uiconfig/swriter/ui.po
+++ b/source/lt/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-25 22:46+0000\n"
+"PO-Revision-Date: 2016-03-08 20:23+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: lt\n"
@@ -14,7 +14,7 @@ msgstr ""
"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.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440542792.000000\n"
+"X-POOTLE-MTIME: 1457468627.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2259,13 +2259,14 @@ msgid "Convert Table to Text"
msgstr "Paversti lentelę į tekstą"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
diff --git a/source/lv/cui/source/tabpages.po b/source/lv/cui/source/tabpages.po
index 191813c4f64..d2156d659af 100644
--- a/source/lv/cui/source/tabpages.po
+++ b/source/lv/cui/source/tabpages.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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-02-22 10:58+0000\n"
-"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 17:35+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456138711.000000\n"
+"X-POOTLE-MTIME: 1457458549.000000\n"
#: border.src
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"Letter\n"
"itemlist.text"
msgid "Letter"
-msgstr "Letter"
+msgstr "Vēstule"
#: page.src
msgctxt ""
@@ -575,7 +575,7 @@ msgctxt ""
"Letter\n"
"itemlist.text"
msgid "Letter"
-msgstr "Letter"
+msgstr "Vēstule"
#: page.src
msgctxt ""
diff --git a/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po b/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po
index 049e6c42ac5..d0eee1b08ee 100644
--- a/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/lv/officecfg/registry/data/org/openoffice/Office/UI.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-01-08 13:42+0100\n"
-"PO-Revision-Date: 2016-02-19 11:40+0000\n"
-"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 18:57+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1455882056.000000\n"
+"X-POOTLE-MTIME: 1457463437.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -18007,7 +18007,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Automatic Spell Checking"
-msgstr "~Automātiski pārbaudīt gramatiku"
+msgstr "~Automātiski pārbaudīt pareizrakstību"
#: GenericCommands.xcu
msgctxt ""
diff --git a/source/mai/cui/uiconfig/ui.po b/source/mai/cui/uiconfig/ui.po
index 65ad924b97e..e0f49e1131a 100644
--- a/source/mai/cui/uiconfig/ui.po
+++ b/source/mai/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 14:17+0000\n"
+"PO-Revision-Date: 2016-03-08 17:56+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mai\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452262633.000000\n"
+"X-POOTLE-MTIME: 1457459784.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14058,31 +14058,34 @@ msgid "N_one"
msgstr ""
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
@@ -17358,40 +17361,44 @@ msgid "(None)"
msgstr ""
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"1\n"
"stringlist.text"
msgid "("
-msgstr ""
+msgstr "("
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"2\n"
"stringlist.text"
msgid "["
-msgstr ""
+msgstr "["
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"3\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
#: twolinespage.ui
msgctxt ""
@@ -17412,40 +17419,44 @@ msgid "(None)"
msgstr ""
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
#: twolinespage.ui
msgctxt ""
diff --git a/source/mai/dbaccess/uiconfig/ui.po b/source/mai/dbaccess/uiconfig/ui.po
index 3a037e689c2..6aad24ab359 100644
--- a/source/mai/dbaccess/uiconfig/ui.po
+++ b/source/mai/dbaccess/uiconfig/ui.po
@@ -4,16 +4,16 @@ 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-04-22 23:40+0200\n"
-"PO-Revision-Date: 2013-02-17 21:13+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 18:03+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mai\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361135632.0\n"
+"X-POOTLE-MTIME: 1457460194.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1927,22 +1927,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1954,13 +1956,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3016,58 +3019,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/mai/extensions/uiconfig/sabpilot/ui.po b/source/mai/extensions/uiconfig/sabpilot/ui.po
index a68a1377453..22278e2d810 100644
--- a/source/mai/extensions/uiconfig/sabpilot/ui.po
+++ b/source/mai/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:34+0000\n"
+"PO-Revision-Date: 2016-03-08 18:14+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mai\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435282475.000000\n"
+"X-POOTLE-MTIME: 1457460846.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -280,13 +280,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -298,13 +299,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -379,22 +381,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -647,13 +651,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/mai/librelogo/source/pythonpath.po b/source/mai/librelogo/source/pythonpath.po
index 6c4e6deb272..11a5347b5c8 100644
--- a/source/mai/librelogo/source/pythonpath.po
+++ b/source/mai/librelogo/source/pythonpath.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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2013-02-17 21:13+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 18:32+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mai\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361135632.0\n"
+"X-POOTLE-MTIME: 1457461932.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -797,20 +797,22 @@ msgid "pi|π"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
"property.text"
msgid "."
-msgstr ""
+msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/mai/officecfg/registry/data/org/openoffice/Office.po b/source/mai/officecfg/registry/data/org/openoffice/Office.po
index 983b3dade42..68b852c934c 100644
--- a/source/mai/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/mai/officecfg/registry/data/org/openoffice/Office.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-08-06 22:59+0000\n"
+"PO-Revision-Date: 2016-03-08 18:41+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mai\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438901960.000000\n"
+"X-POOTLE-MTIME: 1457462464.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1429,13 +1429,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/mai/reportdesign/uiconfig/dbreport/ui.po b/source/mai/reportdesign/uiconfig/dbreport/ui.po
index 085486c72e0..e0f0bbccc7f 100644
--- a/source/mai/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/mai/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-19 06:15+0000\n"
+"PO-Revision-Date: 2016-03-08 19:04+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mai\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416377755.000000\n"
+"X-POOTLE-MTIME: 1457463866.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -196,13 +196,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -214,13 +215,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -277,13 +279,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/mai/sc/uiconfig/scalc/ui.po b/source/mai/sc/uiconfig/scalc/ui.po
index 1ea9e628240..546c5016833 100644
--- a/source/mai/sc/uiconfig/scalc/ui.po
+++ b/source/mai/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-06-26 01:53+0000\n"
+"PO-Revision-Date: 2016-03-08 19:32+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mai\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435283630.000000\n"
+"X-POOTLE-MTIME: 1457465535.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6389,22 +6389,24 @@ msgid "Distribution:"
msgstr ""
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter1-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter2-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
msgctxt ""
diff --git a/source/mai/sd/source/ui/app.po b/source/mai/sd/source/ui/app.po
index 3378caaa90d..db4872dfd1a 100644
--- a/source/mai/sd/source/ui/app.po
+++ b/source/mai/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-13 00:12+0000\n"
+"PO-Revision-Date: 2016-03-08 19:51+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mai\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431475978.000000\n"
+"X-POOTLE-MTIME: 1457466707.000000\n"
#: menuids3_tmpl.src
msgctxt ""
@@ -3818,12 +3818,13 @@ msgid "<number>"
msgstr "<संख्या>"
#: strings.src
+#, fuzzy
msgctxt ""
"strings.src\n"
"STR_FIELD_PLACEHOLDER_COUNT\n"
"string.text"
msgid "<count>"
-msgstr ""
+msgstr "<count>"
#: strings.src
msgctxt ""
diff --git a/source/mai/sd/uiconfig/simpress/ui.po b/source/mai/sd/uiconfig/simpress/ui.po
index 9dc117b1f83..190c726e33f 100644
--- a/source/mai/sd/uiconfig/simpress/ui.po
+++ b/source/mai/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:56+0000\n"
+"PO-Revision-Date: 2016-03-08 19:54+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mai\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435283782.000000\n"
+"X-POOTLE-MTIME: 1457466869.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -997,22 +997,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/mai/sw/source/ui/dbui.po b/source/mai/sw/source/ui/dbui.po
index 67c37f91b3a..8f38712b367 100644
--- a/source/mai/sw/source/ui/dbui.po
+++ b/source/mai/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-13 00:20+0000\n"
+"PO-Revision-Date: 2016-03-08 20:30+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mai\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431476429.000000\n"
+"X-POOTLE-MTIME: 1457469025.000000\n"
#: dbui.src
msgctxt ""
@@ -487,31 +487,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/mai/sw/source/ui/index.po b/source/mai/sw/source/ui/index.po
index 90645ac8112..5462ecd4d6a 100644
--- a/source/mai/sw/source/ui/index.po
+++ b/source/mai/sw/source/ui/index.po
@@ -3,16 +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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2012-01-05 13:44+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 20:32+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457469140.000000\n"
#: cnttab.src
#, fuzzy
@@ -56,20 +57,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -104,12 +107,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/mai/sw/uiconfig/swriter/ui.po b/source/mai/sw/uiconfig/swriter/ui.po
index a898e2d4f2d..610b9e332c8 100644
--- a/source/mai/sw/uiconfig/swriter/ui.po
+++ b/source/mai/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 23:00+0000\n"
+"PO-Revision-Date: 2016-03-08 20:45+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mai\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438902024.000000\n"
+"X-POOTLE-MTIME: 1457469908.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2310,13 +2310,14 @@ msgid "Convert Table to Text"
msgstr "सारणीकेँ पाठमे बदलू"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2502,13 +2503,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2520,13 +2522,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4433,13 +4436,14 @@ msgid "None"
msgstr ""
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5421,22 +5425,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6345,13 +6351,14 @@ msgid "Position:"
msgstr "स्थिति"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"separator_edit\n"
"text\n"
"string.text"
msgid ": "
-msgstr ""
+msgstr ": "
#: insertcaption.ui
msgctxt ""
@@ -6363,13 +6370,14 @@ msgid "Numbering separator:"
msgstr ""
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
msgctxt ""
@@ -8705,13 +8713,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8723,13 +8732,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9577,13 +9587,14 @@ msgid "Position:"
msgstr "स्थिति"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
#, fuzzy
@@ -15703,40 +15714,44 @@ msgid "[none]"
msgstr "[केओ नहि]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/mai/vcl/source/src.po b/source/mai/vcl/source/src.po
index 2016f941001..2389d9da4ba 100644
--- a/source/mai/vcl/source/src.po
+++ b/source/mai/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 18:31+0000\n"
+"PO-Revision-Date: 2016-03-08 20:48+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mai\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449858693.000000\n"
+"X-POOTLE-MTIME: 1457470105.000000\n"
#: app.src
msgctxt ""
@@ -1249,12 +1249,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1531,13 +1532,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/mk/cui/uiconfig/ui.po b/source/mk/cui/uiconfig/ui.po
index f7082287839..3827319a03b 100644
--- a/source/mk/cui/uiconfig/ui.po
+++ b/source/mk/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 14:18+0000\n"
+"PO-Revision-Date: 2016-03-08 17:58+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mk\n"
@@ -14,7 +14,7 @@ msgstr ""
"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: 1452262699.000000\n"
+"X-POOTLE-MTIME: 1457459911.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14058,31 +14058,34 @@ msgid "N_one"
msgstr ""
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
@@ -17358,40 +17361,44 @@ msgid "(None)"
msgstr "(нема)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"1\n"
"stringlist.text"
msgid "("
-msgstr ""
+msgstr "("
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"2\n"
"stringlist.text"
msgid "["
-msgstr ""
+msgstr "["
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"3\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
#: twolinespage.ui
msgctxt ""
@@ -17413,40 +17420,44 @@ msgid "(None)"
msgstr "(нема)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
#: twolinespage.ui
msgctxt ""
diff --git a/source/mk/dbaccess/uiconfig/ui.po b/source/mk/dbaccess/uiconfig/ui.po
index a1ae8bd56b4..1e6bb4af7fa 100644
--- a/source/mk/dbaccess/uiconfig/ui.po
+++ b/source/mk/dbaccess/uiconfig/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-04-22 23:40+0200\n"
-"PO-Revision-Date: 2013-02-17 21:14+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 18:05+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361135673.0\n"
+"X-POOTLE-MTIME: 1457460322.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1928,22 +1928,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1955,13 +1957,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3017,58 +3020,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/mk/extensions/uiconfig/sabpilot/ui.po b/source/mk/extensions/uiconfig/sabpilot/ui.po
index 3cc8ce73a0c..7a4959ba99b 100644
--- a/source/mk/extensions/uiconfig/sabpilot/ui.po
+++ b/source/mk/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:38+0000\n"
+"PO-Revision-Date: 2016-03-08 18:14+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435282697.000000\n"
+"X-POOTLE-MTIME: 1457460856.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/mk/helpcontent2/source/text/scalc/01.po b/source/mk/helpcontent2/source/text/scalc/01.po
index dcadc49849f..b42960bdc5e 100644
--- a/source/mk/helpcontent2/source/text/scalc/01.po
+++ b/source/mk/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 20:04+0000\n"
+"PO-Revision-Date: 2016-03-04 00:59+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431374682.000000\n"
+"X-POOTLE-MTIME: 1457053154.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -60118,13 +60118,14 @@ msgid "equal"
msgstr "еднакво"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -60136,13 +60137,14 @@ msgid "less than"
msgstr "помало од"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
diff --git a/source/mk/helpcontent2/source/text/shared/00.po b/source/mk/helpcontent2/source/text/shared/00.po
index 2167197b65c..9f4cd9b7068 100644
--- a/source/mk/helpcontent2/source/text/shared/00.po
+++ b/source/mk/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-09-01 18:03+0000\n"
+"PO-Revision-Date: 2016-03-04 01:27+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1441130581.000000\n"
+"X-POOTLE-MTIME: 1457054846.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3972,12 +3972,13 @@ msgid "ODF 1.2 (Extended)"
msgstr ""
#: 00000021.xhp
+#, fuzzy
msgctxt ""
"00000021.xhp\n"
"par_id100120091238112\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 00000021.xhp
msgctxt ""
diff --git a/source/mk/helpcontent2/source/text/shared/01.po b/source/mk/helpcontent2/source/text/shared/01.po
index b4c194ddf51..9414b2a0586 100644
--- a/source/mk/helpcontent2/source/text/shared/01.po
+++ b/source/mk/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-12 13:13+0000\n"
+"PO-Revision-Date: 2016-03-04 01:56+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452604409.000000\n"
+"X-POOTLE-MTIME: 1457056612.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7489,13 +7489,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr "Represents any single character unless otherwise specified."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7507,13 +7508,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr "Represents any single character except for a line break or paragraph break. For example, the search term \"sh.rt\" returns both \"shirt\" and \"short\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7525,13 +7527,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr "Only finds the search term if the term is at the beginning of a paragraph. Special objects such as empty fields or character-anchored frames, at the beginning of a paragraph are ignored. Example: \"^Peter\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7551,13 +7554,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7596,13 +7600,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr "The longest possible string that matches this search pattern in a paragraph is always found. If the paragraph contains the string \"AX 4 AX4\", the entire passage is highlighted."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7614,13 +7619,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr "Finds zero or one of the characters in front of the \"?\". For example, \"Texts?\" finds \"Text\" and \"Texts\" and \"x(ab|c)?y\" finds \"xy\", \"xaby\", or \"xcy\"."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -15828,13 +15834,14 @@ msgid "Explanation"
msgstr "Explanation"
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
diff --git a/source/mk/helpcontent2/source/text/shared/02.po b/source/mk/helpcontent2/source/text/shared/02.po
index e19cd7f6acc..e8856aed5fc 100644
--- a/source/mk/helpcontent2/source/text/shared/02.po
+++ b/source/mk/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 20:07+0000\n"
+"PO-Revision-Date: 2016-03-04 02:07+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431374830.000000\n"
+"X-POOTLE-MTIME: 1457057261.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -13865,13 +13865,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves all listed database fields into the <emph>Table column(s)</emph> list box.</ahelp> All fields listed in the <emph>Table column(s)</emph> list box are inserted into the document."
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13883,13 +13884,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves the selected database field into the <emph>Table column(s)</emph> list box. </ahelp> You can also double click an entry to move it to the <emph>Table column(s)</emph> list box. All fields listed in the <emph>Table column(s)</emph> list box are inserted into the document."
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -14178,13 +14180,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr "Lists all columns of the database table, which can be accepted in the selection list box to insert them into the document. <ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tabletxtcols\" visibility=\"visible\">Select the database columns that you want to insert it in the document.</ahelp>"
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15683,13 +15686,14 @@ msgid "Example"
msgstr "Пример"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15719,13 +15723,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr "\"M?ller\" returns, for example, Miller and Moller"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15809,31 +15814,34 @@ msgid "Search with regular expressions"
msgstr "Search with regular expressions"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/mk/helpcontent2/source/text/shared/autopi.po b/source/mk/helpcontent2/source/text/shared/autopi.po
index 442ff63d4e3..21874ab5d94 100644
--- a/source/mk/helpcontent2/source/text/shared/autopi.po
+++ b/source/mk/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-05-11 20:08+0000\n"
+"PO-Revision-Date: 2016-03-04 02:15+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431374887.000000\n"
+"X-POOTLE-MTIME: 1457057740.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3422,13 +3422,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data base fields in the selected table or query.</ahelp> Click to select a field or hold down the Shift or the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while you click to select more than one field."
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3459,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to add all fields to the right box.</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3496,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to remove all fields from the right box.</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4524,13 +4527,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that are included in the new report.</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4560,13 +4564,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to transfer all fields to the right box.</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4720,13 +4725,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which the report will be grouped. To remove one level of grouping, select the field name, then click the <emph><</emph> button. You may select up to four levels of grouping.</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4738,13 +4744,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move a field from the left box to the right box, or double-click the field.</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
diff --git a/source/mk/helpcontent2/source/text/shared/explorer/database.po b/source/mk/helpcontent2/source/text/shared/explorer/database.po
index 2312bef4264..abc0c405824 100644
--- a/source/mk/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/mk/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-11 20:08+0000\n"
+"PO-Revision-Date: 2016-03-04 02:24+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431374916.000000\n"
+"X-POOTLE-MTIME: 1457058270.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1760,13 +1760,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr "... the content of the field does not correspond to the specified expression."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1787,13 +1788,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr "... the content of the field is greater than the specified expression."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2793,13 +2795,14 @@ msgid "No"
msgstr "Не"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6230,13 +6233,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available indexes that you can assign to a table.</ahelp> To assign an index to a selected table, click the left arrow icon. The left double arrow assigns all available indexes."
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6266,13 +6270,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free indexes to the <emph>Table Indexes</emph> list.</ahelp>"
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12420,12 +12425,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14444,12 +14450,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr "<ahelp hid=\".\">Select a field in order to edit the field information.</ahelp>"
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/mk/helpcontent2/source/text/swriter/01.po b/source/mk/helpcontent2/source/text/swriter/01.po
index 9a142a59aaf..10653c14c22 100644
--- a/source/mk/helpcontent2/source/text/swriter/01.po
+++ b/source/mk/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 20:11+0000\n"
+"PO-Revision-Date: 2016-03-04 03:27+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431375060.000000\n"
+"X-POOTLE-MTIME: 1457062066.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -11035,13 +11035,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragraph style that you want to apply to the selected index level, and then click the Assign (<emph><) </emph>button.</ahelp>"
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -27776,12 +27777,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">Изберете поле и влечете го се до другиот список.</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27792,12 +27794,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">Го додава избраното поле од списокот Адресни елементи, во другиот список. Можете да додадете исто поле повеќе пати.</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27984,12 +27987,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">Изберете поле и влечете го се до другиот список.</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28000,12 +28004,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elem
msgstr "<ahelp hid=\".\">Го додава избраното поле од списокот елементи за отпоздравување во другиот список. Можете да додадете едно поле повеќе пати.</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28440,12 +28445,13 @@ msgid "<ahelp hid=\".\">Select an address field and drag the field to the other
msgstr "<ahelp hid=\".\">Изберете адресно поле и одвлечете го полето до другиот список.</ahelp>"
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28456,12 +28462,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">Го додава избраното поле од списокот Адресни елементи во другиот список.</ahelp> Можете да додадете исто поле повеќе пати."
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/mk/helpcontent2/source/text/swriter/02.po b/source/mk/helpcontent2/source/text/swriter/02.po
index 0871db17814..9a4da487784 100644
--- a/source/mk/helpcontent2/source/text/swriter/02.po
+++ b/source/mk/helpcontent2/source/text/swriter/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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 16:32+0000\n"
+"PO-Revision-Date: 2016-03-04 03:30+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429806752.000000\n"
+"X-POOTLE-MTIME: 1457062211.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1673,13 +1673,14 @@ msgid "Subtraction"
msgstr "Одземање"
#: 14020000.xhp
+#, fuzzy
msgctxt ""
"14020000.xhp\n"
"par_id3150087\n"
"12\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 14020000.xhp
msgctxt ""
diff --git a/source/mk/librelogo/source/pythonpath.po b/source/mk/librelogo/source/pythonpath.po
index fae1e501994..d0907d711e4 100644
--- a/source/mk/librelogo/source/pythonpath.po
+++ b/source/mk/librelogo/source/pythonpath.po
@@ -3,16 +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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2012-11-17 19:02+0200\n"
-"Last-Translator: Automatically generated\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 18:31+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mk\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%10==1 ? 0 : 1;\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457461900.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -795,20 +797,22 @@ msgid "pi|π"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
"property.text"
msgid "."
-msgstr ""
+msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/mk/officecfg/registry/data/org/openoffice/Office.po b/source/mk/officecfg/registry/data/org/openoffice/Office.po
index 08a1d9041d0..b439063761f 100644
--- a/source/mk/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/mk/officecfg/registry/data/org/openoffice/Office.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-08-06 22:59+0000\n"
+"PO-Revision-Date: 2016-03-08 18:38+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438901964.000000\n"
+"X-POOTLE-MTIME: 1457462335.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1430,13 +1430,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/mk/reportdesign/uiconfig/dbreport/ui.po b/source/mk/reportdesign/uiconfig/dbreport/ui.po
index 9d0a37f8211..0905f98eaa5 100644
--- a/source/mk/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/mk/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-19 06:32+0000\n"
+"PO-Revision-Date: 2016-03-08 18:59+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416378742.000000\n"
+"X-POOTLE-MTIME: 1457463560.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/mk/sc/uiconfig/scalc/ui.po b/source/mk/sc/uiconfig/scalc/ui.po
index 4b564aa9e6d..c9cfe6e17ea 100644
--- a/source/mk/sc/uiconfig/scalc/ui.po
+++ b/source/mk/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-06-26 01:54+0000\n"
+"PO-Revision-Date: 2016-03-08 19:23+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mk\n"
@@ -14,7 +14,7 @@ msgstr ""
"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: 1435283659.000000\n"
+"X-POOTLE-MTIME: 1457465035.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6390,22 +6390,24 @@ msgid "Distribution:"
msgstr ""
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter1-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter2-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
msgctxt ""
diff --git a/source/mk/sd/source/ui/app.po b/source/mk/sd/source/ui/app.po
index 8b1c7deaf02..04bcaf7ac88 100644
--- a/source/mk/sd/source/ui/app.po
+++ b/source/mk/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-13 00:33+0000\n"
+"PO-Revision-Date: 2016-03-08 19:40+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431477188.000000\n"
+"X-POOTLE-MTIME: 1457466037.000000\n"
#: menuids3_tmpl.src
msgctxt ""
@@ -3769,12 +3769,13 @@ msgid "<number>"
msgstr "<број>"
#: strings.src
+#, fuzzy
msgctxt ""
"strings.src\n"
"STR_FIELD_PLACEHOLDER_COUNT\n"
"string.text"
msgid "<count>"
-msgstr ""
+msgstr "<count>"
#: strings.src
msgctxt ""
diff --git a/source/mk/sd/uiconfig/simpress/ui.po b/source/mk/sd/uiconfig/simpress/ui.po
index 42ae2dca3bd..d5063691efd 100644
--- a/source/mk/sd/uiconfig/simpress/ui.po
+++ b/source/mk/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:57+0000\n"
+"PO-Revision-Date: 2016-03-08 19:42+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mk\n"
@@ -14,7 +14,7 @@ msgstr ""
"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: 1435283820.000000\n"
+"X-POOTLE-MTIME: 1457466160.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -998,22 +998,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/mk/sw/source/ui/dbui.po b/source/mk/sw/source/ui/dbui.po
index 0a735d60dc1..51eb3c17406 100644
--- a/source/mk/sw/source/ui/dbui.po
+++ b/source/mk/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-13 00:40+0000\n"
+"PO-Revision-Date: 2016-03-08 20:14+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431477658.000000\n"
+"X-POOTLE-MTIME: 1457468047.000000\n"
#: dbui.src
msgctxt ""
@@ -488,31 +488,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/mk/sw/source/ui/index.po b/source/mk/sw/source/ui/index.po
index c46fcc9fc66..b37b806bae1 100644
--- a/source/mk/sw/source/ui/index.po
+++ b/source/mk/sw/source/ui/index.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2012-01-05 13:45+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 20:15+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457468142.000000\n"
#: cnttab.src
#, fuzzy
@@ -57,20 +58,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -105,12 +108,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/mk/sw/uiconfig/swriter/ui.po b/source/mk/sw/uiconfig/swriter/ui.po
index 26de644b67f..6cce04fe171 100644
--- a/source/mk/sw/uiconfig/swriter/ui.po
+++ b/source/mk/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 23:00+0000\n"
+"PO-Revision-Date: 2016-03-08 20:27+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mk\n"
@@ -14,7 +14,7 @@ msgstr ""
"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: 1438902031.000000\n"
+"X-POOTLE-MTIME: 1457468875.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2311,13 +2311,14 @@ msgid "Convert Table to Text"
msgstr "Претворање табела во текст"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2503,13 +2504,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2521,13 +2523,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4434,13 +4437,14 @@ msgid "None"
msgstr ""
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5422,22 +5426,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6347,13 +6353,14 @@ msgid "Position:"
msgstr "Позиција"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"separator_edit\n"
"text\n"
"string.text"
msgid ": "
-msgstr ""
+msgstr ": "
#: insertcaption.ui
msgctxt ""
@@ -6365,13 +6372,14 @@ msgid "Numbering separator:"
msgstr ""
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
msgctxt ""
@@ -8708,13 +8716,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8726,13 +8735,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9580,13 +9590,14 @@ msgid "Position:"
msgstr "Позиција"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
#, fuzzy
@@ -15706,40 +15717,44 @@ msgid "[none]"
msgstr "[Нема]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/mk/vcl/source/src.po b/source/mk/vcl/source/src.po
index a8f184b7f91..201d912a6a8 100644
--- a/source/mk/vcl/source/src.po
+++ b/source/mk/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 18:23+0000\n"
+"PO-Revision-Date: 2016-03-08 20:31+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449858224.000000\n"
+"X-POOTLE-MTIME: 1457469083.000000\n"
#: app.src
msgctxt ""
@@ -1194,12 +1194,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1478,13 +1479,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/ml/cui/uiconfig/ui.po b/source/ml/cui/uiconfig/ui.po
index 6ff4651774a..1209fa79e07 100644
--- a/source/ml/cui/uiconfig/ui.po
+++ b/source/ml/cui/uiconfig/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-19 20:39+0000\n"
-"Last-Translator: Anish Sheela <aneesh.nl@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 18:31+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
"Language: ml\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1453235970.000000\n"
+"X-POOTLE-MTIME: 1457461885.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -13940,31 +13940,34 @@ msgid "N_one"
msgstr "ഒന്നുമില്ല"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
diff --git a/source/ml/dbaccess/uiconfig/ui.po b/source/ml/dbaccess/uiconfig/ui.po
index 5708ce8ae3c..174d26ef805 100644
--- a/source/ml/dbaccess/uiconfig/ui.po
+++ b/source/ml/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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2016-01-20 13:14+0000\n"
-"Last-Translator: mahir <mahirfarook@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 18:35+0000\n"
+"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1453295673.000000\n"
+"X-POOTLE-MTIME: 1457462122.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1931,22 +1931,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1958,13 +1960,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3022,58 +3025,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/ml/extensions/uiconfig/sabpilot/ui.po b/source/ml/extensions/uiconfig/sabpilot/ui.po
index f4703b45925..95a6339d066 100644
--- a/source/ml/extensions/uiconfig/sabpilot/ui.po
+++ b/source/ml/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:57+0000\n"
+"PO-Revision-Date: 2016-03-08 18:42+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ml\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435283821.000000\n"
+"X-POOTLE-MTIME: 1457462560.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/ml/officecfg/registry/data/org/openoffice/Office.po b/source/ml/officecfg/registry/data/org/openoffice/Office.po
index 1371e7676a4..cc41f9242bf 100644
--- a/source/ml/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/ml/officecfg/registry/data/org/openoffice/Office.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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 23:07+0000\n"
+"PO-Revision-Date: 2016-03-08 19:08+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
"Language: ml\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438902459.000000\n"
+"X-POOTLE-MTIME: 1457464083.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1431,13 +1431,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/ml/reportdesign/uiconfig/dbreport/ui.po b/source/ml/reportdesign/uiconfig/dbreport/ui.po
index f5264cb3290..b30b0da64da 100644
--- a/source/ml/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/ml/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2016-01-20 18:16+0000\n"
-"Last-Translator: mahir <mahirfarook@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 19:31+0000\n"
+"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1453313790.000000\n"
+"X-POOTLE-MTIME: 1457465508.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/ml/sw/source/ui/dbui.po b/source/ml/sw/source/ui/dbui.po
index f2f0c064c30..3f14afa3c7e 100644
--- a/source/ml/sw/source/ui/dbui.po
+++ b/source/ml/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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-05-13 01:06+0000\n"
-"Last-Translator: anish <aneesh.nl@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 20:56+0000\n"
+"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431479162.000000\n"
+"X-POOTLE-MTIME: 1457470572.000000\n"
#: dbui.src
msgctxt ""
@@ -488,31 +488,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/ml/sw/source/ui/index.po b/source/ml/sw/source/ui/index.po
index 65417766afa..57bcdfa6685 100644
--- a/source/ml/sw/source/ui/index.po
+++ b/source/ml/sw/source/ui/index.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2013-07-04 05:30+0000\n"
-"Last-Translator: anipeter <peter.ani@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 20:57+0000\n"
+"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1372915857.0\n"
+"X-POOTLE-MTIME: 1457470674.000000\n"
#: cnttab.src
msgctxt ""
@@ -57,20 +57,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -105,12 +107,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/ml/sw/uiconfig/swriter/ui.po b/source/ml/sw/uiconfig/swriter/ui.po
index a5fd84524b6..f7ac9c39656 100644
--- a/source/ml/sw/uiconfig/swriter/ui.po
+++ b/source/ml/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2016-01-20 16:39+0000\n"
-"Last-Translator: mahir <mahirfarook@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 21:12+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: ml\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1453307946.000000\n"
+"X-POOTLE-MTIME: 1457471559.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2478,13 +2478,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2496,13 +2497,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4394,13 +4396,14 @@ msgid "None"
msgstr "ഒന്നുമില്ല"
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5353,22 +5356,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -8614,13 +8619,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8632,13 +8638,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -15544,40 +15551,44 @@ msgid "[none]"
msgstr "[none]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/mn/cui/uiconfig/ui.po b/source/mn/cui/uiconfig/ui.po
index 6fa4574c3c1..825bf241e38 100644
--- a/source/mn/cui/uiconfig/ui.po
+++ b/source/mn/cui/uiconfig/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-02-20 21:28+0000\n"
-"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 18:48+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mn\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456003735.000000\n"
+"X-POOTLE-MTIME: 1457462910.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14037,31 +14037,34 @@ msgid "N_one"
msgstr ""
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
@@ -17335,40 +17338,44 @@ msgid "(None)"
msgstr ""
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"1\n"
"stringlist.text"
msgid "("
-msgstr ""
+msgstr "("
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"2\n"
"stringlist.text"
msgid "["
-msgstr ""
+msgstr "["
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"3\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
#: twolinespage.ui
msgctxt ""
@@ -17389,40 +17396,44 @@ msgid "(None)"
msgstr ""
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
#: twolinespage.ui
msgctxt ""
diff --git a/source/mn/dbaccess/uiconfig/ui.po b/source/mn/dbaccess/uiconfig/ui.po
index 3d88a2ec32e..7dc4d598fad 100644
--- a/source/mn/dbaccess/uiconfig/ui.po
+++ b/source/mn/dbaccess/uiconfig/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-04-22 23:40+0200\n"
-"PO-Revision-Date: 2013-02-17 21:15+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 18:53+0000\n"
+"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361135714.0\n"
+"X-POOTLE-MTIME: 1457463210.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1928,22 +1928,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1955,13 +1957,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3017,58 +3020,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/mn/extensions/uiconfig/sabpilot/ui.po b/source/mn/extensions/uiconfig/sabpilot/ui.po
index b6c51a14609..04757c3c4c7 100644
--- a/source/mn/extensions/uiconfig/sabpilot/ui.po
+++ b/source/mn/extensions/uiconfig/sabpilot/ui.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:54+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2016-03-08 19:01+0000\n"
+"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mn\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435283680.000000\n"
+"X-POOTLE-MTIME: 1457463705.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/mn/librelogo/source/pythonpath.po b/source/mn/librelogo/source/pythonpath.po
index 367989e761c..1c2f755d7ed 100644
--- a/source/mn/librelogo/source/pythonpath.po
+++ b/source/mn/librelogo/source/pythonpath.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2016-02-21 00:56+0000\n"
+"PO-Revision-Date: 2016-03-08 19:17+0000\n"
"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: none\n"
"Language: mn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1456016188.000000\n"
+"X-POOTLE-MTIME: 1457464639.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -791,20 +791,22 @@ msgid "pi|π"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
"property.text"
msgid "."
-msgstr ""
+msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/mn/officecfg/registry/data/org/openoffice/Office.po b/source/mn/officecfg/registry/data/org/openoffice/Office.po
index eeb3481556b..c1b91509e22 100644
--- a/source/mn/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/mn/officecfg/registry/data/org/openoffice/Office.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-08-06 23:05+0000\n"
+"PO-Revision-Date: 2016-03-08 19:27+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438902313.000000\n"
+"X-POOTLE-MTIME: 1457465229.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1430,13 +1430,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/mn/reportdesign/uiconfig/dbreport/ui.po b/source/mn/reportdesign/uiconfig/dbreport/ui.po
index 2a330c226d2..b4760ba8fe3 100644
--- a/source/mn/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/mn/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-19 07:05+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2016-03-08 19:47+0000\n"
+"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mn\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416380740.000000\n"
+"X-POOTLE-MTIME: 1457466446.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/mn/sc/uiconfig/scalc/ui.po b/source/mn/sc/uiconfig/scalc/ui.po
index 8ad22d8b8d2..3ed9a44741a 100644
--- a/source/mn/sc/uiconfig/scalc/ui.po
+++ b/source/mn/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-06-26 02:15+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2016-03-08 20:11+0000\n"
+"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: none\n"
"Language: mn\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435284926.000000\n"
+"X-POOTLE-MTIME: 1457467909.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6390,22 +6390,24 @@ msgid "Distribution:"
msgstr ""
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter1-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter2-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
msgctxt ""
diff --git a/source/mn/sd/uiconfig/simpress/ui.po b/source/mn/sd/uiconfig/simpress/ui.po
index 273cc5596b3..71f0e6ca279 100644
--- a/source/mn/sd/uiconfig/simpress/ui.po
+++ b/source/mn/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 02:18+0000\n"
+"PO-Revision-Date: 2016-03-08 20:31+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435285095.000000\n"
+"X-POOTLE-MTIME: 1457469071.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -998,22 +998,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/mn/sw/source/ui/dbui.po b/source/mn/sw/source/ui/dbui.po
index 950066fe99a..17f3bee660a 100644
--- a/source/mn/sw/source/ui/dbui.po
+++ b/source/mn/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-13 01:29+0000\n"
+"PO-Revision-Date: 2016-03-08 21:03+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431480549.000000\n"
+"X-POOTLE-MTIME: 1457471002.000000\n"
#: dbui.src
msgctxt ""
@@ -488,31 +488,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/mn/sw/source/ui/index.po b/source/mn/sw/source/ui/index.po
index 9b75941d106..817b06989a6 100644
--- a/source/mn/sw/source/ui/index.po
+++ b/source/mn/sw/source/ui/index.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2012-01-05 13:49+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 21:04+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457471078.000000\n"
#: cnttab.src
#, fuzzy
@@ -57,20 +58,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -105,12 +108,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/mn/sw/uiconfig/swriter/ui.po b/source/mn/sw/uiconfig/swriter/ui.po
index 6976f6d70b3..57e09169432 100644
--- a/source/mn/sw/uiconfig/swriter/ui.po
+++ b/source/mn/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 23:06+0000\n"
+"PO-Revision-Date: 2016-03-08 21:17+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mn\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438902411.000000\n"
+"X-POOTLE-MTIME: 1457471848.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2311,13 +2311,14 @@ msgid "Convert Table to Text"
msgstr "Хүснэгтийг бичвэр рүү хөрвүүлэх"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2503,13 +2504,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2521,13 +2523,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4434,13 +4437,14 @@ msgid "None"
msgstr ""
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5422,22 +5426,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6347,13 +6353,14 @@ msgid "Position:"
msgstr " Байрлал"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"separator_edit\n"
"text\n"
"string.text"
msgid ": "
-msgstr ""
+msgstr ": "
#: insertcaption.ui
msgctxt ""
@@ -6365,13 +6372,14 @@ msgid "Numbering separator:"
msgstr ""
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
msgctxt ""
@@ -8707,13 +8715,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8725,13 +8734,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9579,13 +9589,14 @@ msgid "Position:"
msgstr " Байрлал"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
#, fuzzy
@@ -15706,40 +15717,44 @@ msgid "[none]"
msgstr "[none]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/mn/swext/mediawiki/help.po b/source/mn/swext/mediawiki/help.po
index b4b40ad89d1..7523f7ca4f2 100644
--- a/source/mn/swext/mediawiki/help.po
+++ b/source/mn/swext/mediawiki/help.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: 2015-06-28 18:29+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2016-03-09 12:06+0000\n"
+"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mn\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435516172.000000\n"
+"X-POOTLE-MTIME: 1457525163.000000\n"
#: help.tree
msgctxt ""
@@ -527,7 +527,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 occur as plain text in the transformation result, ask the Wiki administrator to install this extension."
-msgstr "Санамж: МедиаВики сервер дээр Cite.php өргөтгөл суусан бол, хөрвүүлэлт <ref> ба <references> тэмдэглээстэй шинэ хэлбэрийн зүүлт хэрэглэнэ. Хөрвүүлэлтийн дараа хэрэв энэ тэмдэглээсүүд бичвэрээр харагдаж байвал, Вики захирагчаасаа энэ өргөтгөлийн суулгах боломжтой эсэхийг лавлана уу."
+msgstr "Санамж: МедиаВики сервер дээр Cite.php өргөтгөл суусан бол, хөрвүүлэлт <ref> ба <references> тэмдэглээстэй шинэ хэлбэрийн хөлийн тэмдэглэл хэрэглэнэ. Хөрвүүлэлтийн дараа хэрэв энэ тэмдэглээсүүд бичвэрээр харагдаж байвал, Вики удирдагчаас энэ өргөтгөлийн суулгах боломжтой эсэхийг лавлана уу."
#: wikiformats.xhp
msgctxt ""
diff --git a/source/mn/vcl/source/src.po b/source/mn/vcl/source/src.po
index 1cea99f34ed..5680305d952 100644
--- a/source/mn/vcl/source/src.po
+++ b/source/mn/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 18:30+0000\n"
+"PO-Revision-Date: 2016-03-08 21:21+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449858629.000000\n"
+"X-POOTLE-MTIME: 1457472095.000000\n"
#: app.src
msgctxt ""
@@ -1252,12 +1252,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1536,13 +1537,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/mni/cui/uiconfig/ui.po b/source/mni/cui/uiconfig/ui.po
index 3b1afc8ff6f..1e6e6104643 100644
--- a/source/mni/cui/uiconfig/ui.po
+++ b/source/mni/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 14:20+0000\n"
+"PO-Revision-Date: 2016-03-08 18:54+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mni\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452262854.000000\n"
+"X-POOTLE-MTIME: 1457463252.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14237,31 +14237,34 @@ msgid "N_one"
msgstr "অমত্তা নত্তে"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
@@ -17573,40 +17576,44 @@ msgid "(None)"
msgstr "(অমত্তা নত্তে)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"1\n"
"stringlist.text"
msgid "("
-msgstr ""
+msgstr "("
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"2\n"
"stringlist.text"
msgid "["
-msgstr ""
+msgstr "["
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"3\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
#: twolinespage.ui
msgctxt ""
@@ -17628,40 +17635,44 @@ msgid "(None)"
msgstr "(অমত্তা নত্তে)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
#: twolinespage.ui
msgctxt ""
diff --git a/source/mni/dbaccess/uiconfig/ui.po b/source/mni/dbaccess/uiconfig/ui.po
index 03e43f2ac3e..659edf45cdc 100644
--- a/source/mni/dbaccess/uiconfig/ui.po
+++ b/source/mni/dbaccess/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-05-13 01:41+0000\n"
+"PO-Revision-Date: 2016-03-08 19:00+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mni\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431481284.000000\n"
+"X-POOTLE-MTIME: 1457463606.000000\n"
#: admindialog.ui
#, fuzzy
@@ -1939,22 +1939,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1966,13 +1968,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3037,58 +3040,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/mni/extensions/uiconfig/sabpilot/ui.po b/source/mni/extensions/uiconfig/sabpilot/ui.po
index 83e02273c2e..d362031c90e 100644
--- a/source/mni/extensions/uiconfig/sabpilot/ui.po
+++ b/source/mni/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 01:59+0000\n"
+"PO-Revision-Date: 2016-03-08 19:09+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mni\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435283954.000000\n"
+"X-POOTLE-MTIME: 1457464140.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -295,13 +295,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -313,13 +314,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -394,22 +396,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -677,13 +681,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/mni/librelogo/source/pythonpath.po b/source/mni/librelogo/source/pythonpath.po
index 7b04118fd7f..404ae4ef767 100644
--- a/source/mni/librelogo/source/pythonpath.po
+++ b/source/mni/librelogo/source/pythonpath.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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2013-02-17 21:16+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 19:24+0000\n"
+"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361135768.0\n"
+"X-POOTLE-MTIME: 1457465078.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -794,20 +794,22 @@ msgid "pi|π"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
"property.text"
msgid "."
-msgstr ""
+msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/mni/officecfg/registry/data/org/openoffice/Office.po b/source/mni/officecfg/registry/data/org/openoffice/Office.po
index 50335940959..4b48faaddf7 100644
--- a/source/mni/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/mni/officecfg/registry/data/org/openoffice/Office.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-08-06 22:59+0000\n"
+"PO-Revision-Date: 2016-03-08 19:36+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mni\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438901985.000000\n"
+"X-POOTLE-MTIME: 1457465775.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1431,13 +1431,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr "%OLE পোত্শকশিংগী মহুৎ শিন্দোকপা গ্রাফিক্স শেমগৎলি..."
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/mni/reportdesign/uiconfig/dbreport/ui.po b/source/mni/reportdesign/uiconfig/dbreport/ui.po
index 5911d85208c..7639072f063 100644
--- a/source/mni/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/mni/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2015-05-13 01:45+0000\n"
+"PO-Revision-Date: 2016-03-08 20:01+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mni\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431481544.000000\n"
+"X-POOTLE-MTIME: 1457467308.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -196,13 +196,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -214,13 +215,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -277,13 +279,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/mni/sc/uiconfig/scalc/ui.po b/source/mni/sc/uiconfig/scalc/ui.po
index 9e722cdc4d2..3df314ac69f 100644
--- a/source/mni/sc/uiconfig/scalc/ui.po
+++ b/source/mni/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-06-26 02:15+0000\n"
+"PO-Revision-Date: 2016-03-08 20:30+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mni\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435284919.000000\n"
+"X-POOTLE-MTIME: 1457469008.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -6389,22 +6389,24 @@ msgid "Distribution:"
msgstr ""
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter1-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
+#, fuzzy
msgctxt ""
"randomnumbergenerator.ui\n"
"parameter2-label\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: randomnumbergenerator.ui
msgctxt ""
diff --git a/source/mni/sd/uiconfig/simpress/ui.po b/source/mni/sd/uiconfig/simpress/ui.po
index 22db8740329..9bac5b5d5df 100644
--- a/source/mni/sd/uiconfig/simpress/ui.po
+++ b/source/mni/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 02:16+0000\n"
+"PO-Revision-Date: 2016-03-08 20:54+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mni\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435285018.000000\n"
+"X-POOTLE-MTIME: 1457470441.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -1004,22 +1004,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/mni/sw/source/ui/dbui.po b/source/mni/sw/source/ui/dbui.po
index 8e1e1c3f508..50e957bbb4e 100644
--- a/source/mni/sw/source/ui/dbui.po
+++ b/source/mni/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-13 02:04+0000\n"
+"PO-Revision-Date: 2016-03-08 21:34+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mni\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431482673.000000\n"
+"X-POOTLE-MTIME: 1457472855.000000\n"
#: dbui.src
msgctxt ""
@@ -487,31 +487,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/mni/sw/source/ui/index.po b/source/mni/sw/source/ui/index.po
index f3998099d31..a5f557118aa 100644
--- a/source/mni/sw/source/ui/index.po
+++ b/source/mni/sw/source/ui/index.po
@@ -3,16 +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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2012-01-05 13:51+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 21:35+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457472946.000000\n"
#: cnttab.src
#, fuzzy
@@ -56,20 +57,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -104,12 +107,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/mni/sw/uiconfig/swriter/ui.po b/source/mni/sw/uiconfig/swriter/ui.po
index 695ce6c6962..152c882f5c5 100644
--- a/source/mni/sw/uiconfig/swriter/ui.po
+++ b/source/mni/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 23:00+0000\n"
+"PO-Revision-Date: 2016-03-08 21:50+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: mni\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438902001.000000\n"
+"X-POOTLE-MTIME: 1457473833.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2310,13 +2310,14 @@ msgid "Convert Table to Text"
msgstr "তেবল তেক্সত্তা ওন্থোকউ"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2502,13 +2503,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2520,13 +2522,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4433,13 +4436,14 @@ msgid "None"
msgstr ""
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5421,22 +5425,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6345,13 +6351,14 @@ msgid "Position:"
msgstr "মফম"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"separator_edit\n"
"text\n"
"string.text"
msgid ": "
-msgstr ""
+msgstr ": "
#: insertcaption.ui
msgctxt ""
@@ -6363,13 +6370,14 @@ msgid "Numbering separator:"
msgstr ""
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
msgctxt ""
@@ -8705,13 +8713,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8723,13 +8732,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9577,13 +9587,14 @@ msgid "Position:"
msgstr "মফম"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
#, fuzzy
@@ -15706,40 +15717,44 @@ msgid "[none]"
msgstr "[অমত্তা নত্তে]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/mni/vcl/source/src.po b/source/mni/vcl/source/src.po
index 13a6aaf5550..bf35cf93e29 100644
--- a/source/mni/vcl/source/src.po
+++ b/source/mni/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 18:51+0000\n"
+"PO-Revision-Date: 2016-03-08 21:54+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mni\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449859898.000000\n"
+"X-POOTLE-MTIME: 1457474077.000000\n"
#: app.src
msgctxt ""
@@ -1507,13 +1507,14 @@ msgid "pixel"
msgstr "পিক্সেল"
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/mr/dbaccess/uiconfig/ui.po b/source/mr/dbaccess/uiconfig/ui.po
index c9c23f38505..90bd42d1f38 100644
--- a/source/mr/dbaccess/uiconfig/ui.po
+++ b/source/mr/dbaccess/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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-05-13 02:15+0000\n"
+"PO-Revision-Date: 2016-03-08 20:27+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Marathi <sshedmak@redhat.com>\n"
"Language: mr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431483335.000000\n"
+"X-POOTLE-MTIME: 1457468839.000000\n"
#: admindialog.ui
#, fuzzy
@@ -3054,58 +3054,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/mr/extensions/uiconfig/sabpilot/ui.po b/source/mr/extensions/uiconfig/sabpilot/ui.po
index 652e0dc79b7..877752acfd5 100644
--- a/source/mr/extensions/uiconfig/sabpilot/ui.po
+++ b/source/mr/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 02:11+0000\n"
+"PO-Revision-Date: 2016-03-08 20:35+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Marathi <sshedmak@redhat.com>\n"
"Language: mr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435284716.000000\n"
+"X-POOTLE-MTIME: 1457469331.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -290,13 +290,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -308,13 +309,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -389,22 +391,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -668,13 +672,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/mr/officecfg/registry/data/org/openoffice/Office.po b/source/mr/officecfg/registry/data/org/openoffice/Office.po
index 81a1c766601..aa7fc098487 100644
--- a/source/mr/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/mr/officecfg/registry/data/org/openoffice/Office.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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 23:08+0000\n"
+"PO-Revision-Date: 2016-03-08 21:02+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438902483.000000\n"
+"X-POOTLE-MTIME: 1457470936.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1431,13 +1431,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/mr/reportdesign/uiconfig/dbreport/ui.po b/source/mr/reportdesign/uiconfig/dbreport/ui.po
index 9215c72ea62..ec503a114b4 100644
--- a/source/mr/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/mr/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-19 07:38+0000\n"
+"PO-Revision-Date: 2016-03-08 21:28+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Marathi <sshedmak@redhat.com>\n"
"Language: mr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416382739.000000\n"
+"X-POOTLE-MTIME: 1457472510.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/mr/sw/source/ui/index.po b/source/mr/sw/source/ui/index.po
index 66707e5dbf1..0b34860e6a3 100644
--- a/source/mr/sw/source/ui/index.po
+++ b/source/mr/sw/source/ui/index.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2013-06-19 14:23+0530\n"
-"Last-Translator: Sandeep Shedmake <sshedmak@redhat.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 23:04+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1371452382.0\n"
+"X-POOTLE-MTIME: 1457478246.000000\n"
#: cnttab.src
msgctxt ""
@@ -57,20 +57,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -105,12 +107,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/mr/sw/uiconfig/swriter/ui.po b/source/mr/sw/uiconfig/swriter/ui.po
index 8ff9282fac2..a7a5b1c016f 100644
--- a/source/mr/sw/uiconfig/swriter/ui.po
+++ b/source/mr/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 23:09+0000\n"
+"PO-Revision-Date: 2016-03-08 23:21+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Marathi <sshedmak@redhat.com>\n"
"Language: mr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438902558.000000\n"
+"X-POOTLE-MTIME: 1457479289.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2491,13 +2491,14 @@ msgid "|<"
msgstr "|<"
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2509,13 +2510,14 @@ msgid ">|"
msgstr ">|"
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
diff --git a/source/mr/vcl/source/src.po b/source/mr/vcl/source/src.po
index d5a0a22cb61..0ac922fa551 100644
--- a/source/mr/vcl/source/src.po
+++ b/source/mr/vcl/source/src.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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 18:59+0000\n"
+"PO-Revision-Date: 2016-03-08 23:25+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449860369.000000\n"
+"X-POOTLE-MTIME: 1457479536.000000\n"
#: app.src
msgctxt ""
@@ -1176,12 +1176,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1458,13 +1459,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/my/cui/uiconfig/ui.po b/source/my/cui/uiconfig/ui.po
index 74aa7493fe5..1157df9e27e 100644
--- a/source/my/cui/uiconfig/ui.po
+++ b/source/my/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 14:24+0000\n"
+"PO-Revision-Date: 2016-03-08 20:59+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: my\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452263088.000000\n"
+"X-POOTLE-MTIME: 1457470762.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14123,31 +14123,34 @@ msgid "N_one"
msgstr "မရှိပါ"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
@@ -17437,40 +17440,44 @@ msgid "(None)"
msgstr "(ဘာမျှမရှိပါ)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"1\n"
"stringlist.text"
msgid "("
-msgstr ""
+msgstr "("
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"2\n"
"stringlist.text"
msgid "["
-msgstr ""
+msgstr "["
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"3\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
#: twolinespage.ui
msgctxt ""
@@ -17491,40 +17498,44 @@ msgid "(None)"
msgstr "(ဘာမျှမရှိပါ)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
#: twolinespage.ui
msgctxt ""
diff --git a/source/my/dbaccess/uiconfig/ui.po b/source/my/dbaccess/uiconfig/ui.po
index 42e05434707..121846a27bf 100644
--- a/source/my/dbaccess/uiconfig/ui.po
+++ b/source/my/dbaccess/uiconfig/ui.po
@@ -4,15 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE 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: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2016-03-08 21:04+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457471049.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1926,22 +1927,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1953,13 +1956,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3015,58 +3019,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/my/extensions/uiconfig/sabpilot/ui.po b/source/my/extensions/uiconfig/sabpilot/ui.po
index d866e336be0..b8e88c7d941 100644
--- a/source/my/extensions/uiconfig/sabpilot/ui.po
+++ b/source/my/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 02:05+0000\n"
+"PO-Revision-Date: 2016-03-08 21:12+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: my\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435284311.000000\n"
+"X-POOTLE-MTIME: 1457471551.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -280,13 +280,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -298,13 +299,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -379,22 +381,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -647,13 +651,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/my/librelogo/source/pythonpath.po b/source/my/librelogo/source/pythonpath.po
index 497a28bb265..d4522eba5da 100644
--- a/source/my/librelogo/source/pythonpath.po
+++ b/source/my/librelogo/source/pythonpath.po
@@ -3,16 +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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2012-11-17 19:02+0200\n"
-"Last-Translator: Automatically generated\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 21:29+0000\n"
+"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457472569.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -767,20 +768,22 @@ msgid "pi|π"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
"property.text"
msgid "."
-msgstr ""
+msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/my/officecfg/registry/data/org/openoffice/Office.po b/source/my/officecfg/registry/data/org/openoffice/Office.po
index 46c05fcdfba..53c06553dcf 100644
--- a/source/my/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/my/officecfg/registry/data/org/openoffice/Office.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-08-06 23:00+0000\n"
+"PO-Revision-Date: 2016-03-08 21:38+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: my\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438902040.000000\n"
+"X-POOTLE-MTIME: 1457473129.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1442,13 +1442,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/my/reportdesign/uiconfig/dbreport/ui.po b/source/my/reportdesign/uiconfig/dbreport/ui.po
index bb7a676d220..8d2a08541ed 100644
--- a/source/my/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/my/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-19 08:07+0000\n"
+"PO-Revision-Date: 2016-03-08 22:03+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: my\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416384467.000000\n"
+"X-POOTLE-MTIME: 1457474580.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -196,13 +196,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -214,13 +215,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -277,13 +279,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/my/sc/source/ui/src.po b/source/my/sc/source/ui/src.po
index 44481f49296..c5470c1c94a 100644
--- a/source/my/sc/source/ui/src.po
+++ b/source/my/sc/source/ui/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-12-11 12:57+0100\n"
-"PO-Revision-Date: 2015-06-26 02:21+0000\n"
+"PO-Revision-Date: 2016-03-08 22:24+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: my\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435285267.000000\n"
+"X-POOTLE-MTIME: 1457475882.000000\n"
#: condformatdlg.src
msgctxt ""
@@ -2607,13 +2607,14 @@ msgid "Text Attributes"
msgstr "စာသားလုပ်ဆောင်နိုင်မှုများ"
#: globstr.src
+#, fuzzy
msgctxt ""
"globstr.src\n"
"RID_GLOBSTR\n"
"STR_HFCMD_DELIMITER\n"
"string.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: globstr.src
msgctxt ""
diff --git a/source/my/sd/uiconfig/simpress/ui.po b/source/my/sd/uiconfig/simpress/ui.po
index 41d68fbf430..6a64a37d911 100644
--- a/source/my/sd/uiconfig/simpress/ui.po
+++ b/source/my/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 02:24+0000\n"
+"PO-Revision-Date: 2016-03-08 22:53+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: my\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435285454.000000\n"
+"X-POOTLE-MTIME: 1457477631.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -1004,22 +1004,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/my/sw/source/core/undo.po b/source/my/sw/source/core/undo.po
index a3e74726cb0..e4993aec3ad 100644
--- a/source/my/sw/source/core/undo.po
+++ b/source/my/sw/source/core/undo.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:40+0200\n"
-"PO-Revision-Date: 2015-05-13 03:01+0000\n"
+"PO-Revision-Date: 2016-03-08 23:29+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: my\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431486101.000000\n"
+"X-POOTLE-MTIME: 1457479771.000000\n"
#: undo.src
msgctxt ""
@@ -793,20 +793,22 @@ msgid "Table/index changed"
msgstr "ဇယား/အညွှန်း ပြောင်းသည်"
#: undo.src
+#, fuzzy
msgctxt ""
"undo.src\n"
"STR_START_QUOTE\n"
"string.text"
msgid "'"
-msgstr ""
+msgstr "'"
#: undo.src
+#, fuzzy
msgctxt ""
"undo.src\n"
"STR_END_QUOTE\n"
"string.text"
msgid "'"
-msgstr ""
+msgstr "'"
#: undo.src
msgctxt ""
diff --git a/source/my/sw/source/ui/dbui.po b/source/my/sw/source/ui/dbui.po
index b51caefc35a..e7afd86554d 100644
--- a/source/my/sw/source/ui/dbui.po
+++ b/source/my/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-13 03:02+0000\n"
+"PO-Revision-Date: 2016-03-08 23:32+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: my\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431486171.000000\n"
+"X-POOTLE-MTIME: 1457479931.000000\n"
#: dbui.src
msgctxt ""
@@ -487,31 +487,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/my/sw/source/ui/index.po b/source/my/sw/source/ui/index.po
index bf97a61b517..b9c049e6037 100644
--- a/source/my/sw/source/ui/index.po
+++ b/source/my/sw/source/ui/index.po
@@ -3,16 +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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2012-01-05 14:05+0200\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 23:33+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457480031.000000\n"
#: cnttab.src
msgctxt ""
@@ -55,20 +56,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -103,12 +106,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/my/sw/source/ui/misc.po b/source/my/sw/source/ui/misc.po
index 24567f863f9..29c1765438e 100644
--- a/source/my/sw/source/ui/misc.po
+++ b/source/my/sw/source/ui/misc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-05-11 16:12+0200\n"
-"PO-Revision-Date: 2015-05-13 03:03+0000\n"
+"PO-Revision-Date: 2016-03-08 23:34+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: my\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431486196.000000\n"
+"X-POOTLE-MTIME: 1457480047.000000\n"
#: glossary.src
msgctxt ""
@@ -40,12 +40,13 @@ msgid "Delete the category "
msgstr "အမျိုးအစား ဖျက်မလား?"
#: glossary.src
+#, fuzzy
msgctxt ""
"glossary.src\n"
"STR_QUERY_DELETE_GROUP2\n"
"string.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: glossary.src
msgctxt ""
diff --git a/source/my/sw/uiconfig/swriter/ui.po b/source/my/sw/uiconfig/swriter/ui.po
index ff8bf2281e7..9a62a68a89d 100644
--- a/source/my/sw/uiconfig/swriter/ui.po
+++ b/source/my/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 23:01+0000\n"
+"PO-Revision-Date: 2016-03-08 23:47+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: my\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438902091.000000\n"
+"X-POOTLE-MTIME: 1457480877.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2294,13 +2294,14 @@ msgid "Convert Table to Text"
msgstr "ဇယားမှစာသားသို့ကူးပြောင်းပါ"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2475,13 +2476,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2493,13 +2495,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4392,13 +4395,14 @@ msgid "None"
msgstr "မရှိပါ"
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5352,22 +5356,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6288,13 +6294,14 @@ msgid "Numbering separator:"
msgstr "နံပါတ်စဉ်တပ်ခြင်း ပိုင်းခြားကန့်သတ်မှု"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
#, fuzzy
@@ -8617,13 +8624,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8635,13 +8643,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9487,13 +9496,14 @@ msgid "Position:"
msgstr "ရပ်တည်ချက်"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
msgctxt ""
@@ -15548,40 +15558,44 @@ msgid "[none]"
msgstr "[None]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/my/vcl/source/src.po b/source/my/vcl/source/src.po
index b3a11699dd0..2bf66208a15 100644
--- a/source/my/vcl/source/src.po
+++ b/source/my/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 18:51+0000\n"
+"PO-Revision-Date: 2016-03-08 23:51+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: my\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449859903.000000\n"
+"X-POOTLE-MTIME: 1457481093.000000\n"
#: app.src
msgctxt ""
@@ -1225,12 +1225,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1390,13 +1391,14 @@ msgid "pc"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"\"\n"
"itemlist.text"
msgid "\""
-msgstr ""
+msgstr "\""
#: units.src
msgctxt ""
@@ -1417,13 +1419,14 @@ msgid "inch"
msgstr "လက်မ"
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"'\n"
"itemlist.text"
msgid "'"
-msgstr ""
+msgstr "'"
#: units.src
msgctxt ""
@@ -1507,13 +1510,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/my/wizards/source/formwizard.po b/source/my/wizards/source/formwizard.po
index aecf78fc1bf..de350d24ae4 100644
--- a/source/my/wizards/source/formwizard.po
+++ b/source/my/wizards/source/formwizard.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: 2015-05-13 03:04+0000\n"
+"PO-Revision-Date: 2016-03-08 23:58+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: my\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431486287.000000\n"
+"X-POOTLE-MTIME: 1457481498.000000\n"
#: dbwizres.src
msgctxt ""
@@ -2528,12 +2528,13 @@ msgid "+"
msgstr ""
#: dbwizres.src
+#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_DB_TABLE_WIZARD_START + 22\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: dbwizres.src
msgctxt ""
diff --git a/source/nb/avmedia/source/viewer.po b/source/nb/avmedia/source/viewer.po
index 3e68dba27bc..f31234b495b 100644
--- a/source/nb/avmedia/source/viewer.po
+++ b/source/nb/avmedia/source/viewer.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: 2015-02-02 00:56+0000\n"
+"PO-Revision-Date: 2016-03-08 21:00+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1422838597.000000\n"
+"X-POOTLE-MTIME: 1457470815.000000\n"
#: mediawindow.src
msgctxt ""
@@ -25,13 +25,12 @@ msgid "Insert Audio or Video"
msgstr "Sett inn audio eller video"
#: mediawindow.src
-#, fuzzy
msgctxt ""
"mediawindow.src\n"
"AVMEDIA_STR_OPENMEDIA_DLG\n"
"string.text"
msgid "Open Audio or Video"
-msgstr "Sett inn audio eller video"
+msgstr "Sett inn lyd eller video"
#: mediawindow.src
msgctxt ""
diff --git a/source/nb/basctl/source/basicide.po b/source/nb/basctl/source/basicide.po
index 606b53ef7da..9c9c8ffce3a 100644
--- a/source/nb/basctl/source/basicide.po
+++ b/source/nb/basctl/source/basicide.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: 2015-08-22 06:46+0000\n"
-"Last-Translator: Klaus Ade Johnstad <klausade@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 21:01+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440226017.000000\n"
+"X-POOTLE-MTIME: 1457470866.000000\n"
#: basicprint.src
msgctxt ""
@@ -786,7 +786,7 @@ msgctxt ""
"RID_STR_TRANSLATION_DEFAULT\n"
"string.text"
msgid "[Default Language]"
-msgstr "[Standardspråk]"
+msgstr "[ Standardspråk ]"
#: basidesh.src
msgctxt ""
@@ -857,10 +857,11 @@ msgid ""
"Rename dialog to keep current dialog or replace existing dialog.\n"
" "
msgstr ""
-"Biblioteket inneholder allerede et dialogvindu som heter: \n"
+"Biblioteket inneholder allerede et dialogvindu med navnet:\n"
+"\n"
"$(ARG1)\n"
"\n"
-"Gi dette dialogvinduet et annet navn for å beholde det, eller erstatte det eksisterende.\n"
+"Endre navnet til dialogvinduet for å beholde det, eller erstatt det eksisterende.\n"
" "
#: basidesh.src
diff --git a/source/nb/basctl/source/dlged.po b/source/nb/basctl/source/dlged.po
index e64d6331d48..cb2520489c1 100644
--- a/source/nb/basctl/source/dlged.po
+++ b/source/nb/basctl/source/dlged.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: 2014-05-07 22:01+0000\n"
-"Last-Translator: Olav <odahlum@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 21:01+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1399500074.000000\n"
+"X-POOTLE-MTIME: 1457470869.000000\n"
#: dlgresid.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"RID_STR_DEF_LANG\n"
"string.text"
msgid "[Default Language]"
-msgstr "[Standardspråk]"
+msgstr "[ Standardspråk ]"
#: dlgresid.src
msgctxt ""
diff --git a/source/nb/basctl/uiconfig/basicide/ui.po b/source/nb/basctl/uiconfig/basicide/ui.po
index cf2e2584430..265e6db4fd6 100644
--- a/source/nb/basctl/uiconfig/basicide/ui.po
+++ b/source/nb/basctl/uiconfig/basicide/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-05-13 03:07+0000\n"
+"PO-Revision-Date: 2016-03-08 21:01+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431486448.000000\n"
+"X-POOTLE-MTIME: 1457470896.000000\n"
#: basicmacrodialog.ui
msgctxt ""
@@ -125,17 +125,15 @@ msgid "Set Default User Interface Language"
msgstr "Velg standardspråk for brukergrensesnittet"
#: defaultlanguage.ui
-#, fuzzy
msgctxt ""
"defaultlanguage.ui\n"
"defaultlabel\n"
"label\n"
"string.text"
msgid "Default language:"
-msgstr "Standardspråk"
+msgstr "Språk"
#: defaultlanguage.ui
-#, fuzzy
msgctxt ""
"defaultlanguage.ui\n"
"checkedlabel\n"
@@ -199,7 +197,6 @@ msgid "You are about to delete the resources for the selected language(s). All u
msgstr "Du er i ferd med å slette ressursene for det valgte språket/de valgte språkene. All tekst i brukergrensesnittet for dette språket/disse språkene blir slettet."
#: dialogpage.ui
-#, fuzzy
msgctxt ""
"dialogpage.ui\n"
"label1\n"
@@ -281,7 +278,6 @@ msgid "Export as BASIC library"
msgstr "Eksporter som et BASIC-bibliotek"
#: gotolinedialog.ui
-#, fuzzy
msgctxt ""
"gotolinedialog.ui\n"
"GotoLineDialog\n"
@@ -291,7 +287,6 @@ msgid "Go to Line"
msgstr "Gå til linje"
#: gotolinedialog.ui
-#, fuzzy
msgctxt ""
"gotolinedialog.ui\n"
"area\n"
@@ -337,7 +332,6 @@ msgid "Options"
msgstr "Valg"
#: libpage.ui
-#, fuzzy
msgctxt ""
"libpage.ui\n"
"label1\n"
@@ -347,7 +341,6 @@ msgid "L_ocation:"
msgstr "_Plassering"
#: libpage.ui
-#, fuzzy
msgctxt ""
"libpage.ui\n"
"lingudictsft\n"
@@ -411,7 +404,6 @@ msgid "Active"
msgstr "Aktiv"
#: managebreakpoints.ui
-#, fuzzy
msgctxt ""
"managebreakpoints.ui\n"
"label2\n"
@@ -439,7 +431,6 @@ msgid "Manage User Interface Languages [$1]"
msgstr "Håndter språk i brukergrensesnittet [$1]"
#: managelanguages.ui
-#, fuzzy
msgctxt ""
"managelanguages.ui\n"
"label1\n"
@@ -476,7 +467,6 @@ msgid "Default"
msgstr "Standard"
#: modulepage.ui
-#, fuzzy
msgctxt ""
"modulepage.ui\n"
"label1\n"
diff --git a/source/nb/basic/source/classes.po b/source/nb/basic/source/classes.po
index 94021bf59aa..8dc08b472e6 100644
--- a/source/nb/basic/source/classes.po
+++ b/source/nb/basic/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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-09-19 17:08+0000\n"
-"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
+"PO-Revision-Date: 2016-03-08 21:03+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,10 +14,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1442682483.000000\n"
+"X-POOTLE-MTIME: 1457470999.000000\n"
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -27,7 +26,6 @@ msgid "Syntax error."
msgstr "Syntaksfeil."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -37,17 +35,15 @@ msgid "Return without Gosub."
msgstr "Retur uten Gosub"
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_REDO_FROM_START & ERRCODE_RES_MASK\n"
"string.text"
msgid "Incorrect entry; please retry."
-msgstr "Feil i oppføringa. Prøv igjen."
+msgstr "Feil i oppføringen. Prøv igjen."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -57,7 +53,6 @@ msgid "Invalid procedure call."
msgstr "Ugyldig prosedyrekall."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -67,7 +62,6 @@ msgid "Overflow."
msgstr "Overflyt."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -77,7 +71,6 @@ msgid "Not enough memory."
msgstr "Ikke nok minne."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -87,7 +80,6 @@ msgid "Array already dimensioned."
msgstr "Tabellen er allerede dimensjonert."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -97,7 +89,6 @@ msgid "Index out of defined range."
msgstr "Indeksen er utenfor det angitte området."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -107,7 +98,6 @@ msgid "Duplicate definition."
msgstr "Dobbeldefinisjon."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -117,7 +107,6 @@ msgid "Division by zero."
msgstr "Deling med null."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -127,7 +116,6 @@ msgid "Variable not defined."
msgstr "Variabelen er ikke angitt."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -137,7 +125,6 @@ msgid "Data type mismatch."
msgstr "Datatypene passer ikke sammen."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -147,7 +134,6 @@ msgid "Invalid parameter."
msgstr "Ugyldig parameter."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -157,7 +143,6 @@ msgid "Process interrupted by user."
msgstr "Prosessen er avbrutt av brukeren."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -167,7 +152,6 @@ msgid "Resume without error."
msgstr "Fortsett uten feil."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -177,7 +161,6 @@ msgid "Not enough stack memory."
msgstr "Ikke nok stabelminne."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -187,7 +170,6 @@ msgid "Sub-procedure or function procedure not defined."
msgstr "Underprosedyre eller funksjonsprosedyre er ikke angitt."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -197,17 +179,15 @@ msgid "Error loading DLL file."
msgstr "Feil ved lasting av DLL-fil."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_BAD_DLL_CALL & ERRCODE_RES_MASK\n"
"string.text"
msgid "Wrong DLL call convention."
-msgstr "Feil DLL-kallkonvensjon."
+msgstr "Feil DLL-oppkall konvensjon."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -217,7 +197,6 @@ msgid "Internal error $(ARG1)."
msgstr "Intern feil $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -227,7 +206,6 @@ msgid "Invalid file name or file number."
msgstr "Ugyldig filnavn eller -nummer."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -237,7 +215,6 @@ msgid "File not found."
msgstr "Fant ikke fila."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -247,17 +224,15 @@ msgid "Incorrect file mode."
msgstr "Feil filmodus."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_FILE_ALREADY_OPEN & ERRCODE_RES_MASK\n"
"string.text"
msgid "File already open."
-msgstr "Fila er allerede åpnet."
+msgstr "Fila er allerede åpen."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -267,7 +242,6 @@ msgid "Device I/O error."
msgstr "Inn/ut-feil på enheten."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -277,7 +251,6 @@ msgid "File already exists."
msgstr "Fila finnes allerede."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -287,7 +260,6 @@ msgid "Incorrect record length."
msgstr "Feil postlengde."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -297,17 +269,15 @@ msgid "Disk or hard drive full."
msgstr "Disken eller harddisken er full."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_READ_PAST_EOF & ERRCODE_RES_MASK\n"
"string.text"
msgid "Reading exceeds EOF."
-msgstr "Leser forbi slutten av fila."
+msgstr "Lesing forbi slutten av fila."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -317,7 +287,6 @@ msgid "Incorrect record number."
msgstr "Feil postnummer."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -327,7 +296,6 @@ msgid "Too many files."
msgstr "For mange filer."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -337,7 +305,6 @@ msgid "Device not available."
msgstr "Enheten er ikke tilgjengelig."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -347,7 +314,6 @@ msgid "Access denied."
msgstr "Ingen tilgang."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -357,7 +323,6 @@ msgid "Disk not ready."
msgstr "Disken er ikke klar."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -367,7 +332,6 @@ msgid "Not implemented."
msgstr "Ikke implementert."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -377,7 +341,6 @@ msgid "Renaming on different drives impossible."
msgstr "Kan ikke endre navn på ulike stasjoner."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -387,7 +350,6 @@ msgid "Path/File access error."
msgstr "Tilgangsfeil ved sti/fil."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -397,7 +359,6 @@ msgid "Path not found."
msgstr "Fant ikke stien."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -407,7 +368,6 @@ msgid "Object variable not set."
msgstr "Objektvariabelen er ikke angitt."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -417,7 +377,6 @@ msgid "Invalid string pattern."
msgstr "Ugyldig strengmønster."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -427,7 +386,6 @@ msgid "Use of zero not permitted."
msgstr "Bruk av null ikke tillatt."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -437,7 +395,6 @@ msgid "DDE Error."
msgstr "DDE-feil."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -447,7 +404,6 @@ msgid "Awaiting response to DDE connection."
msgstr "Venter på svar på DDE-forbindelse."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -457,7 +413,6 @@ msgid "No DDE channels available."
msgstr "Ingen DDE-kanaler er tilgjengelige."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -467,7 +422,6 @@ msgid "No application responded to DDE connect initiation."
msgstr "Ingen programmer svarte på DDE-start."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -477,7 +431,6 @@ msgid "Too many applications responded to DDE connect initiation."
msgstr "For mange programmer svarte på DDE-forbindelsesstart."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -487,7 +440,6 @@ msgid "DDE channel locked."
msgstr "DDE-kanalen er låst."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -497,7 +449,6 @@ msgid "External application cannot execute DDE operation."
msgstr "Eksternt program kan ikke utføre DDE-operasjon."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -507,7 +458,6 @@ msgid "Timeout while waiting for DDE response."
msgstr "Tidsgrense nådd ved venting på DDE-svar."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -517,7 +467,6 @@ msgid "User pressed ESCAPE during DDE operation."
msgstr "Brukeren trykket på «Escape» under DDE-operasjonen."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -527,7 +476,6 @@ msgid "External application busy."
msgstr "Eksternt program opptatt."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -537,7 +485,6 @@ msgid "DDE operation without data."
msgstr "DDE-operasjon uten data."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -547,7 +494,6 @@ msgid "Data are in wrong format."
msgstr "Dataene er i feil format."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -557,7 +503,6 @@ msgid "External application has been terminated."
msgstr "Det eksterne programmet er avsluttet."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -567,7 +512,6 @@ msgid "DDE connection interrupted or modified."
msgstr "DDE-forbindelse avbrutt eller endret."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -577,7 +521,6 @@ msgid "DDE method invoked with no channel open."
msgstr "DDE-metode startet uten noen åpen kanal."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -587,17 +530,15 @@ msgid "Invalid DDE link format."
msgstr "Ugyldig DDE-lenkeformat."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
"ERRCODE_BASIC_DDE_QUEUE_OVERFLOW & ERRCODE_RES_MASK\n"
"string.text"
msgid "DDE message has been lost."
-msgstr "DDE-meldinga er tapt."
+msgstr "DDE-meldingen er tapt."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -607,7 +548,6 @@ msgid "Paste link already performed."
msgstr "Innliminga av lenka er allerede utført."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -617,7 +557,6 @@ msgid "Link mode cannot be set due to invalid link topic."
msgstr "Kan ikke velge lenkemodus fordi temaet for lenka er ugyldig."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -627,7 +566,6 @@ msgid "DDE requires the DDEML.DLL file."
msgstr "DDE trenger fila DDEML.DLL."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -637,7 +575,6 @@ msgid "Module cannot be loaded; invalid format."
msgstr "Kan ikke laste inn modulen; ugyldig format."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -647,7 +584,6 @@ msgid "Invalid object index."
msgstr "Ugyldig objektindeks."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -657,7 +593,6 @@ msgid "Object is not available."
msgstr "Objektet er ikke tilgjengelig."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -667,7 +602,6 @@ msgid "Incorrect property value."
msgstr "Feil verdi på egenskap."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -677,7 +611,6 @@ msgid "This property is read-only."
msgstr "Denne egenskapen er skrivebeskyttet."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -687,7 +620,6 @@ msgid "This property is write only."
msgstr "Denne egenskapen kan bare skrives."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -697,7 +629,6 @@ msgid "Invalid object reference."
msgstr "Ugyldig objektreferanse."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -707,7 +638,6 @@ msgid "Property or method not found: $(ARG1)."
msgstr "Fant ikke egenskap eller metode: $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -717,7 +647,6 @@ msgid "Object required."
msgstr "Trenger objekt."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -727,7 +656,6 @@ msgid "Invalid use of an object."
msgstr "Ugyldig bruk av objekt."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -737,7 +665,6 @@ msgid "OLE Automation is not supported by this object."
msgstr "Objektet støtter ikke OLE-automatisering."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -747,7 +674,6 @@ msgid "This property or method is not supported by the object."
msgstr "Objektet støtter ikke denne egenskapen eller metoden."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -757,7 +683,6 @@ msgid "OLE Automation Error."
msgstr "OLE-automatiseringsfeil."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -767,7 +692,6 @@ msgid "This action is not supported by given object."
msgstr "Objektet støtter ikke denne handlinga."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -777,7 +701,6 @@ msgid "Named arguments are not supported by given object."
msgstr "Objektet støtter ikke de oppgitte argumentene."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -787,7 +710,6 @@ msgid "The current locale setting is not supported by the given object."
msgstr "Objektet støtter ikke lokalinnstillinga."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -797,7 +719,6 @@ msgid "Named argument not found."
msgstr "Fant ikke det oppgitte argumentet."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -807,7 +728,6 @@ msgid "Argument is not optional."
msgstr "Argumentet er ikke valgfritt."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -817,7 +737,6 @@ msgid "Invalid number of arguments."
msgstr "Ugyldig antall argumenter."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -827,7 +746,6 @@ msgid "Object is not a list."
msgstr "Objektet er ingen liste."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -837,7 +755,6 @@ msgid "Invalid ordinal number."
msgstr "Ugyldig ordenstall."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -847,7 +764,6 @@ msgid "Specified DLL function not found."
msgstr "Fant ikke den spesifiserte DLL-funksjonen."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -857,7 +773,6 @@ msgid "Invalid clipboard format."
msgstr "Ugyldig utklippstavleformat."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -867,7 +782,6 @@ msgid "Object does not have this property."
msgstr "Objektet har ikke denne egenskapen."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -877,7 +791,6 @@ msgid "Object does not have this method."
msgstr "Objektet har ikke denne metoden."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -887,7 +800,6 @@ msgid "Required argument lacking."
msgstr "Et nødvendig argument mangler."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -897,7 +809,6 @@ msgid "Invalid number of arguments."
msgstr "Ugyldig antall argumenter."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -907,7 +818,6 @@ msgid "Error executing a method."
msgstr "Feil ved utføring av metode."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -917,7 +827,6 @@ msgid "Unable to set property."
msgstr "Kan ikke velge egenskap."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -927,7 +836,6 @@ msgid "Unable to determine property."
msgstr "Kan ikke bestemme egenskap."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -937,7 +845,6 @@ msgid "Unexpected symbol: $(ARG1)."
msgstr "Uventet tegn: $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -947,7 +854,6 @@ msgid "Expected: $(ARG1)."
msgstr "Forventet: $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -957,7 +863,6 @@ msgid "Symbol expected."
msgstr "Forventet tegn."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -967,7 +872,6 @@ msgid "Variable expected."
msgstr "Forventet variabel."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -977,7 +881,6 @@ msgid "Label expected."
msgstr "Forventet etikett."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -987,7 +890,6 @@ msgid "Value cannot be applied."
msgstr "Kan ikke bruke verdi."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -997,7 +899,6 @@ msgid "Variable $(ARG1) already defined."
msgstr "Variabelen $(ARG1) er allerede angitt."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1007,7 +908,6 @@ msgid "Sub procedure or function procedure $(ARG1) already defined."
msgstr "Underprosedyren eller funksjonsprosedyren $(ARG1) er allerede angitt."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1017,7 +917,6 @@ msgid "Label $(ARG1) already defined."
msgstr "Etiketten $(ARG1) er allerede angitt."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1027,7 +926,6 @@ msgid "Variable $(ARG1) not found."
msgstr "Fant ikke variabelen $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1037,7 +935,6 @@ msgid "Array or procedure $(ARG1) not found."
msgstr "Fant ikke tabellen eller prosedyren $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1047,7 +944,6 @@ msgid "Procedure $(ARG1) not found."
msgstr "Fant ikke prosedyren $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1057,7 +953,6 @@ msgid "Label $(ARG1) undefined."
msgstr "Etiketten $(ARG1) er ikke angitt."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1067,7 +962,6 @@ msgid "Unknown data type $(ARG1)."
msgstr "Ukjent datatype $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1086,7 +980,6 @@ msgid "Statement block still open: $(ARG1) missing."
msgstr "Uttrykksblokk fremdeles åpen: $(ARG1) mangler."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1096,7 +989,6 @@ msgid "Parentheses do not match."
msgstr "Parentesene stemmer ikke overens."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1106,7 +998,6 @@ msgid "Symbol $(ARG1) already defined differently."
msgstr "Symbolet $(ARG1) er angitt annerledes."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1116,7 +1007,6 @@ msgid "Parameters do not correspond to procedure."
msgstr "Parametrene stemmer ikke overens med prosedyren."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1126,7 +1016,6 @@ msgid "Invalid character in number."
msgstr "Ugyldig tegn i tallet."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1136,7 +1025,6 @@ msgid "Array must be dimensioned."
msgstr "Tabellen må dimensjoneres."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1146,7 +1034,6 @@ msgid "Else/Endif without If."
msgstr "Else/Endif uten If."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1156,7 +1043,6 @@ msgid "$(ARG1) not allowed within a procedure."
msgstr "$(ARG1) kan ikke brukes i prosedyrer."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1166,7 +1052,6 @@ msgid "$(ARG1) not allowed outside a procedure."
msgstr "$(ARG1) kan ikke brukes utenfor prosedyrer."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1176,7 +1061,6 @@ msgid "Dimension specifications do not match."
msgstr "Spesifikasjonene av dimensjonene stemmer ikke overens."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1186,7 +1070,6 @@ msgid "Unknown option: $(ARG1)."
msgstr "Ukjent valg: $(ARG1)."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1196,7 +1079,6 @@ msgid "Constant $(ARG1) redefined."
msgstr "Konstanten $(ARG1) er endret."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
@@ -1206,7 +1088,6 @@ msgid "Program too large."
msgstr "For stort program."
#: sb.src
-#, fuzzy
msgctxt ""
"sb.src\n"
"RID_BASIC_START\n"
diff --git a/source/nb/chart2/uiconfig/ui.po b/source/nb/chart2/uiconfig/ui.po
index 51fe368f078..b5fac6c6d62 100644
--- a/source/nb/chart2/uiconfig/ui.po
+++ b/source/nb/chart2/uiconfig/ui.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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-09-19 12:47+0000\n"
-"Last-Translator: Klaus Ade Johnstad <klausade@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 21:07+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Norwegian Bokmål <>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1442666840.000000\n"
+"X-POOTLE-MTIME: 1457471242.000000\n"
#: 3dviewdialog.ui
msgctxt ""
@@ -203,7 +203,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto text _wrap"
-msgstr ""
+msgstr "Automatisk tekst brytning"
#: dlg_DataLabel.ui
msgctxt ""
@@ -1016,7 +1016,6 @@ msgid "Tabs"
msgstr "Tabulatorer"
#: sidebaraxis.ui
-#, fuzzy
msgctxt ""
"sidebaraxis.ui\n"
"checkbutton_show_label\n"
@@ -1026,14 +1025,13 @@ msgid "Show labels"
msgstr "_Vis etiketter"
#: sidebaraxis.ui
-#, fuzzy
msgctxt ""
"sidebaraxis.ui\n"
"checkbutton_reverse\n"
"label\n"
"string.text"
msgid "Reverse direction"
-msgstr "_Omvendt retning"
+msgstr "Omvendt retning"
#: sidebaraxis.ui
msgctxt ""
@@ -1042,10 +1040,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Label position:"
-msgstr ""
+msgstr "_Etikett plassering"
#: sidebaraxis.ui
-#, fuzzy
msgctxt ""
"sidebaraxis.ui\n"
"comboboxtext_label_position\n"
@@ -1055,7 +1052,6 @@ msgid "Near Axis"
msgstr "Nær aksen"
#: sidebaraxis.ui
-#, fuzzy
msgctxt ""
"sidebaraxis.ui\n"
"comboboxtext_label_position\n"
@@ -1065,7 +1061,6 @@ msgid "Near Axis (other side)"
msgstr "Nær aksen (andre siden)"
#: sidebaraxis.ui
-#, fuzzy
msgctxt ""
"sidebaraxis.ui\n"
"comboboxtext_label_position\n"
@@ -1075,7 +1070,6 @@ msgid "Outside start"
msgstr "Start utenfor"
#: sidebaraxis.ui
-#, fuzzy
msgctxt ""
"sidebaraxis.ui\n"
"comboboxtext_label_position\n"
@@ -1085,7 +1079,6 @@ msgid "Outside end"
msgstr "Slutt utenfor"
#: sidebaraxis.ui
-#, fuzzy
msgctxt ""
"sidebaraxis.ui\n"
"label2\n"
@@ -1095,17 +1088,15 @@ msgid "_Text orientation:"
msgstr "Tekstretning"
#: sidebarelements.ui
-#, fuzzy
msgctxt ""
"sidebarelements.ui\n"
"checkbutton_subtitle\n"
"label\n"
"string.text"
msgid "Subtitle"
-msgstr "_Undertittel"
+msgstr "Undertittel"
#: sidebarelements.ui
-#, fuzzy
msgctxt ""
"sidebarelements.ui\n"
"checkbutton_title\n"
@@ -1115,7 +1106,6 @@ msgid "Title"
msgstr "Titler"
#: sidebarelements.ui
-#, fuzzy
msgctxt ""
"sidebarelements.ui\n"
"l\n"
@@ -1131,7 +1121,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Show Legend"
-msgstr ""
+msgstr "Vis forklaring"
#: sidebarelements.ui
msgctxt ""
@@ -1140,10 +1130,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Placement:"
-msgstr ""
+msgstr "_Plassering"
#: sidebarelements.ui
-#, fuzzy
msgctxt ""
"sidebarelements.ui\n"
"comboboxtext_legend\n"
@@ -1153,27 +1142,24 @@ msgid "Right"
msgstr "Høyre"
#: sidebarelements.ui
-#, fuzzy
msgctxt ""
"sidebarelements.ui\n"
"comboboxtext_legend\n"
"1\n"
"stringlist.text"
msgid "Top"
-msgstr "Ø_verst"
+msgstr "Øverst"
#: sidebarelements.ui
-#, fuzzy
msgctxt ""
"sidebarelements.ui\n"
"comboboxtext_legend\n"
"2\n"
"stringlist.text"
msgid "Bottom"
-msgstr "_Nederst"
+msgstr "Nederst"
#: sidebarelements.ui
-#, fuzzy
msgctxt ""
"sidebarelements.ui\n"
"comboboxtext_legend\n"
@@ -1189,10 +1175,9 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Manual"
-msgstr ""
+msgstr "Manuell"
#: sidebarelements.ui
-#, fuzzy
msgctxt ""
"sidebarelements.ui\n"
"label_legen\n"
@@ -1202,7 +1187,6 @@ msgid "Legend"
msgstr "Forklaring"
#: sidebarelements.ui
-#, fuzzy
msgctxt ""
"sidebarelements.ui\n"
"checkbutton_x_axis\n"
@@ -1218,17 +1202,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "X axis title"
-msgstr ""
+msgstr "Tittel på X-aksen"
#: sidebarelements.ui
-#, fuzzy
msgctxt ""
"sidebarelements.ui\n"
"checkbutton_y_axis\n"
"label\n"
"string.text"
msgid "Y axis"
-msgstr "_Y-akse"
+msgstr "Y-akse"
#: sidebarelements.ui
msgctxt ""
@@ -1237,17 +1220,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y axis title"
-msgstr ""
+msgstr "Tittel på Y-aksen"
#: sidebarelements.ui
-#, fuzzy
msgctxt ""
"sidebarelements.ui\n"
"checkbutton_z_axis\n"
"label\n"
"string.text"
msgid "Z axis"
-msgstr "_Z-akse"
+msgstr "Z-akse"
#: sidebarelements.ui
msgctxt ""
@@ -1256,7 +1238,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Z axis title"
-msgstr ""
+msgstr "Tittel på Z-aksen"
#: sidebarelements.ui
msgctxt ""
@@ -1265,7 +1247,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "2nd X axis"
-msgstr ""
+msgstr "Andre X-akse"
#: sidebarelements.ui
msgctxt ""
@@ -1274,7 +1256,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "2nd X axis title"
-msgstr ""
+msgstr "Tittel på andre X-akse"
#: sidebarelements.ui
msgctxt ""
@@ -1283,7 +1265,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "2nd Y axis"
-msgstr ""
+msgstr "Andre Y-akse"
#: sidebarelements.ui
msgctxt ""
@@ -1292,10 +1274,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "2nd Y axis title"
-msgstr ""
+msgstr "Tittel på andre Y-akse"
#: sidebarelements.ui
-#, fuzzy
msgctxt ""
"sidebarelements.ui\n"
"label_axes\n"
@@ -1311,7 +1292,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Horizontal major"
-msgstr ""
+msgstr "Vannrett storakse"
#: sidebarelements.ui
msgctxt ""
@@ -1320,7 +1301,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Vertical major"
-msgstr ""
+msgstr "Loddrett storakse"
#: sidebarelements.ui
msgctxt ""
@@ -1329,7 +1310,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Horizontal minor"
-msgstr ""
+msgstr "Vannrett lilleakse"
#: sidebarelements.ui
msgctxt ""
@@ -1338,7 +1319,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Vertical minor"
-msgstr ""
+msgstr "Loddrett lilleakse"
#: sidebarelements.ui
msgctxt ""
@@ -1347,30 +1328,27 @@ msgctxt ""
"label\n"
"string.text"
msgid "Gridlines"
-msgstr ""
+msgstr "Rutenettlinjer"
#: sidebarelements.ui
-#, fuzzy
msgctxt ""
"sidebarelements.ui\n"
"text_title\n"
"label\n"
"string.text"
msgid "Title"
-msgstr "Titler"
+msgstr "Tittel"
#: sidebarelements.ui
-#, fuzzy
msgctxt ""
"sidebarelements.ui\n"
"text_subtitle\n"
"label\n"
"string.text"
msgid "Subtitle"
-msgstr "_Undertittel"
+msgstr "Undertittel"
#: sidebarerrorbar.ui
-#, fuzzy
msgctxt ""
"sidebarerrorbar.ui\n"
"label2\n"
@@ -1386,30 +1364,27 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Constant"
-msgstr ""
+msgstr "Konstant"
#: sidebarerrorbar.ui
-#, fuzzy
msgctxt ""
"sidebarerrorbar.ui\n"
"comboboxtext_type\n"
"1\n"
"stringlist.text"
msgid "Percentage"
-msgstr "_Prosent"
+msgstr "Prosent"
#: sidebarerrorbar.ui
-#, fuzzy
msgctxt ""
"sidebarerrorbar.ui\n"
"comboboxtext_type\n"
"2\n"
"stringlist.text"
msgid "Cell Range"
-msgstr "_Celleområde"
+msgstr "Celleområde"
#: sidebarerrorbar.ui
-#, fuzzy
msgctxt ""
"sidebarerrorbar.ui\n"
"comboboxtext_type\n"
@@ -1419,7 +1394,6 @@ msgid "Standard deviation"
msgstr "Standardavvik"
#: sidebarerrorbar.ui
-#, fuzzy
msgctxt ""
"sidebarerrorbar.ui\n"
"comboboxtext_type\n"
@@ -1429,7 +1403,6 @@ msgid "Standard error"
msgstr "Standardfeil"
#: sidebarerrorbar.ui
-#, fuzzy
msgctxt ""
"sidebarerrorbar.ui\n"
"comboboxtext_type\n"
@@ -1439,7 +1412,6 @@ msgid "Variance"
msgstr "Varians"
#: sidebarerrorbar.ui
-#, fuzzy
msgctxt ""
"sidebarerrorbar.ui\n"
"comboboxtext_type\n"
@@ -1449,57 +1421,51 @@ msgid "Error margin"
msgstr "Feilmargin"
#: sidebarerrorbar.ui
-#, fuzzy
msgctxt ""
"sidebarerrorbar.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "Positive (+):"
-msgstr "P_ositiv (+)"
+msgstr "Positiv (+):"
#: sidebarerrorbar.ui
-#, fuzzy
msgctxt ""
"sidebarerrorbar.ui\n"
"label4\n"
"label\n"
"string.text"
msgid "Negative (-):"
-msgstr "_Negativ (-)"
+msgstr "Negativ (-):"
#: sidebarerrorbar.ui
-#, fuzzy
msgctxt ""
"sidebarerrorbar.ui\n"
"radiobutton_positive_negative\n"
"tooltip_text\n"
"string.text"
msgid "Positive and Negative"
-msgstr "Positiv _og negativ"
+msgstr "Positiv og negativ"
#: sidebarerrorbar.ui
-#, fuzzy
msgctxt ""
"sidebarerrorbar.ui\n"
"radiobutton_positive\n"
"tooltip_text\n"
"string.text"
msgid "Positive"
-msgstr "Pos_itiv"
+msgstr "Positiv"
#: sidebarerrorbar.ui
-#, fuzzy
msgctxt ""
"sidebarerrorbar.ui\n"
"radiobutton_negative\n"
"tooltip_text\n"
"string.text"
msgid "Negative"
-msgstr "Ne_gativ"
+msgstr "Negativ"
#: sidebarerrorbar.ui
-#, fuzzy
msgctxt ""
"sidebarerrorbar.ui\n"
"label1\n"
@@ -1515,7 +1481,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Error bars"
-msgstr ""
+msgstr "Feillinjer"
#: sidebarseries.ui
msgctxt ""
@@ -1524,7 +1490,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show data labels"
-msgstr ""
+msgstr "Vis dataoverskrifter"
#: sidebarseries.ui
msgctxt ""
@@ -1533,10 +1499,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "P_lacement:"
-msgstr ""
+msgstr "Pla_ssering:"
#: sidebarseries.ui
-#, fuzzy
msgctxt ""
"sidebarseries.ui\n"
"comboboxtext_label\n"
@@ -1546,7 +1511,6 @@ msgid "Above"
msgstr "Over"
#: sidebarseries.ui
-#, fuzzy
msgctxt ""
"sidebarseries.ui\n"
"comboboxtext_label\n"
@@ -1556,17 +1520,15 @@ msgid "Below"
msgstr "Under"
#: sidebarseries.ui
-#, fuzzy
msgctxt ""
"sidebarseries.ui\n"
"comboboxtext_label\n"
"2\n"
"stringlist.text"
msgid "Center"
-msgstr "Sentrert"
+msgstr "Sentrer"
#: sidebarseries.ui
-#, fuzzy
msgctxt ""
"sidebarseries.ui\n"
"comboboxtext_label\n"
@@ -1576,17 +1538,15 @@ msgid "Outside"
msgstr "Utenfor"
#: sidebarseries.ui
-#, fuzzy
msgctxt ""
"sidebarseries.ui\n"
"comboboxtext_label\n"
"4\n"
"stringlist.text"
msgid "Inside"
-msgstr "Inni"
+msgstr "Inne i"
#: sidebarseries.ui
-#, fuzzy
msgctxt ""
"sidebarseries.ui\n"
"comboboxtext_label\n"
@@ -1602,7 +1562,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show trendline"
-msgstr ""
+msgstr "Vis trendlinje"
#: sidebarseries.ui
msgctxt ""
@@ -1611,7 +1571,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Y error bars"
-msgstr ""
+msgstr "Y-feillinjer"
#: sidebarseries.ui
msgctxt ""
@@ -1620,7 +1580,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "X error bars"
-msgstr ""
+msgstr "X-feillinjer"
#: sidebarseries.ui
msgctxt ""
@@ -1629,10 +1589,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Error Bars"
-msgstr ""
+msgstr "Feillinjer"
#: sidebarseries.ui
-#, fuzzy
msgctxt ""
"sidebarseries.ui\n"
"radiobutton_primary_axis\n"
@@ -1642,7 +1601,6 @@ msgid "Primary Y axis"
msgstr "Primær Y-akse"
#: sidebarseries.ui
-#, fuzzy
msgctxt ""
"sidebarseries.ui\n"
"radiobutton_secondary_axis\n"
@@ -1658,7 +1616,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Align Series to Axis"
-msgstr ""
+msgstr "Innrett serier til akser"
#: sidebarseries.ui
msgctxt ""
@@ -1667,7 +1625,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Data series '%1'"
-msgstr ""
+msgstr "Dataserier '%1'"
#: smoothlinesdlg.ui
msgctxt ""
@@ -2648,7 +2606,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto text _wrap"
-msgstr ""
+msgstr "Automatisk tekst_bryting"
#: tp_DataLabel.ui
msgctxt ""
diff --git a/source/nb/connectivity/source/resource.po b/source/nb/connectivity/source/resource.po
index 76f20f46293..ffc1ef4237f 100644
--- a/source/nb/connectivity/source/resource.po
+++ b/source/nb/connectivity/source/resource.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: 2015-08-22 06:48+0000\n"
-"Last-Translator: Klaus Ade Johnstad <klausade@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 21:08+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440226122.000000\n"
+"X-POOTLE-MTIME: 1457471330.000000\n"
#: conn_error_message.src
msgctxt ""
@@ -1104,4 +1104,4 @@ msgctxt ""
"STR_ERROR_NEW_VERSION\n"
"string.text"
msgid "The connection could not be established. The database was created by a newer version of %PRODUCTNAME."
-msgstr ""
+msgstr "Forbindelsen kunne ikke etableres. Databasen ble opprettet med en nyere versjon av %PRODUCTNAME."
diff --git a/source/nb/cui/source/customize.po b/source/nb/cui/source/customize.po
index 71375fe70b4..188c8cbd768 100644
--- a/source/nb/cui/source/customize.po
+++ b/source/nb/cui/source/customize.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-16 19:02+0100\n"
-"PO-Revision-Date: 2015-08-22 06:48+0000\n"
+"PO-Revision-Date: 2016-03-08 21:09+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440226139.000000\n"
+"X-POOTLE-MTIME: 1457471380.000000\n"
#: acccfg.src
msgctxt ""
@@ -227,7 +227,7 @@ msgctxt ""
"RID_SVXSTR_PRODUCTNAME_CONTEXTMENUS\n"
"string.text"
msgid "%PRODUCTNAME %MODULENAME Context Menus"
-msgstr ""
+msgstr "Lokalmenyer i %PRODUCTNAME %MODULENAME"
#: cfg.src
msgctxt ""
diff --git a/source/nb/cui/source/dialogs.po b/source/nb/cui/source/dialogs.po
index a5b0881eb9f..15999cb2462 100644
--- a/source/nb/cui/source/dialogs.po
+++ b/source/nb/cui/source/dialogs.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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 02:05+0000\n"
+"PO-Revision-Date: 2016-03-08 21:10+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Norwegian Bokmål <>\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435284350.000000\n"
+"X-POOTLE-MTIME: 1457471423.000000\n"
#: cuires.src
msgctxt ""
@@ -103,7 +103,7 @@ msgctxt ""
"RID_SVXSTR_THOUSAND_SEP\n"
"string.text"
msgid "Thousands separator"
-msgstr ""
+msgstr "Tusenskille"
#: cuires.src
msgctxt ""
@@ -111,7 +111,7 @@ msgctxt ""
"RID_SVXSTR_ENGINEERING\n"
"string.text"
msgid "Engineering notation"
-msgstr ""
+msgstr "Teknisk notasjon"
#: cuires.src
msgctxt ""
@@ -375,16 +375,15 @@ msgctxt ""
"RID_SVXSTR_HYPERDLG_HLMAILTP\n"
"string.text"
msgid "Mail"
-msgstr ""
+msgstr "Post"
#: hyperdlg.src
-#, fuzzy
msgctxt ""
"hyperdlg.src\n"
"RID_SVXSTR_HYPERDLG_HLMAILTP_HELP\n"
"string.text"
msgid "This is where you create a hyperlink to an e-mail address."
-msgstr "Her lager man en hyperlenke til en e-post-adresse eller temagruppe."
+msgstr "Her lager man en hyperlenke til en e-post-adresse."
#: hyperdlg.src
msgctxt ""
@@ -480,7 +479,7 @@ msgctxt ""
"RID_SVXSTR_ADD_IMAGE\n"
"string.text"
msgid "Add Image"
-msgstr ""
+msgstr "Legg til bilde"
#: passwdomdlg.src
msgctxt ""
@@ -520,7 +519,7 @@ msgctxt ""
"RID_SVXSTR_INVALID_STATE_FOR_OK_BUTTON_V2\n"
"string.text"
msgid "Set the password by entering the same password in both boxes."
-msgstr ""
+msgstr "Angi passord ved å skrive inn det samme passordet i begge felt"
#: scriptdlg.src
msgctxt ""
diff --git a/source/nb/cui/source/options.po b/source/nb/cui/source/options.po
index 557baac6486..6f10ae9b400 100644
--- a/source/nb/cui/source/options.po
+++ b/source/nb/cui/source/options.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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-22 06:49+0000\n"
-"Last-Translator: Klaus Ade Johnstad <klausade@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 21:11+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: Norwegian Bokmål <>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440226187.000000\n"
+"X-POOTLE-MTIME: 1457471503.000000\n"
#: connpooloptions.src
msgctxt ""
@@ -210,7 +210,7 @@ msgctxt ""
"RID_SVXSTR_HEADER2\n"
"string.text"
msgid "[S]"
-msgstr "[L]"
+msgstr "[S]"
#: optfltr.src
msgctxt ""
@@ -808,7 +808,7 @@ msgctxt ""
"Application Colors\n"
"itemlist.text"
msgid "Application Colors"
-msgstr ""
+msgstr "Programfarger"
#: treeopt.src
msgctxt ""
diff --git a/source/nb/cui/source/tabpages.po b/source/nb/cui/source/tabpages.po
index 04c9cb421b6..89f23d90725 100644
--- a/source/nb/cui/source/tabpages.po
+++ b/source/nb/cui/source/tabpages.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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 02:06+0000\n"
+"PO-Revision-Date: 2016-03-08 21:12+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Norwegian Bokmål <>\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435284383.000000\n"
+"X-POOTLE-MTIME: 1457471557.000000\n"
#: border.src
msgctxt ""
@@ -967,7 +967,7 @@ msgctxt ""
"RID_SVXSTR_CHARNAME_HIGHLIGHTING\n"
"string.text"
msgid "Highlight Color"
-msgstr ""
+msgstr "Uthevingsfarge"
#: strings.src
msgctxt ""
@@ -1087,7 +1087,7 @@ msgctxt ""
"RID_SVXSTR_NUM\n"
"string.text"
msgid "Bulleted and numbered lists. Bullet symbol: "
-msgstr ""
+msgstr "Punktlister og nummererte liste. Punkttegn: "
#: strings.src
msgctxt ""
diff --git a/source/nb/cui/uiconfig/ui.po b/source/nb/cui/uiconfig/ui.po
index 8b8256657d9..79ecc71fe87 100644
--- a/source/nb/cui/uiconfig/ui.po
+++ b/source/nb/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 14:26+0000\n"
+"PO-Revision-Date: 2016-03-08 21:27+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Norwegian Bokmål <>\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452263203.000000\n"
+"X-POOTLE-MTIME: 1457472427.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -179,14 +179,13 @@ msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for
msgstr "%PRODUCTNAME er en moderne og brukervennlig åpen kildekode-produktivitetspakke for tekstbehandling, regneark, presentasjoner, og mer."
#: aboutdialog.ui
-#, fuzzy
msgctxt ""
"aboutdialog.ui\n"
"copyright\n"
"label\n"
"string.text"
msgid "Copyright © 2000–2016 LibreOffice contributors."
-msgstr "Opphavsrett © 2000 - 2014 LibreOffice (bidragsyterne)."
+msgstr "Opphavsrett © 2000 - 2016 LibreOffice (bidragsyterne)."
#: aboutdialog.ui
msgctxt ""
@@ -216,7 +215,6 @@ msgid "This release was supplied by %OOOVENDOR."
msgstr "Dette produktet ble utgitt av %OOOVENDOR"
#: aboutdialog.ui
-#, fuzzy
msgctxt ""
"aboutdialog.ui\n"
"link\n"
@@ -493,7 +491,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "[T]: AutoCorrect while typing"
-msgstr "[S]: Bruk autoretting ved skriving"
+msgstr "[E]: Erstatt tekst ved endring av eksisterende tekst"
#: applyautofmtpage.ui
msgctxt ""
@@ -1198,7 +1196,6 @@ msgid "Table"
msgstr "Tabell"
#: backgroundpage.ui
-#, fuzzy
msgctxt ""
"backgroundpage.ui\n"
"background_label\n"
@@ -1583,10 +1580,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Operating system:"
-msgstr ""
+msgstr "Operativsystem:"
#: blackorwhitelistentrydialog.ui
-#, fuzzy
msgctxt ""
"blackorwhitelistentrydialog.ui\n"
"label5\n"
@@ -1602,7 +1598,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "OpenCL vendor:"
-msgstr ""
+msgstr "OpenCL-leverandør:"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1629,7 +1625,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit OpenCL Blacklist Entry"
-msgstr ""
+msgstr "Rediger OpenCL svartliste-oppføring"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1638,7 +1634,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create OpenCL Blacklist Entry"
-msgstr ""
+msgstr "Lag OpenCL svartliste-oppføring"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1647,7 +1643,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit OpenCL Whitelist Entry"
-msgstr ""
+msgstr "Rediger OpenCL hvitliste-oppføring"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1656,7 +1652,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create OpenCL Whitelist Entry"
-msgstr ""
+msgstr "Lag OpenCL hvitliste-oppføring"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1665,7 +1661,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "OpenCL Information"
-msgstr ""
+msgstr "OpenCL-informasjon"
#: blackorwhitelistentrydialog.ui
msgctxt ""
@@ -1674,7 +1670,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Any"
-msgstr ""
+msgstr "Enhver"
#: borderareatransparencydialog.ui
msgctxt ""
@@ -3321,7 +3317,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Pick…"
-msgstr ""
+msgstr "_Velg…"
#: colorpage.ui
msgctxt ""
@@ -3504,7 +3500,6 @@ msgid "_Yellow:"
msgstr "_Gul:"
#: colorpickerdialog.ui
-#, fuzzy
msgctxt ""
"colorpickerdialog.ui\n"
"label8\n"
@@ -3952,7 +3947,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Context Menus"
-msgstr ""
+msgstr "Sprettoppmenyer"
#: customizedialog.ui
msgctxt ""
@@ -5203,7 +5198,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Similarities..."
-msgstr ""
+msgstr "Likheter..."
#: fmsearchdialog.ui
msgctxt ""
@@ -5221,7 +5216,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Similarities..."
-msgstr ""
+msgstr "Likheter..."
#: fmsearchdialog.ui
msgctxt ""
@@ -6580,7 +6575,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Mail"
-msgstr ""
+msgstr "Post"
#: hyperlinkmailpage.ui
msgctxt ""
@@ -7130,7 +7125,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Warning: Plugins may not work on all platforms and may be removed in the future"
-msgstr ""
+msgstr "Advarsel: Det kan hende at programtillegg ikke virker på alle plattformer og kan blei fjernet i framtiden"
#: insertplugin.ui
msgctxt ""
@@ -10131,7 +10126,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Suppress hidden elements of documents"
-msgstr ""
+msgstr "Undertrykk skjulte elementer i dokumenter"
#: optemailpage.ui
msgctxt ""
@@ -10176,7 +10171,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Export as:"
-msgstr ""
+msgstr "Eksporter som:"
#: optfltrembedpage.ui
msgctxt ""
@@ -10185,7 +10180,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Highlighting"
-msgstr ""
+msgstr "Utheving"
#: optfltrembedpage.ui
msgctxt ""
@@ -10194,7 +10189,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Shading"
-msgstr ""
+msgstr "Skyggelegging"
#: optfltrembedpage.ui
msgctxt ""
@@ -10203,7 +10198,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Character Highlighting"
-msgstr ""
+msgstr "Tegnutheving"
#: optfltrpage.ui
msgctxt ""
@@ -10527,7 +10522,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Collect usage data and send it to The Document Foundation"
-msgstr ""
+msgstr "Samle inn bruksdata og send de til The Document Foundation"
#: optgeneralpage.ui
msgctxt ""
@@ -10536,7 +10531,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Help Improve %PRODUCTNAME"
-msgstr ""
+msgstr "Hjelp til med å gjøre %PRODUCTNAME bedre"
#: opthtmlpage.ui
msgctxt ""
@@ -11355,7 +11350,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Send OS version & simple hardware info."
-msgstr ""
+msgstr "_Send OS-versjon og enkel utstyrsinfo."
#: optonlineupdatepage.ui
msgctxt ""
@@ -11364,7 +11359,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "This information lets us optimize for your hardware & OS."
-msgstr ""
+msgstr "Denne informasjonen gjør at vi kan optimalisere OS og utstyret du bruker."
#: optonlineupdatepage.ui
msgctxt ""
@@ -11373,7 +11368,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "User Agent:"
-msgstr ""
+msgstr "Brukeragent:"
#: optonlineupdatepage.ui
msgctxt ""
@@ -11382,7 +11377,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hit apply to update"
-msgstr ""
+msgstr "Press oppdater for oppdatering"
#: optonlineupdatepage.ui
msgctxt ""
@@ -11409,7 +11404,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Allow use of Software Interpreter (even when OpenCL is not available)"
-msgstr ""
+msgstr "Tillat bruk av programtolk (selvv om OpenCL ikke er tilgjengelig)"
#: optopenclpage.ui
msgctxt ""
@@ -11454,7 +11449,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Operating System"
-msgstr ""
+msgstr "Operativsystem"
#: optopenclpage.ui
msgctxt ""
@@ -11466,7 +11461,6 @@ msgid "OS Version"
msgstr "OS-versjon"
#: optopenclpage.ui
-#, fuzzy
msgctxt ""
"optopenclpage.ui\n"
"vendor\n"
@@ -11494,7 +11488,6 @@ msgid "Driver version"
msgstr "Driverversjon"
#: optopenclpage.ui
-#, fuzzy
msgctxt ""
"optopenclpage.ui\n"
"label4\n"
@@ -11531,7 +11524,6 @@ msgid "_Delete"
msgstr "_Slett"
#: optopenclpage.ui
-#, fuzzy
msgctxt ""
"optopenclpage.ui\n"
"label5\n"
@@ -11979,7 +11971,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Maintain a list of Time Stamping Authority (TSA) URLs to be used for digital signatures in PDF export."
-msgstr ""
+msgstr "Vedlikehold en liste over URL-adresser for \"Time Stamping Authority (TSA)\" som benyttes sammen med digital signatur i PDF-filer."
#: optsecuritypage.ui
msgctxt ""
@@ -11988,7 +11980,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_TSAs..."
-msgstr ""
+msgstr "_TSA-er …"
#: optsecuritypage.ui
msgctxt ""
@@ -11997,7 +11989,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "TSAs"
-msgstr ""
+msgstr "TSA-er"
#: optsecuritypage.ui
msgctxt ""
@@ -12516,7 +12508,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use OpenGL for all rendering (on restart)"
-msgstr ""
+msgstr "Bruk OpenGL for all opptegning (ved omstart)"
#: optviewpage.ui
msgctxt ""
@@ -12525,7 +12517,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Force OpenGL even if blacklisted (on restart)"
-msgstr ""
+msgstr "Tving bruk av OpenGL (i omstart) selv om rutinen er svartelista"
#: optviewpage.ui
msgctxt ""
@@ -12534,7 +12526,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Enabling this may expose driver bugs"
-msgstr ""
+msgstr "Å gjøre dette kan føre til driverfeil"
#: optviewpage.ui
msgctxt ""
@@ -12543,7 +12535,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Current GL status: Enabled"
-msgstr ""
+msgstr "Gjeldende GL-status: Aktivert"
#: optviewpage.ui
msgctxt ""
@@ -12552,10 +12544,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Current GL status: Disabled"
-msgstr ""
+msgstr "Gjeldende GL-status: Deaktivert"
#: optviewpage.ui
-#, fuzzy
msgctxt ""
"optviewpage.ui\n"
"label2\n"
@@ -12769,7 +12760,7 @@ msgctxt ""
"10\n"
"stringlist.text"
msgid "Breeze"
-msgstr ""
+msgstr "Bris"
#: optviewpage.ui
msgctxt ""
@@ -14134,7 +14125,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add and Resize"
-msgstr ""
+msgstr "Legg til og endre størrelse"
#: pickgraphicpage.ui
msgctxt ""
@@ -15133,7 +15124,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Highlighting"
-msgstr ""
+msgstr "Uthevelse"
#: securityoptionsdialog.ui
msgctxt ""
@@ -15439,7 +15430,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_X:"
-msgstr ""
+msgstr "_X:"
#: slantcornertabpage.ui
msgctxt ""
@@ -15448,7 +15439,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y:"
-msgstr ""
+msgstr "_Y:"
#: slantcornertabpage.ui
msgctxt ""
@@ -15457,7 +15448,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Control Point 1"
-msgstr ""
+msgstr "Kontrollpunkt 1"
#: slantcornertabpage.ui
msgctxt ""
@@ -15502,7 +15493,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_X:"
-msgstr ""
+msgstr "_X:"
#: slantcornertabpage.ui
msgctxt ""
@@ -15511,7 +15502,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y:"
-msgstr ""
+msgstr "_Y:"
#: slantcornertabpage.ui
msgctxt ""
@@ -15520,7 +15511,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Control Point 2"
-msgstr ""
+msgstr "Kontrollpunkt 2"
#: smarttagoptionspage.ui
msgctxt ""
@@ -15658,14 +15649,13 @@ msgid "Characters:"
msgstr "Tegn:"
#: specialcharacters.ui
-#, fuzzy
msgctxt ""
"specialcharacters.ui\n"
"decimallabel\n"
"label\n"
"string.text"
msgid "Decimal:"
-msgstr "Desi_mal"
+msgstr "Desimal:"
#: specialcharacters.ui
msgctxt ""
@@ -15674,7 +15664,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hexadecimal:"
-msgstr ""
+msgstr "Heksadesimal:"
#: spellingdialog.ui
msgctxt ""
@@ -15845,10 +15835,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Paste"
-msgstr ""
+msgstr "Lim inn"
#: spellingdialog.ui
-#, fuzzy
msgctxt ""
"spellingdialog.ui\n"
"insert\n"
@@ -17007,7 +16996,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Time Stamping Authority URLs"
-msgstr ""
+msgstr "URL'er for tidsstempelautoriteter"
#: tsaurldialog.ui
msgctxt ""
@@ -17034,7 +17023,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add or delete Time Stamp Authority URLs"
-msgstr ""
+msgstr "Tilføy eller fjern URL'er for tidsstempelautoriteter"
#: tsaurldialog.ui
msgctxt ""
@@ -17043,7 +17032,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Enter a Time Stamp Authority URL"
-msgstr ""
+msgstr "Tast inn en URL for en tidsstempelautoritet (TSA)"
#: tsaurldialog.ui
msgctxt ""
@@ -17052,7 +17041,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "TSA URL"
-msgstr ""
+msgstr "TSA-URL"
#: twolinespage.ui
msgctxt ""
diff --git a/source/nb/dbaccess/source/ext/macromigration.po b/source/nb/dbaccess/source/ext/macromigration.po
index a983262e343..51709f65476 100644
--- a/source/nb/dbaccess/source/ext/macromigration.po
+++ b/source/nb/dbaccess/source/ext/macromigration.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:40+0200\n"
-"PO-Revision-Date: 2015-05-13 03:13+0000\n"
+"PO-Revision-Date: 2016-03-08 21:27+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431486809.000000\n"
+"X-POOTLE-MTIME: 1457472471.000000\n"
#: macromigration.src
msgctxt ""
@@ -200,7 +200,7 @@ msgctxt ""
"STR_INVALID_BACKUP_LOCATION\n"
"string.text"
msgid "You need to choose a backup location other than the document location itself."
-msgstr ""
+msgstr "Du må velge en plassering for sikkerhetskopien som ikke er den samme som dokumentplasseringen."
#: macromigration.src
msgctxt ""
diff --git a/source/nb/dbaccess/source/ui/app.po b/source/nb/dbaccess/source/ui/app.po
index eaab4fca6e2..322d598613d 100644
--- a/source/nb/dbaccess/source/ui/app.po
+++ b/source/nb/dbaccess/source/ui/app.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2014-09-04 18:54+0000\n"
-"Last-Translator: Olav <odahlum@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 21:28+0000\n"
+"Last-Translator: system user <>\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1409856897.000000\n"
+"X-POOTLE-MTIME: 1457472523.000000\n"
#: app.src
msgctxt ""
@@ -429,6 +429,10 @@ msgid ""
"\n"
"Do you want to close all documents now?"
msgstr ""
+"Tilkoblingstypen er endret.\n"
+"Alle skjemaer, rapporter, spørringer og tabeller må lukkes før endringene kan tas i bruk.\n"
+"\n"
+"Vil du lukke alle dokumentene nå?"
#: app.src
msgctxt ""
diff --git a/source/nb/dbaccess/source/ui/browser.po b/source/nb/dbaccess/source/ui/browser.po
index cacc40269ce..403c32540b1 100644
--- a/source/nb/dbaccess/source/ui/browser.po
+++ b/source/nb/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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-05-13 03:13+0000\n"
+"PO-Revision-Date: 2016-03-08 21:28+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431486812.000000\n"
+"X-POOTLE-MTIME: 1457472535.000000\n"
#: sbabrw.src
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"STR_QUERY_CONNECTION_LOST\n"
"string.text"
msgid "The connection to the database has been lost. Do you want to reconnect?"
-msgstr ""
+msgstr "Mistet tilkoblingen til databasen. Vil du koble til igjen?"
#: sbabrw.src
msgctxt ""
diff --git a/source/nb/dbaccess/source/ui/dlg.po b/source/nb/dbaccess/source/ui/dlg.po
index 44c2da47f95..4084e8b3124 100644
--- a/source/nb/dbaccess/source/ui/dlg.po
+++ b/source/nb/dbaccess/source/ui/dlg.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-08-25 12:34+0200\n"
-"PO-Revision-Date: 2015-05-13 03:14+0000\n"
+"PO-Revision-Date: 2016-03-08 21:29+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Norwegian Bokmål <>\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431486884.000000\n"
+"X-POOTLE-MTIME: 1457472584.000000\n"
#: AutoControls.src
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"STR_COMMONURL\n"
"string.text"
msgid "Datasource URL (e.g. postgresql://host:port/database)"
-msgstr ""
+msgstr "Datakilde-URL (f. eks. postgresql://host:port/database)"
#: AutoControls.src
msgctxt ""
@@ -496,6 +496,8 @@ msgid ""
"Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME.\n"
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
+"Oppgi informasjonen som trengs for å kobla til en MySQL-database med JDBC. Legg merke til at en JDBC-driverklasse må være installert på systemet og registrert med %PRODUCTNAME.\n"
+"Kontakt systemadministratoren dersom du er usikker på de følgende innstillingene."
#: dbadminsetup.src
msgctxt ""
@@ -543,7 +545,7 @@ msgctxt ""
"STR_TEXT_HELPTEXT\n"
"string.text"
msgid "Select the folder where the CSV (Comma Separated Values) text files are stored. %PRODUCTNAME Base will open these files in read-only mode."
-msgstr ""
+msgstr "Velg mappa der CSV-tekstfilene (kommadelte verdier) er lagret. %PRODUCTNAME Base vil åpne disse filene som skrivebeskyttede."
#: dbadminsetup.src
msgctxt ""
@@ -587,6 +589,9 @@ msgid ""
"Click 'Browse' to configure provider-specific settings.\n"
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
+"Oppgi URL-en til den ADO-datakilden du vil koble til.\n"
+"Trykk på «Bla gjennom» for å sette opp innstillinger spesielt for leverandøren.\n"
+"Kontakt systemadministratoren hvis du er usikker på de følgende innstillingene."
#: dbadminsetup.src
msgctxt ""
@@ -606,6 +611,9 @@ msgid ""
"Click 'Browse...' to select an ODBC database that is already registered in %PRODUCTNAME.\n"
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
+"Oppgi navnet på den ODBC-databasen du vil koble til.\n"
+"Trykk på «Bla gjennom» for å velge en ODBC-database som er registrert fra før i %PRODUCTNAME.\n"
+"Kontakt systemadministratoren hvis du er usikker på de følgende innstillingene."
#: dbadminsetup.src
msgctxt ""
@@ -624,6 +632,8 @@ msgid ""
"Please enter the required information to connect to a JDBC database.\n"
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
+"Oppgi den informasjonen som trengs for å koble til en JDBC-database.Kontakt systemadministratoren hvis du er usikker på de følgende innstill\n"
+"ingene."
#: dbadminsetup.src
msgctxt ""
@@ -658,6 +668,8 @@ msgid ""
"Please enter the required information to connect to an Oracle database. Note that a JDBC Driver Class must be installed on your system and registered with %PRODUCTNAME.\n"
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
+"Oppgi den nødvendige informasjonen for å koble til en Oracle-database. Legg merke til at en JDBC-driverklasse må være installert på systemet og registrert med %PRODUCTNAME.\n"
+"Kontakt systemadministratoren dersom du er usikker på de følgende innstillingene."
#: dbadminsetup.src
msgctxt ""
@@ -676,6 +688,8 @@ msgid ""
"Click 'Browse...' to select a %PRODUCTNAME spreadsheet or Microsoft Excel workbook.\n"
"%PRODUCTNAME will open this file in read-only mode."
msgstr ""
+"Trykk på «Bla gjennom» for å velge et %PRODUCTNAME-regneark eller en Microsoft Excel-arbeidsbok.\n"
+"%PRODUCTNAME vil åpne den som en skrivebeskyttet fil."
#: dbadminsetup.src
msgctxt ""
@@ -779,7 +793,7 @@ msgctxt ""
"STR_COULD_NOT_CONVERT_PARAM\n"
"string.text"
msgid "The entry could not be converted to a valid value for the \"$name$\" parameter"
-msgstr ""
+msgstr "Oppføringen kunne ikke omgjøres til en gyldig verdi for parameteren \"$name$\""
#: sqlmessage.src
msgctxt ""
diff --git a/source/nb/dbaccess/source/ui/tabledesign.po b/source/nb/dbaccess/source/ui/tabledesign.po
index faae627095e..3fa48f2d964 100644
--- a/source/nb/dbaccess/source/ui/tabledesign.po
+++ b/source/nb/dbaccess/source/ui/tabledesign.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: 2013-01-22 05:36+0000\n"
-"Last-Translator: Olav <odahlum@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 21:30+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1358833016.0\n"
+"X-POOTLE-MTIME: 1457472657.000000\n"
#: table.src
msgctxt ""
@@ -483,6 +483,8 @@ msgid ""
"Before you can edit the indexes of a table, you have to save it.\n"
"Do you want to save the changes now?"
msgstr ""
+"Du må lagre tabellen før du kan redigere indekser for den.\n"
+" Vil du lagre endringene nå?"
#: table.src
msgctxt ""
diff --git a/source/nb/dbaccess/uiconfig/ui.po b/source/nb/dbaccess/uiconfig/ui.po
index 463024c1ce4..ee3030391a2 100644
--- a/source/nb/dbaccess/uiconfig/ui.po
+++ b/source/nb/dbaccess/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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-05-13 03:15+0000\n"
+"PO-Revision-Date: 2016-03-08 21:33+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: Norwegian Bokmål <>\n"
"Language: nb\n"
@@ -14,10 +14,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431486917.000000\n"
+"X-POOTLE-MTIME: 1457472786.000000\n"
#: admindialog.ui
-#, fuzzy
msgctxt ""
"admindialog.ui\n"
"AdminDialog\n"
@@ -63,7 +62,6 @@ msgid "Special Settings"
msgstr "Spesielle innstillinger"
#: applycolpage.ui
-#, fuzzy
msgctxt ""
"applycolpage.ui\n"
"label1\n"
@@ -79,7 +77,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Set up the user authentication"
-msgstr ""
+msgstr "Sett opp brukerautentisering"
#: authentificationpage.ui
msgctxt ""
@@ -88,7 +86,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Some databases require you to enter a user name."
-msgstr ""
+msgstr "Enkelte databaser krever at du oppgir et brukernavn."
#: authentificationpage.ui
msgctxt ""
@@ -97,7 +95,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_User name"
-msgstr ""
+msgstr "_Brukernavn"
#: authentificationpage.ui
msgctxt ""
@@ -106,7 +104,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Password re_quired"
-msgstr ""
+msgstr "Krev _passord"
#: authentificationpage.ui
msgctxt ""
@@ -115,7 +113,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Test Connection"
-msgstr ""
+msgstr "_Test tilkoblingen"
#: autocharsetpage.ui
msgctxt ""
@@ -124,7 +122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Character set:"
-msgstr ""
+msgstr "_Tegnsett"
#: autocharsetpage.ui
msgctxt ""
@@ -133,7 +131,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Data Conversion"
-msgstr ""
+msgstr "Datakonvertering"
#: backuppage.ui
msgctxt ""
@@ -142,7 +140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Backup Your Document"
-msgstr ""
+msgstr "Ta reservekopi av dokumentet"
#: backuppage.ui
msgctxt ""
@@ -151,7 +149,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "To allow you to go back to the state before the migration, the database document will be backed up to a location of your choice. Every change done by the wizard will be made to the original document, the backup will stay untouched."
-msgstr ""
+msgstr "En sikkerhetskopi av databasedokumentet blir lagret til en plassering du velger, slik at du kan gjenopprette tilstanden slik den var før flyttingen. Alle endringene som veiviseren gjør, innføres i det opprinnelige dokumentet, mens sikkerhetskopien forblir urørt."
#: backuppage.ui
msgctxt ""
@@ -160,7 +158,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Press 'Next' to save a copy of your document, and to begin the migration."
-msgstr ""
+msgstr "Trykk «Neste» for å lagre en kopi av dokumentet og begynne flyttingen."
#: backuppage.ui
msgctxt ""
@@ -169,7 +167,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Save to:"
-msgstr ""
+msgstr "Lagre til"
#: backuppage.ui
msgctxt ""
@@ -178,7 +176,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Browse..."
-msgstr ""
+msgstr "Bla gjennom …"
#: choosedatasourcedialog.ui
msgctxt ""
@@ -214,7 +212,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Save"
-msgstr ""
+msgstr "Lagre"
#: collectionviewdialog.ui
msgctxt ""
@@ -223,7 +221,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Save"
-msgstr ""
+msgstr "_Lagre"
#: collectionviewdialog.ui
msgctxt ""
@@ -232,7 +230,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Create New Directory"
-msgstr ""
+msgstr "Opprett ny mappe"
#: collectionviewdialog.ui
msgctxt ""
@@ -241,7 +239,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Up One Level"
-msgstr ""
+msgstr "Ett nivå opp"
#: collectionviewdialog.ui
msgctxt ""
@@ -250,7 +248,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "File _name:"
-msgstr ""
+msgstr "Fil_navn:"
#: colwidthdialog.ui
msgctxt ""
@@ -262,14 +260,13 @@ msgid "Column Width"
msgstr "Kolonnebredde"
#: colwidthdialog.ui
-#, fuzzy
msgctxt ""
"colwidthdialog.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "_Width:"
-msgstr "_Bredde"
+msgstr "_Bredde:"
#: colwidthdialog.ui
msgctxt ""
@@ -287,7 +284,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Path to the dBASE files:"
-msgstr ""
+msgstr "Sti til dBASE-filene:"
#: connectionpage.ui
msgctxt ""
@@ -296,7 +293,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Create New"
-msgstr ""
+msgstr "_Lag ny"
#: connectionpage.ui
msgctxt ""
@@ -305,7 +302,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Browse…"
-msgstr ""
+msgstr "_Bla gjennom …"
#: connectionpage.ui
msgctxt ""
@@ -314,7 +311,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "General"
-msgstr ""
+msgstr "Generelt"
#: connectionpage.ui
msgctxt ""
@@ -323,7 +320,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_User name:"
-msgstr ""
+msgstr "_Brukernavn:"
#: connectionpage.ui
msgctxt ""
@@ -332,7 +329,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Password required"
-msgstr ""
+msgstr "Passord kreves"
#: connectionpage.ui
msgctxt ""
@@ -341,7 +338,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "User Authentication"
-msgstr ""
+msgstr "Brukerautensiering"
#: connectionpage.ui
msgctxt ""
@@ -350,7 +347,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_JDBC driver class:"
-msgstr ""
+msgstr "_JDBC-driverklasse:"
#: connectionpage.ui
msgctxt ""
@@ -359,10 +356,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Test Class"
-msgstr ""
+msgstr "Testklasse"
#: connectionpage.ui
-#, fuzzy
msgctxt ""
"connectionpage.ui\n"
"JDBCLabel\n"
@@ -378,7 +374,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Test Connection"
-msgstr ""
+msgstr "Test tilkobling"
#: copytablepage.ui
msgctxt ""
@@ -435,14 +431,13 @@ msgid "Crea_te primary key"
msgstr "_Lag primærnøkkel"
#: copytablepage.ui
-#, fuzzy
msgctxt ""
"copytablepage.ui\n"
"keynamelabel\n"
"label\n"
"string.text"
msgid "Name:"
-msgstr "Navn"
+msgstr "Navn:"
#: copytablepage.ui
msgctxt ""
@@ -454,14 +449,13 @@ msgid "Options"
msgstr "Valg"
#: copytablepage.ui
-#, fuzzy
msgctxt ""
"copytablepage.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "Ta_ble name:"
-msgstr "T_abellnavn"
+msgstr "_Tabellnavn:"
#: dbaseindexdialog.ui
msgctxt ""
@@ -473,14 +467,13 @@ msgid "Indexes"
msgstr "Indekser"
#: dbaseindexdialog.ui
-#, fuzzy
msgctxt ""
"dbaseindexdialog.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "_Table:"
-msgstr "_Tabell"
+msgstr "_Tabell:"
#: dbaseindexdialog.ui
msgctxt ""
@@ -516,7 +509,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Character set:"
-msgstr ""
+msgstr "_Tegnsett:"
#: dbasepage.ui
msgctxt ""
@@ -525,7 +518,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Data Conversion"
-msgstr ""
+msgstr "Datakonvertering"
#: dbasepage.ui
msgctxt ""
@@ -534,7 +527,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Display deleted records as well"
-msgstr ""
+msgstr "Vis også slettede dataposter"
#: dbasepage.ui
msgctxt ""
@@ -543,7 +536,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Note: When deleted, and thus inactive, records are displayed, you will not be able to delete records from the data source."
-msgstr ""
+msgstr "Merk: Når poster som er slettet, og dermed ikke i bruk, blir vist, kan du ikke slette poster fra datakilden."
#: dbasepage.ui
msgctxt ""
@@ -552,7 +545,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optional Settings"
-msgstr ""
+msgstr "Valgfrie innstillinger"
#: dbasepage.ui
msgctxt ""
@@ -561,7 +554,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Indexes..."
-msgstr ""
+msgstr "Indekser..."
#: dbwizconnectionpage.ui
msgctxt ""
@@ -570,7 +563,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "label"
-msgstr ""
+msgstr "etikett"
#: dbwizconnectionpage.ui
msgctxt ""
@@ -579,7 +572,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Path to the dBASE files:"
-msgstr ""
+msgstr "Sti til dBASE-filene:"
#: dbwizconnectionpage.ui
msgctxt ""
@@ -588,7 +581,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Create New"
-msgstr ""
+msgstr "_Lag ny"
#: dbwizconnectionpage.ui
msgctxt ""
@@ -597,7 +590,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Browse…"
-msgstr ""
+msgstr "_Bla gjennom …"
#: dbwizmysqlintropage.ui
msgctxt ""
@@ -609,6 +602,8 @@ msgid ""
"You can connect to a MySQL database using either ODBC or JDBC.\n"
"Please contact your system administrator if you are unsure about the following settings."
msgstr ""
+"Du kan koble til en MySQL-database med enten ODBC eller JDBC.\n"
+"Kontakt systemadministratoren hvis du er usikker på de følgende innstillingene."
#: dbwizmysqlintropage.ui
msgctxt ""
@@ -617,7 +612,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Connect using ODBC (Open Database Connectivity)"
-msgstr ""
+msgstr "Koble til ved hjelp av ODBC (Open DataBase Connectivity)"
#: dbwizmysqlintropage.ui
msgctxt ""
@@ -626,7 +621,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Connect using JDBC (Java Database Connectivity)"
-msgstr ""
+msgstr "Koble til ved hjelp av JDBC (Java Database Connectivity)"
#: dbwizmysqlintropage.ui
msgctxt ""
@@ -635,7 +630,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Connect directly"
-msgstr ""
+msgstr "Koble til direkte"
#: dbwizmysqlintropage.ui
msgctxt ""
@@ -644,7 +639,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "How do you want to connect to your MySQL database?"
-msgstr ""
+msgstr "Hvordan vil du koble til MySQL-databasen?"
#: dbwizmysqlintropage.ui
msgctxt ""
@@ -653,7 +648,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Set Up a Connection to a MySQL Database"
-msgstr ""
+msgstr "Sett opp en kobling til en MySQL Database"
#: dbwizmysqlnativepage.ui
msgctxt ""
@@ -662,7 +657,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Please enter the required information to connect to a MySQL database."
-msgstr ""
+msgstr "Oppgi nødvendig informasjon for å koble til en MySQL database"
#: dbwizmysqlnativepage.ui
msgctxt ""
@@ -671,7 +666,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Set Up a Connection to a MySQL Database"
-msgstr ""
+msgstr "Sett opp en kobling til en MySQL Database"
#: dbwizspreadsheetpage.ui
msgctxt ""
@@ -680,7 +675,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Browse"
-msgstr ""
+msgstr "Bla gjennom"
#: dbwizspreadsheetpage.ui
msgctxt ""
@@ -689,7 +684,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create New"
-msgstr ""
+msgstr "Lag ny"
#: dbwizspreadsheetpage.ui
msgctxt ""
@@ -698,7 +693,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Password required"
-msgstr ""
+msgstr "_Krev passord"
#: dbwiztextpage.ui
msgctxt ""
@@ -707,7 +702,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Browse"
-msgstr ""
+msgstr "Bla igjennom"
#: dbwiztextpage.ui
msgctxt ""
@@ -716,7 +711,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create New"
-msgstr ""
+msgstr "Lag ny"
#: deleteallrowsdialog.ui
msgctxt ""
@@ -725,7 +720,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 ""
+msgstr "Du prøver å slette alle kolonnene i tabellen. En tabell kan ikke eksistere uten kolonner. Vil du slette tabellen fra databasen? Hvis ikke, blir ikke tabellen endret."
#: designsavemodifieddialog.ui
msgctxt ""
@@ -734,7 +729,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "Do you want to save the changes?"
-msgstr ""
+msgstr "Vil du lagre endringene?"
#: designsavemodifieddialog.ui
msgctxt ""
@@ -743,7 +738,7 @@ msgctxt ""
"secondary_text\n"
"string.text"
msgid "The relation design has been changed."
-msgstr ""
+msgstr "Relasjonsutformingen er endret."
#: directsqldialog.ui
msgctxt ""
@@ -755,14 +750,13 @@ msgid "Execute SQL Statement"
msgstr "Kjør SQL-uttrykk"
#: directsqldialog.ui
-#, fuzzy
msgctxt ""
"directsqldialog.ui\n"
"sql_label\n"
"label\n"
"string.text"
msgid "_Command to execute:"
-msgstr "_Kommando som skal kjøres"
+msgstr "_Kommando som skal kjøres:"
#: directsqldialog.ui
msgctxt ""
@@ -783,17 +777,15 @@ msgid "_Execute"
msgstr "_Kjør"
#: directsqldialog.ui
-#, fuzzy
msgctxt ""
"directsqldialog.ui\n"
"sqlhistory_label\n"
"label\n"
"string.text"
msgid "_Previous commands:"
-msgstr "_Tidligere kommandoer"
+msgstr "_Tidligere kommandoer:"
#: directsqldialog.ui
-#, fuzzy
msgctxt ""
"directsqldialog.ui\n"
"label1\n"
@@ -857,7 +849,6 @@ msgid "Table Format"
msgstr "Tabellformat"
#: finalpagewizard.ui
-#, fuzzy
msgctxt ""
"finalpagewizard.ui\n"
"headerText\n"
@@ -999,7 +990,6 @@ msgid "Create a n_ew database"
msgstr "Lag en _ny database"
#: generalpagewizard.ui
-#, fuzzy
msgctxt ""
"generalpagewizard.ui\n"
"embeddeddbLabel\n"
@@ -1051,7 +1041,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Host name:"
-msgstr ""
+msgstr "_Vertsnavn:"
#: generalspecialjdbcdetailspage.ui
msgctxt ""
@@ -1060,7 +1050,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Port number:"
-msgstr ""
+msgstr "_Portnummer:"
#: generalspecialjdbcdetailspage.ui
msgctxt ""
@@ -1069,7 +1059,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Socket:"
-msgstr ""
+msgstr "Sokkel:"
#: generalspecialjdbcdetailspage.ui
msgctxt ""
@@ -1078,7 +1068,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "MySQL JDBC d_river class:"
-msgstr ""
+msgstr "MySQL JDBC-driverklasse:"
#: generalspecialjdbcdetailspage.ui
msgctxt ""
@@ -1087,7 +1077,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Test Class"
-msgstr ""
+msgstr "Testklasse"
#: generalspecialjdbcdetailspage.ui
msgctxt ""
@@ -1096,7 +1086,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Connection Settings"
-msgstr ""
+msgstr "Tilkoblings innstillinger"
#: generalspecialjdbcdetailspage.ui
msgctxt ""
@@ -1105,7 +1095,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Character set:"
-msgstr ""
+msgstr "_Tegnsett"
#: generalspecialjdbcdetailspage.ui
msgctxt ""
@@ -1114,7 +1104,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Data Conversion"
-msgstr ""
+msgstr "Datakonvertering"
#: generatedvaluespage.ui
msgctxt ""
@@ -1126,17 +1116,15 @@ msgid "Re_trieve generated values"
msgstr "_Hent ut de utregnede verdiene"
#: generatedvaluespage.ui
-#, fuzzy
msgctxt ""
"generatedvaluespage.ui\n"
"statementft\n"
"label\n"
"string.text"
msgid "_Auto-increment statement:"
-msgstr "~Automatisk økning"
+msgstr "_Automatisk økning:"
#: generatedvaluespage.ui
-#, fuzzy
msgctxt ""
"generatedvaluespage.ui\n"
"queryft\n"
@@ -1170,7 +1158,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "New Index"
-msgstr ""
+msgstr "Ny indeks"
#: indexdesigndialog.ui
msgctxt ""
@@ -1179,7 +1167,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete Current Index"
-msgstr ""
+msgstr "Slett denne indeksen"
#: indexdesigndialog.ui
msgctxt ""
@@ -1188,7 +1176,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Rename Current Index"
-msgstr ""
+msgstr "Endre navn på denne indeksen"
#: indexdesigndialog.ui
msgctxt ""
@@ -1197,7 +1185,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Save Current Index"
-msgstr ""
+msgstr "Lagre gjeldende indeks"
#: indexdesigndialog.ui
msgctxt ""
@@ -1206,7 +1194,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset Current Index"
-msgstr ""
+msgstr "Nullstill gjeldende indeks"
#: indexdesigndialog.ui
msgctxt ""
@@ -1215,7 +1203,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Index identifier:"
-msgstr ""
+msgstr "Indeksnavn:"
#: indexdesigndialog.ui
msgctxt ""
@@ -1224,7 +1212,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Unique"
-msgstr ""
+msgstr "_Unik"
#: indexdesigndialog.ui
msgctxt ""
@@ -1233,7 +1221,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fields:"
-msgstr ""
+msgstr "Felt:"
#: indexdesigndialog.ui
msgctxt ""
@@ -1242,7 +1230,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Index Details"
-msgstr ""
+msgstr "Indeksdetaljer:"
#: jdbcconnectionpage.ui
msgctxt ""
@@ -1251,7 +1239,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Set Up a Connection to a JDBC Database"
-msgstr ""
+msgstr "Sett opp en kobling til en JDBC Database"
#: jdbcconnectionpage.ui
msgctxt ""
@@ -1260,7 +1248,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Please enter the required information to connect to a JDBC database. Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
+msgstr "Oppgi den informasjonen som trengs for å koble til en JDBC-database. Kontakt systemadministratoren dersom du er usikker på de følgende innstillingene."
#: jdbcconnectionpage.ui
msgctxt ""
@@ -1269,7 +1257,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Path to the dBASE files:"
-msgstr ""
+msgstr "Sti til dBASE-filene:"
#: jdbcconnectionpage.ui
msgctxt ""
@@ -1278,7 +1266,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Create New"
-msgstr ""
+msgstr "_Lag ny"
#: jdbcconnectionpage.ui
msgctxt ""
@@ -1287,7 +1275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Browse…"
-msgstr ""
+msgstr "_Bla gjennom …"
#: jdbcconnectionpage.ui
msgctxt ""
@@ -1296,7 +1284,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "JDBC d_river class:"
-msgstr ""
+msgstr "JDBC driverklasse:"
#: jdbcconnectionpage.ui
msgctxt ""
@@ -1305,7 +1293,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Test Class"
-msgstr ""
+msgstr "_Testklasse"
#: joindialog.ui
msgctxt ""
@@ -1317,7 +1305,6 @@ msgid "Join Properties"
msgstr "Egenskaper for sammenslåing"
#: joindialog.ui
-#, fuzzy
msgctxt ""
"joindialog.ui\n"
"label1\n"
@@ -1327,7 +1314,6 @@ msgid "Tables Involved"
msgstr "Involverte tabeller"
#: joindialog.ui
-#, fuzzy
msgctxt ""
"joindialog.ui\n"
"label2\n"
@@ -1337,7 +1323,6 @@ msgid "Fields Involved"
msgstr "Involverte felt"
#: joindialog.ui
-#, fuzzy
msgctxt ""
"joindialog.ui\n"
"label5\n"
@@ -1416,7 +1401,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Set Up a Connection to an LDAP Directory"
-msgstr ""
+msgstr "Sett opp en kobling til en LDAP katalog"
#: ldapconnectionpage.ui
msgctxt ""
@@ -1425,7 +1410,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Please enter the required information to connect to an LDAP directory. Please contact your system administrator if you are unsure about the following settings."
-msgstr ""
+msgstr "Oppgi informasjonen som trengs for å koble til en LDAP katalog. Kontakt systemadministratoren dersom du er usikker på de følgende innstillingene."
#: ldapconnectionpage.ui
msgctxt ""
@@ -1434,7 +1419,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Server:"
-msgstr ""
+msgstr "_Tjener:"
#: ldapconnectionpage.ui
msgctxt ""
@@ -1443,7 +1428,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Port number:"
-msgstr ""
+msgstr "_Portnummer:"
#: ldapconnectionpage.ui
msgctxt ""
@@ -1452,7 +1437,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default: 389"
-msgstr ""
+msgstr "Standard: 389"
#: ldapconnectionpage.ui
msgctxt ""
@@ -1461,7 +1446,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Base _DN:"
-msgstr ""
+msgstr "Base _DN:"
#: ldapconnectionpage.ui
msgctxt ""
@@ -1470,7 +1455,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use _secure connection (SSL)"
-msgstr ""
+msgstr "Bruk _sikker tilkobling (SSL)"
#: ldappage.ui
msgctxt ""
@@ -1479,7 +1464,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Base DN:"
-msgstr ""
+msgstr "_Base DN:"
#: ldappage.ui
msgctxt ""
@@ -1488,7 +1473,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use secure connection (SSL)"
-msgstr ""
+msgstr "Bruk sikker tilkobling (SSL)"
#: ldappage.ui
msgctxt ""
@@ -1497,7 +1482,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Port number:"
-msgstr ""
+msgstr "_Portnummer:"
#: ldappage.ui
msgctxt ""
@@ -1506,7 +1491,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Maximum number of _records:"
-msgstr ""
+msgstr "Maksimum antall _poster:"
#: ldappage.ui
msgctxt ""
@@ -1515,7 +1500,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Connection Settings"
-msgstr ""
+msgstr "Koblings innstillinger"
#: migratepage.ui
msgctxt ""
@@ -1524,7 +1509,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Migration Progress"
-msgstr ""
+msgstr "Framdrift i flyttingen"
#: migratepage.ui
msgctxt ""
@@ -1533,7 +1518,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "The database document contains $forms$ form(s) and $reports$ report(s), which are currently being processed:"
-msgstr ""
+msgstr "Databasedokumentet inneholder $forms$ skjema(er) og $reports$ rapport(er), som behandles nå:"
#: migratepage.ui
msgctxt ""
@@ -1542,7 +1527,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "All forms and reports have been successfully processed. Press 'Next' to show a detailed summary."
-msgstr ""
+msgstr "Alle skjemaer og rapporter er ferdig behandlet. Trykk «Neste» for å vise et detaljert sammendrag."
#: migratepage.ui
msgctxt ""
@@ -1551,7 +1536,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Overall progress:"
-msgstr ""
+msgstr "Framdrift totalt:"
#: migratepage.ui
msgctxt ""
@@ -1560,7 +1545,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "document $current$ of $overall$"
-msgstr ""
+msgstr "dokument $current$ av $overall$"
#: migratepage.ui
msgctxt ""
@@ -1569,7 +1554,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Current progress:"
-msgstr ""
+msgstr "Gjeldene framdrift"
#: migratepage.ui
msgctxt ""
@@ -1578,7 +1563,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Current object:"
-msgstr ""
+msgstr "Gjeldende objekt"
#: mysqlnativepage.ui
msgctxt ""
@@ -1587,7 +1572,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Connection Settings"
-msgstr ""
+msgstr "Koblings innstillinger"
#: mysqlnativepage.ui
msgctxt ""
@@ -1596,7 +1581,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_User name:"
-msgstr ""
+msgstr "_Brukernavn:"
#: mysqlnativepage.ui
msgctxt ""
@@ -1605,7 +1590,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Password required"
-msgstr ""
+msgstr "Passord kreves"
#: mysqlnativepage.ui
msgctxt ""
@@ -1614,7 +1599,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "User Authentication"
-msgstr ""
+msgstr "Brukerautentisering"
#: mysqlnativepage.ui
msgctxt ""
@@ -1623,7 +1608,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Character set:"
-msgstr ""
+msgstr "_Tegnsett"
#: mysqlnativepage.ui
msgctxt ""
@@ -1632,7 +1617,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Data Conversion"
-msgstr ""
+msgstr "Datakonvertering"
#: mysqlnativesettings.ui
msgctxt ""
@@ -1641,7 +1626,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Database name:"
-msgstr ""
+msgstr "_Databasenavn:"
#: mysqlnativesettings.ui
msgctxt ""
@@ -1650,7 +1635,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Se_rver/port"
-msgstr ""
+msgstr "Tjener/port"
#: mysqlnativesettings.ui
msgctxt ""
@@ -1659,7 +1644,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Server:"
-msgstr ""
+msgstr "_Tjener:"
#: mysqlnativesettings.ui
msgctxt ""
@@ -1668,7 +1653,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Port:"
-msgstr ""
+msgstr "_Port:"
#: mysqlnativesettings.ui
msgctxt ""
@@ -1677,7 +1662,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default: 3306"
-msgstr ""
+msgstr "Standard: 3306"
#: mysqlnativesettings.ui
msgctxt ""
@@ -1686,7 +1671,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "So_cket:"
-msgstr ""
+msgstr "Kontakt:"
#: mysqlnativesettings.ui
msgctxt ""
@@ -1695,7 +1680,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Named p_ipe:"
-msgstr ""
+msgstr "Navngitt datakanal:"
#: namematchingpage.ui
msgctxt ""
@@ -1704,7 +1689,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_All"
-msgstr ""
+msgstr "_Alle"
#: namematchingpage.ui
msgctxt ""
@@ -1713,7 +1698,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Non_e"
-msgstr ""
+msgstr "_Ingen"
#: namematchingpage.ui
msgctxt ""
@@ -1722,7 +1707,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Source table: "
-msgstr ""
+msgstr "Kilde tabell: "
#: namematchingpage.ui
msgctxt ""
@@ -1731,7 +1716,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Destination table: "
-msgstr ""
+msgstr "Måltabell: "
#: odbcpage.ui
msgctxt ""
@@ -1740,7 +1725,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Character set:"
-msgstr ""
+msgstr "_Tegnsett:"
#: odbcpage.ui
msgctxt ""
@@ -1749,7 +1734,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Data Conversion"
-msgstr ""
+msgstr "Datakonvertering"
#: odbcpage.ui
msgctxt ""
@@ -1758,7 +1743,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "ODBC _options:"
-msgstr ""
+msgstr "_ODBC-innstillinger:"
#: odbcpage.ui
msgctxt ""
@@ -1767,7 +1752,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use catalog for file-based databases"
-msgstr ""
+msgstr "Bruk katalog for filbaserte databaser"
#: odbcpage.ui
msgctxt ""
@@ -1776,7 +1761,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Optional Settings"
-msgstr ""
+msgstr "Valgfrie innstillinger"
#: parametersdialog.ui
msgctxt ""
@@ -1785,7 +1770,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Parameter Input"
-msgstr ""
+msgstr "Parameter inndata"
#: parametersdialog.ui
msgctxt ""
@@ -1794,7 +1779,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Value:"
-msgstr ""
+msgstr "_Verdi:"
#: parametersdialog.ui
msgctxt ""
@@ -1803,7 +1788,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Next"
-msgstr ""
+msgstr "_Neste"
#: parametersdialog.ui
msgctxt ""
@@ -1812,7 +1797,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Parameters"
-msgstr ""
+msgstr "_Parametre"
#: password.ui
msgctxt ""
@@ -1824,44 +1809,40 @@ msgid "Change Password"
msgstr "Endre passord"
#: password.ui
-#, fuzzy
msgctxt ""
"password.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "Old p_assword:"
-msgstr "Gammelt p_assord"
+msgstr "Gammelt passord:"
#: password.ui
-#, fuzzy
msgctxt ""
"password.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "_Password:"
-msgstr "_Passord"
+msgstr "_Passord:"
#: password.ui
-#, fuzzy
msgctxt ""
"password.ui\n"
"label4\n"
"label\n"
"string.text"
msgid "_Confirm password:"
-msgstr "Bekreft _passord"
+msgstr "_Bekreft passord:"
#: password.ui
-#, fuzzy
msgctxt ""
"password.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "User “$name$: $”"
-msgstr "Bruker «$name$: $»"
+msgstr "Bruker \"$name$: $\""
#: preparepage.ui
msgctxt ""
@@ -1870,7 +1851,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Welcome to the Database Macro Migration Wizard"
-msgstr ""
+msgstr "Velkommen til veiviseren for flytting av makroer i databaser"
#: preparepage.ui
msgctxt ""
@@ -1887,6 +1868,13 @@ msgid ""
"\n"
"Before the migration can start, all forms, reports, queries and tables belonging to the document must be closed. Press 'Next' to do so."
msgstr ""
+"Denne veiviseren leder deg gjennom flytting av makroer.\n"
+"\n"
+"Når flyttingen er fullført, vil alle makroer som tidligere var innebygd i skjemaer og rapporter, være flyttet til databasedokumentet. I løpet av denne prosessen vil biblioteker om nødvendig gis nye navn.\n"
+"\n"
+"Hvis du har skjemaer og rapporter som inneholder referanser til disse makroene, blir de tilpasset der dette er mulig.\n"
+"\n"
+"Alle skjema, rapporter, spørringer og tabeller som tilhører dokumentet må være lukket før flyttingen kan begynne. Velg \"Neste\" for å gjøre dette."
#: preparepage.ui
msgctxt ""
@@ -1895,7 +1883,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Not all objects could be closed. Please close them manually, and re-start the wizard."
-msgstr ""
+msgstr "Klarte ikke å lukke alle objekter. Lukk dem manuelt og start veiviseren på nytt."
#: queryfilterdialog.ui
msgctxt ""
@@ -1976,7 +1964,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "<="
-msgstr ""
+msgstr "<="
#: queryfilterdialog.ui
msgctxt ""
@@ -1994,7 +1982,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid ">="
-msgstr ""
+msgstr ">="
#: queryfilterdialog.ui
msgctxt ""
@@ -2114,14 +2102,13 @@ msgid "Query Properties"
msgstr "Spørringsegenskaper"
#: querypropertiesdialog.ui
-#, fuzzy
msgctxt ""
"querypropertiesdialog.ui\n"
"limit-label\n"
"label\n"
"string.text"
msgid "Limit:"
-msgstr "Grense"
+msgstr "Grense:"
#: querypropertiesdialog.ui
msgctxt ""
@@ -2142,14 +2129,13 @@ msgid "No"
msgstr "Nei"
#: querypropertiesdialog.ui
-#, fuzzy
msgctxt ""
"querypropertiesdialog.ui\n"
"distinctvalues\n"
"label\n"
"string.text"
msgid "Distinct values:"
-msgstr "Unike verdier"
+msgstr "Unike verdier:"
#: relationdialog.ui
msgctxt ""
@@ -2161,7 +2147,6 @@ msgid "Relations"
msgstr "Relasjoner"
#: relationdialog.ui
-#, fuzzy
msgctxt ""
"relationdialog.ui\n"
"label1\n"
@@ -2171,7 +2156,6 @@ msgid "Tables Involved"
msgstr "Involverte tabeller"
#: relationdialog.ui
-#, fuzzy
msgctxt ""
"relationdialog.ui\n"
"label2\n"
@@ -2217,14 +2201,13 @@ msgid "Set _default"
msgstr "Velg standard_innstillinger"
#: relationdialog.ui
-#, fuzzy
msgctxt ""
"relationdialog.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "Update Options"
-msgstr "Valg for oppdatering"
+msgstr "Oppdaterings valg"
#: relationdialog.ui
msgctxt ""
@@ -2263,7 +2246,6 @@ msgid "Set _default"
msgstr "Velg standard_innstillinger"
#: relationdialog.ui
-#, fuzzy
msgctxt ""
"relationdialog.ui\n"
"label4\n"
@@ -2327,14 +2309,13 @@ msgid "Row Height"
msgstr "Radhøyde"
#: rowheightdialog.ui
-#, fuzzy
msgctxt ""
"rowheightdialog.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "_Height:"
-msgstr "_Høyde"
+msgstr "_Høyde:"
#: rowheightdialog.ui
msgctxt ""
@@ -2352,7 +2333,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Copy RTF Table"
-msgstr ""
+msgstr "Kopier RTF tabell"
#: savedialog.ui
msgctxt ""
@@ -2373,24 +2354,22 @@ msgid "Please enter a name for the object to be created:"
msgstr "Skriv inn et navn for objektet som skal opprettes:"
#: savedialog.ui
-#, fuzzy
msgctxt ""
"savedialog.ui\n"
"catalogft\n"
"label\n"
"string.text"
msgid "_Catalog:"
-msgstr "_Katalog"
+msgstr "_Katalog:"
#: savedialog.ui
-#, fuzzy
msgctxt ""
"savedialog.ui\n"
"schemaft\n"
"label\n"
"string.text"
msgid "_Schema:"
-msgstr "_Skjema"
+msgstr "_Skjema:"
#: saveindexdialog.ui
msgctxt ""
@@ -2399,7 +2378,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Exit Index Design"
-msgstr ""
+msgstr "Avslutt indeksoppsett"
#: saveindexdialog.ui
msgctxt ""
@@ -2408,7 +2387,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "Do you want to save the changes made to the current index?"
-msgstr ""
+msgstr "Vil du lagre endringene som er gjort i denne indeksen?"
#: savemodifieddialog.ui
msgctxt ""
@@ -2417,7 +2396,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "Do you want to save the changes?"
-msgstr ""
+msgstr "Vil du lagre endringene?"
#: savemodifieddialog.ui
msgctxt ""
@@ -2426,7 +2405,7 @@ msgctxt ""
"secondary_text\n"
"string.text"
msgid "The current record has been changed."
-msgstr ""
+msgstr "Den gjeldende posten er endret."
#: sortdialog.ui
msgctxt ""
@@ -2552,7 +2531,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Set up connection to a MySQL database using JDBC"
-msgstr ""
+msgstr "Sett opp tilkobling til en MySQL-database med JDBC"
#: specialjdbcconnectionpage.ui
msgctxt ""
@@ -2561,7 +2540,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Please enter the required information to connect to a MySQL database using JDBC. Note that a JDBC driver class must be installed on your system and registered with %PRODUCTNAME. Please contact your system administrator if you are unsure about the following settings. "
-msgstr ""
+msgstr "Oppgi informasjonen som trengs for å koble til en MySQL-database med JDBC. Legg merke til at en JDBC-driverklasse må være installert på systemet og registrert med %PRODUCTNAME. Kontakt systemadministratoren dersom du er usikker på de følgende innstillingene."
#: specialjdbcconnectionpage.ui
msgctxt ""
@@ -2570,7 +2549,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Database name:"
-msgstr ""
+msgstr "_Databasenavn:"
#: specialjdbcconnectionpage.ui
msgctxt ""
@@ -2579,7 +2558,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Server:"
-msgstr ""
+msgstr "_Tjener:"
#: specialjdbcconnectionpage.ui
msgctxt ""
@@ -2588,7 +2567,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Port number:"
-msgstr ""
+msgstr "_Portnummer:"
#: specialjdbcconnectionpage.ui
msgctxt ""
@@ -2597,7 +2576,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Default: 3306"
-msgstr ""
+msgstr "Standard: 3306"
#: specialjdbcconnectionpage.ui
msgctxt ""
@@ -2606,7 +2585,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "MySQL JDBC d_river class:"
-msgstr ""
+msgstr "MySQL JDBC driverklasse:"
#: specialjdbcconnectionpage.ui
msgctxt ""
@@ -2615,7 +2594,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Test Class"
-msgstr ""
+msgstr "_Testklasse"
#: specialsettingspage.ui
msgctxt ""
@@ -2645,14 +2624,13 @@ msgid "Use keyword AS before table alias names"
msgstr "Bruk nøkkelordet AS før tabellalias"
#: specialsettingspage.ui
-#, fuzzy
msgctxt ""
"specialsettingspage.ui\n"
"useoj\n"
"label\n"
"string.text"
msgid "Use Outer Join syntax '{oj }'"
-msgstr "Bruk ytre sammenslåingssyntaks «{OJ}»"
+msgstr "Bruk ytre sammenslåingssyntaks \"{OJ}\""
#: specialsettingspage.ui
msgctxt ""
@@ -2763,14 +2741,13 @@ msgid "Respect the result set type from the database driver"
msgstr "Respekter resultattypesettet fra databasedriveren"
#: specialsettingspage.ui
-#, fuzzy
msgctxt ""
"specialsettingspage.ui\n"
"comparisonft\n"
"label\n"
"string.text"
msgid "Comparison of Boolean values:"
-msgstr "Sammenlikning av boolske verdier"
+msgstr "Sammenligning av boolske verdier:"
#: specialsettingspage.ui
msgctxt ""
@@ -2809,14 +2786,13 @@ msgid "MS Access"
msgstr "MS Access"
#: specialsettingspage.ui
-#, fuzzy
msgctxt ""
"specialsettingspage.ui\n"
"rowsft\n"
"label\n"
"string.text"
msgid "Rows to scan column types:"
-msgstr "Rader for å søke etter kolonnetyper"
+msgstr "Rader for å søke etter kolonnetyper:"
#: sqlexception.ui
msgctxt ""
@@ -2825,7 +2801,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Error Details"
-msgstr ""
+msgstr "Feildetaljer"
#: sqlexception.ui
msgctxt ""
@@ -2852,7 +2828,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Summary"
-msgstr ""
+msgstr "Sammendrag"
#: summarypage.ui
msgctxt ""
@@ -2861,7 +2837,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "The migration was successful. Below is a log of the actions which have been taken to your document."
-msgstr ""
+msgstr "Flyttingen er utført. Under ser du en logg over handlingene som er gjort i dokumentet."
#: summarypage.ui
msgctxt ""
@@ -2870,7 +2846,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "The migration was not successful. Examine the migration log below for details."
-msgstr ""
+msgstr "Flyttingen ble ikke utført. Se flytteloggen under for detaljer."
#: tabledesignsavemodifieddialog.ui
msgctxt ""
@@ -2879,7 +2855,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "Do you want to save the changes?"
-msgstr ""
+msgstr "Vil du lagre endringene?"
#: tabledesignsavemodifieddialog.ui
msgctxt ""
@@ -2888,7 +2864,7 @@ msgctxt ""
"secondary_text\n"
"string.text"
msgid "The table has been changed."
-msgstr ""
+msgstr "Tabellen er endret."
#: tablesfilterdialog.ui
msgctxt ""
@@ -2909,7 +2885,6 @@ msgid "Mark the tables that should be visible for the applications."
msgstr "Marker tabellene som skal være synlige for programmene."
#: tablesfilterpage.ui
-#, fuzzy
msgctxt ""
"tablesfilterpage.ui\n"
"label1\n"
@@ -2961,7 +2936,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Text Connection Settings"
-msgstr ""
+msgstr "Innstillinger for tekstkoblinger"
#: textpage.ui
msgctxt ""
@@ -2970,7 +2945,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Plain text files (*.txt)"
-msgstr ""
+msgstr "Enkle tekstfiler (*.txt)"
#: textpage.ui
msgctxt ""
@@ -2979,7 +2954,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Comma-separated value files (*.csv)"
-msgstr ""
+msgstr "Kommaseparerte filer (*.CVS)"
#: textpage.ui
msgctxt ""
@@ -2988,7 +2963,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom:"
-msgstr ""
+msgstr "Tilpasset:"
#: textpage.ui
msgctxt ""
@@ -2997,7 +2972,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom: *.abc"
-msgstr ""
+msgstr "Tilpasset: *.abc"
#: textpage.ui
msgctxt ""
@@ -3006,7 +2981,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Specify the Type of Files You Want to Access"
-msgstr ""
+msgstr "Spesifiser hvilke filtyper du vil bruke"
#: textpage.ui
msgctxt ""
@@ -3015,7 +2990,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Text contains headers"
-msgstr ""
+msgstr "_Teksten inneholder topptekster"
#: textpage.ui
msgctxt ""
@@ -3024,7 +2999,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Field separator:"
-msgstr ""
+msgstr "Feltskille"
#: textpage.ui
msgctxt ""
@@ -3033,7 +3008,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text separator:"
-msgstr ""
+msgstr "Tekstskille"
#: textpage.ui
msgctxt ""
@@ -3042,7 +3017,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Decimal separator:"
-msgstr ""
+msgstr "Desimalskille:"
#: textpage.ui
msgctxt ""
@@ -3051,7 +3026,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Thousands separator:"
-msgstr ""
+msgstr "Tusenskille:"
#: textpage.ui
msgctxt ""
@@ -3060,7 +3035,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
@@ -3069,7 +3044,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
@@ -3078,7 +3053,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
msgctxt ""
@@ -3087,7 +3062,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
msgctxt ""
@@ -3096,7 +3071,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
msgctxt ""
@@ -3105,7 +3080,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
@@ -3114,7 +3089,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Row Format"
-msgstr ""
+msgstr "Radformat"
#: textpage.ui
msgctxt ""
@@ -3123,7 +3098,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Character set:"
-msgstr ""
+msgstr "_Tegnsett:"
#: textpage.ui
msgctxt ""
@@ -3132,7 +3107,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Data Conversion"
-msgstr ""
+msgstr "Datakonvertering"
#: typeselectpage.ui
msgctxt ""
@@ -3141,7 +3116,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Column Information"
-msgstr ""
+msgstr "Kolonneinformasjon"
#: typeselectpage.ui
msgctxt ""
@@ -3150,7 +3125,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Lines (ma_x.):"
-msgstr ""
+msgstr "Linjer (maks):"
#: typeselectpage.ui
msgctxt ""
@@ -3159,7 +3134,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Auto"
-msgstr ""
+msgstr "_Automatisk"
#: typeselectpage.ui
msgctxt ""
@@ -3168,10 +3143,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Automatic Type Recognition"
-msgstr ""
+msgstr "Automatisk typegjenkjenning"
#: useradmindialog.ui
-#, fuzzy
msgctxt ""
"useradmindialog.ui\n"
"UserAdminDialog\n"
@@ -3196,7 +3170,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Us_er:"
-msgstr ""
+msgstr "Bruker:"
#: useradminpage.ui
msgctxt ""
@@ -3205,17 +3179,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Add User..."
-msgstr ""
+msgstr "_Legg til bruker …"
#: useradminpage.ui
-#, fuzzy
msgctxt ""
"useradminpage.ui\n"
"changepass\n"
"label\n"
"string.text"
msgid "Change _Password..."
-msgstr "Endre passord"
+msgstr "Endre passord..."
#: useradminpage.ui
msgctxt ""
@@ -3224,7 +3197,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete User..."
-msgstr ""
+msgstr "_Slett bruker …"
#: useradminpage.ui
msgctxt ""
@@ -3233,7 +3206,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "User Selection"
-msgstr ""
+msgstr "Brukervalg"
#: useradminpage.ui
msgctxt ""
@@ -3242,7 +3215,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Access Rights for Selected User"
-msgstr ""
+msgstr "Tilgangsrettigheter for valgt bruker"
#: userdetailspage.ui
msgctxt ""
@@ -3251,7 +3224,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Host name:"
-msgstr ""
+msgstr "_Vertsnavn:"
#: userdetailspage.ui
msgctxt ""
@@ -3260,7 +3233,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Port number:"
-msgstr ""
+msgstr "_Portnummer:"
#: userdetailspage.ui
msgctxt ""
@@ -3269,7 +3242,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Use catalog"
-msgstr ""
+msgstr "_Bruk katalog"
#: userdetailspage.ui
msgctxt ""
@@ -3278,7 +3251,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Driver settings:"
-msgstr ""
+msgstr "_Driverinnstillinger:"
#: userdetailspage.ui
msgctxt ""
@@ -3287,7 +3260,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Connection Settings"
-msgstr ""
+msgstr "Tilkoblingsinnstillinger"
#: userdetailspage.ui
msgctxt ""
@@ -3296,7 +3269,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Character set:"
-msgstr ""
+msgstr "_Tegnsett:"
#: userdetailspage.ui
msgctxt ""
@@ -3305,4 +3278,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "Data conversion"
-msgstr ""
+msgstr "Datakonvertering"
diff --git a/source/nb/desktop/uiconfig/ui.po b/source/nb/desktop/uiconfig/ui.po
index 2f04207fa51..5929338f231 100644
--- a/source/nb/desktop/uiconfig/ui.po
+++ b/source/nb/desktop/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-02-04 23:54+0000\n"
+"PO-Revision-Date: 2016-03-08 21:34+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1423094068.000000\n"
+"X-POOTLE-MTIME: 1457472873.000000\n"
#: cmdlinehelp.ui
msgctxt ""
@@ -215,14 +215,13 @@ msgid "2."
msgstr "2."
#: licensedialog.ui
-#, fuzzy
msgctxt ""
"licensedialog.ui\n"
"label4\n"
"label\n"
"string.text"
msgid "Read the complete License Agreement. Use the scroll bar or the 'Scroll Down' button in this dialog to view the entire license text."
-msgstr "Les gjennom hele lisensavtalen. Bruk rullefeltet eller knappen «Bla ned» i dette dialogvinduet for å lese teksten."
+msgstr "Les gjennom hele lisensavtalen. Bruk rullefeltet eller knappen «Rull ned» i dette dialogvinduet for å lese teksten."
#: licensedialog.ui
msgctxt ""
diff --git a/source/nb/dictionaries/is.po b/source/nb/dictionaries/is.po
index b860e5dedba..5db44ede9c6 100644
--- a/source/nb/dictionaries/is.po
+++ b/source/nb/dictionaries/is.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: 2013-12-11 11:29+0000\n"
+"PO-Revision-Date: 2016-03-08 21:35+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1386761346.000000\n"
+"X-POOTLE-MTIME: 1457472920.000000\n"
#: description.xml
msgctxt ""
@@ -22,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Icelandic spelling dictionary, hyphenation rules and thesaurus"
-msgstr ""
+msgstr "Islandsk stavekontroll, orddeling og synonymordbok"
diff --git a/source/nb/dictionaries/sv_SE.po b/source/nb/dictionaries/sv_SE.po
index 3a00475d9e5..4379415e637 100644
--- a/source/nb/dictionaries/sv_SE.po
+++ b/source/nb/dictionaries/sv_SE.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 350-l10n\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-12-11 11:29+0000\n"
+"PO-Revision-Date: 2016-03-08 21:35+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: nb\n"
@@ -14,10 +14,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1386761347.000000\n"
+"X-POOTLE-MTIME: 1457472946.000000\n"
#: description.xml
-#, fuzzy
msgctxt ""
"description.xml\n"
"dispname\n"
diff --git a/source/nb/editeng/source/editeng.po b/source/nb/editeng/source/editeng.po
index d6b09d175c8..2e7025a4faa 100644
--- a/source/nb/editeng/source/editeng.po
+++ b/source/nb/editeng/source/editeng.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: 2013-12-11 11:29+0000\n"
+"PO-Revision-Date: 2016-03-08 21:36+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1386761348.000000\n"
+"X-POOTLE-MTIME: 1457472963.000000\n"
#: editeng.src
msgctxt ""
@@ -89,7 +89,6 @@ msgid "Change Case"
msgstr "Endre bokstavstørrelse"
#: editeng.src
-#, fuzzy
msgctxt ""
"editeng.src\n"
"RID_MENU_SPELL\n"
@@ -132,7 +131,7 @@ msgctxt ""
"MN_AUTOCORR\n"
"menuitem.text"
msgid "AutoCorrect ~To"
-msgstr ""
+msgstr "Auto korriger ~til"
#: editeng.src
msgctxt ""
@@ -141,7 +140,7 @@ msgctxt ""
"MN_AUTO_CORRECT_DLG\n"
"menuitem.text"
msgid "Auto~Correct Options..."
-msgstr ""
+msgstr "Innstillinger for ~autoretting …"
#: editeng.src
msgctxt ""
diff --git a/source/nb/extensions/source/scanner.po b/source/nb/extensions/source/scanner.po
index aeba61cfc77..1921c6e79bc 100644
--- a/source/nb/extensions/source/scanner.po
+++ b/source/nb/extensions/source/scanner.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-06-24 17:05+0200\n"
-"PO-Revision-Date: 2015-06-26 02:12+0000\n"
+"PO-Revision-Date: 2016-03-08 21:41+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
@@ -14,10 +14,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435284750.000000\n"
+"X-POOTLE-MTIME: 1457473281.000000\n"
#: strings.src
-#, fuzzy
msgctxt ""
"strings.src\n"
"STR_COULD_NOT_BE_INIT\n"
@@ -26,7 +25,6 @@ msgid "The SANE interface could not be initialized. Scanning is not possible."
msgstr "Klarte ikke å klargjøre SANE-grensesnittet. Kan derfor ikke skanne."
#: strings.src
-#, fuzzy
msgctxt ""
"strings.src\n"
"STR_SLOW_PREVIEW\n"
@@ -35,16 +33,14 @@ msgid "The device does not offer a preview option. Therefore, a normal scan will
msgstr "Enheten støtter ikke forhåndsvisning. Vanlig skanning vil derfor bli brukt som forhåndsvisning. Dette kan ta ganske lang tid."
#: strings.src
-#, fuzzy
msgctxt ""
"strings.src\n"
"STR_ERROR_SCAN\n"
"string.text"
msgid "An error occurred while scanning."
-msgstr "Det oppstod en feil under skanninga."
+msgstr "Det oppstod en feil under skanningen."
#: strings.src
-#, fuzzy
msgctxt ""
"strings.src\n"
"STR_DEVICE_DESC\n"
diff --git a/source/nb/extensions/uiconfig/sabpilot/ui.po b/source/nb/extensions/uiconfig/sabpilot/ui.po
index 29b70625cee..feb32981dea 100644
--- a/source/nb/extensions/uiconfig/sabpilot/ui.po
+++ b/source/nb/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 02:12+0000\n"
+"PO-Revision-Date: 2016-03-08 21:42+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435284756.000000\n"
+"X-POOTLE-MTIME: 1457473345.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Existing fields"
-msgstr ""
+msgstr "Eksisterende felt"
#: contentfieldpage.ui
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Display field"
-msgstr ""
+msgstr "Vis felt"
#: contenttablepage.ui
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Data source"
-msgstr ""
+msgstr "Datakilde"
#: contenttablepage.ui
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Content type"
-msgstr ""
+msgstr "Inneholdstype"
#: contenttablepage.ui
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Content"
-msgstr ""
+msgstr "Innehold"
#: contenttablepage.ui
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Form"
-msgstr ""
+msgstr "Skjema"
#: contenttablepage.ui
msgctxt ""
@@ -82,6 +82,10 @@ msgid ""
"\n"
"Choose the table from which the data should be used as basis for the list content:"
msgstr ""
+"På høyre side ser du alle tabellene fra skjemaets datakilde.\n"
+"\n"
+"\n"
+"Velg tabellen som inneholder dataene som skal brukes som grunnlag for innholdet i lista:"
#: contenttablepage.ui
msgctxt ""
@@ -90,7 +94,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Control"
-msgstr ""
+msgstr "Kontrollelement"
#: datasourcepage.ui
msgctxt ""
@@ -114,10 +118,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Embed this address book definition into the current document."
-msgstr ""
+msgstr "Bygg denne adresseboksdefinisjonen inn i det gjeldende dokumentet."
#: datasourcepage.ui
-#, fuzzy
msgctxt ""
"datasourcepage.ui\n"
"locationft\n"
@@ -169,7 +172,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Should one option field be selected as a default?"
-msgstr ""
+msgstr "Vil du angi et alternativfelt som standard?"
#: defaultfieldselectionpage.ui
msgctxt ""
@@ -178,7 +181,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Yes, the following:"
-msgstr ""
+msgstr "_Ja, dette:"
#: defaultfieldselectionpage.ui
msgctxt ""
@@ -187,7 +190,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "No, one particular field is not going to be selected."
-msgstr ""
+msgstr "Nei, ikke velg et standardfelt."
#: fieldassignpage.ui
msgctxt ""
@@ -224,7 +227,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "This is where you select fields with matching contents so that the value from the display field will be shown."
-msgstr ""
+msgstr "Her kan du velge felt med likt innhold, slik at verdien fra visningsfeltet blir vist."
#: fieldlinkpage.ui
msgctxt ""
@@ -233,7 +236,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Field from the _Value Table"
-msgstr ""
+msgstr "Felt fra _verditabellen"
#: fieldlinkpage.ui
msgctxt ""
@@ -242,7 +245,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Field from the _List Table"
-msgstr ""
+msgstr "Felt fra _listetabellen"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -251,7 +254,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Data source"
-msgstr ""
+msgstr "Datakilde"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -260,7 +263,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Content type"
-msgstr ""
+msgstr "Inneholdstype"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -269,7 +272,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Content"
-msgstr ""
+msgstr "Innehold"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -278,7 +281,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Form"
-msgstr ""
+msgstr "Skjema"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -287,7 +290,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Selected fields"
-msgstr ""
+msgstr "Valgte felt"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -296,7 +299,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -305,7 +308,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "=>>"
-msgstr ""
+msgstr "=>>"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -314,7 +317,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -323,7 +326,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "<<="
-msgstr ""
+msgstr "<<="
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -332,7 +335,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Existing fields"
-msgstr ""
+msgstr "Eksisterende felt"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -341,7 +344,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table element"
-msgstr ""
+msgstr "Tabellelement"
#: groupradioselectionpage.ui
msgctxt ""
@@ -350,7 +353,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Data source"
-msgstr ""
+msgstr "Datakilde"
#: groupradioselectionpage.ui
msgctxt ""
@@ -359,7 +362,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Content type"
-msgstr ""
+msgstr "Inneholdstype"
#: groupradioselectionpage.ui
msgctxt ""
@@ -368,7 +371,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Content"
-msgstr ""
+msgstr "Innehold"
#: groupradioselectionpage.ui
msgctxt ""
@@ -377,7 +380,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Form"
-msgstr ""
+msgstr "Skjema"
#: groupradioselectionpage.ui
msgctxt ""
@@ -386,7 +389,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Option fields"
-msgstr ""
+msgstr "_Alternativfelt"
#: groupradioselectionpage.ui
msgctxt ""
@@ -395,7 +398,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
msgctxt ""
@@ -404,7 +407,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -413,7 +416,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Which _names do you want to give the option fields?"
-msgstr ""
+msgstr "Hvilke navn vil du bruke på alternativfeltene?"
#: groupradioselectionpage.ui
msgctxt ""
@@ -422,7 +425,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Table element"
-msgstr ""
+msgstr "Tabellelement"
#: invokeadminpage.ui
msgctxt ""
@@ -468,7 +471,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Do you want to save the value in a database field?"
-msgstr ""
+msgstr "Vil du lagre verdien i et databasefelt?"
#: optiondbfieldpage.ui
msgctxt ""
@@ -477,7 +480,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Yes, I want to save it in the following database field:"
-msgstr ""
+msgstr "_Ja, jeg vil lagre det i dette databasefeltet:"
#: optiondbfieldpage.ui
msgctxt ""
@@ -486,7 +489,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_No, I only want to save the value in the form."
-msgstr ""
+msgstr "_Nei, jeg vil bare lagre verdien i skjemaet."
#: optionsfinalpage.ui
msgctxt ""
@@ -495,7 +498,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Which _caption is to be given to your option group?"
-msgstr ""
+msgstr "Hvilken forklaringstekst vil du bruke for alternativgruppa?"
#: optionsfinalpage.ui
msgctxt ""
@@ -504,7 +507,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "These were all details needed to create the option group."
-msgstr ""
+msgstr "Dette var all informasjon som behøves for å lage en alternativgruppe."
#: optionvaluespage.ui
msgctxt ""
@@ -513,7 +516,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "When you select an option, the option group is given a specific value."
-msgstr ""
+msgstr "Hvis du velger et alternativ, vil alternativgruppen få en bestemt verdi."
#: optionvaluespage.ui
msgctxt ""
@@ -522,7 +525,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Which _value do you want to assign to each option?"
-msgstr ""
+msgstr "Hvilken verdi vil du tildele hvert alternativ?"
#: optionvaluespage.ui
msgctxt ""
@@ -531,7 +534,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Option fields"
-msgstr ""
+msgstr "_Alternativfelt"
#: selecttablepage.ui
msgctxt ""
@@ -619,7 +622,6 @@ msgid "Other external data source"
msgstr "Annen ekstern datakilde"
#: selecttypepage.ui
-#, fuzzy
msgctxt ""
"selecttypepage.ui\n"
"label1\n"
@@ -657,6 +659,12 @@ msgid ""
"\n"
"Please note that the settings made on this page will take effect immediately upon leaving the page."
msgstr ""
+"Skjemaet som kontrollen hører til er ikke bundet (eller ikke fullstendig bundet) til en datakilde.\n"
+"\n"
+"Velg en datakilde og en tabell.\n"
+"\n"
+"\n"
+"Innstillingene på denne siden trer i kraft med en gang du lukker siden."
#: tableselectionpage.ui
msgctxt ""
@@ -665,7 +673,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Data source:"
-msgstr ""
+msgstr "_Datakilde:"
#: tableselectionpage.ui
msgctxt ""
@@ -674,7 +682,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
@@ -683,7 +691,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Table / Query:"
-msgstr ""
+msgstr "_Tabell/spørring:"
#: tableselectionpage.ui
msgctxt ""
@@ -692,4 +700,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "Data"
-msgstr ""
+msgstr "Data"
diff --git a/source/nb/extensions/uiconfig/sbibliography/ui.po b/source/nb/extensions/uiconfig/sbibliography/ui.po
index 19d08da3ac7..efe60eb709d 100644
--- a/source/nb/extensions/uiconfig/sbibliography/ui.po
+++ b/source/nb/extensions/uiconfig/sbibliography/ui.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: 2014-09-04 18:54+0000\n"
-"Last-Translator: Olav <odahlum@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 21:42+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1409856898.000000\n"
+"X-POOTLE-MTIME: 1457473367.000000\n"
#: choosedatasourcedialog.ui
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Short name"
-msgstr ""
+msgstr "_Kortnavn"
#: generalpage.ui
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Type"
-msgstr ""
+msgstr "_Type"
#: generalpage.ui
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Author(s)"
-msgstr ""
+msgstr "Forfatter(er)"
#: generalpage.ui
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Publisher"
-msgstr ""
+msgstr "_Utgiver"
#: generalpage.ui
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Chapter"
-msgstr ""
+msgstr "_Kapittel"
#: generalpage.ui
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tit_le"
-msgstr ""
+msgstr "Tittel"
#: generalpage.ui
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "A_ddress"
-msgstr ""
+msgstr "Adresse"
#: generalpage.ui
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pa_ge(s)"
-msgstr ""
+msgstr "Side(r)"
#: generalpage.ui
msgctxt ""
@@ -113,7 +113,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Year"
-msgstr ""
+msgstr "_År"
#: generalpage.ui
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_ISBN"
-msgstr ""
+msgstr "_ISBN"
#: generalpage.ui
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Editor"
-msgstr ""
+msgstr "Forfatter"
#: generalpage.ui
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Book title"
-msgstr ""
+msgstr "_Boktittel"
#: generalpage.ui
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ed_ition"
-msgstr ""
+msgstr "Utgave"
#: generalpage.ui
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Volume"
-msgstr ""
+msgstr "Volum"
#: generalpage.ui
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Instit_ution"
-msgstr ""
+msgstr "Institusjon"
#: generalpage.ui
msgctxt ""
@@ -176,7 +176,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Month"
-msgstr ""
+msgstr "_Måned"
#: generalpage.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Publication t_ype"
-msgstr ""
+msgstr "Publikasjonstype"
#: generalpage.ui
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "University"
-msgstr ""
+msgstr "Universitet"
#: generalpage.ui
msgctxt ""
@@ -203,7 +203,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Type of re_port"
-msgstr ""
+msgstr "Rapporttype"
#: generalpage.ui
msgctxt ""
@@ -212,7 +212,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Organi_zation"
-msgstr ""
+msgstr "Organisasjon"
#: generalpage.ui
msgctxt ""
@@ -221,7 +221,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Journal"
-msgstr ""
+msgstr "_Journal"
#: generalpage.ui
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ann_otation"
-msgstr ""
+msgstr "Merknader"
#: generalpage.ui
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Numb_er"
-msgstr ""
+msgstr "Tall"
#: generalpage.ui
msgctxt ""
@@ -248,7 +248,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Note"
-msgstr ""
+msgstr "_Merknad"
#: generalpage.ui
msgctxt ""
@@ -257,7 +257,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Se_ries"
-msgstr ""
+msgstr "Serier"
#: generalpage.ui
msgctxt ""
@@ -266,7 +266,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "URL"
-msgstr ""
+msgstr "URL"
#: generalpage.ui
msgctxt ""
@@ -275,7 +275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "User-defined field _1"
-msgstr ""
+msgstr "Bruker definert felt_1"
#: generalpage.ui
msgctxt ""
@@ -284,7 +284,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "User-defined field _4"
-msgstr ""
+msgstr "Brukerdefinert felt_4"
#: generalpage.ui
msgctxt ""
@@ -293,7 +293,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "User-defined field _2"
-msgstr ""
+msgstr "Brukerdefinert felt_2"
#: generalpage.ui
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "User-defined field _5"
-msgstr ""
+msgstr "Brukerdefinert felt_5"
#: generalpage.ui
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "User-defined field _3"
-msgstr ""
+msgstr "Brukerdefinert felt_3"
#: mappingdialog.ui
msgctxt ""
@@ -320,7 +320,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Column Layout for Table %1"
-msgstr ""
+msgstr "Kolonneoppsetting for tabellen %1"
#: mappingdialog.ui
msgctxt ""
@@ -329,7 +329,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Short name"
-msgstr ""
+msgstr "_Kortnavn"
#: mappingdialog.ui
msgctxt ""
@@ -338,7 +338,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Author(s)"
-msgstr ""
+msgstr "_Forfatter(e)"
#: mappingdialog.ui
msgctxt ""
@@ -347,7 +347,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Publisher"
-msgstr ""
+msgstr "_Utgiver"
#: mappingdialog.ui
msgctxt ""
@@ -356,7 +356,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Chapter"
-msgstr ""
+msgstr "_Kapittel"
#: mappingdialog.ui
msgctxt ""
@@ -365,7 +365,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Editor"
-msgstr ""
+msgstr "Forfatter"
#: mappingdialog.ui
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Type"
-msgstr ""
+msgstr "_Type"
#: mappingdialog.ui
msgctxt ""
@@ -383,7 +383,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Year"
-msgstr ""
+msgstr "_År"
#: mappingdialog.ui
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tit_le"
-msgstr ""
+msgstr "Tittel"
#: mappingdialog.ui
msgctxt ""
@@ -401,7 +401,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "A_ddress"
-msgstr ""
+msgstr "Adresse"
#: mappingdialog.ui
msgctxt ""
@@ -410,7 +410,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_ISBN"
-msgstr ""
+msgstr "_ISBN"
#: mappingdialog.ui
msgctxt ""
@@ -419,7 +419,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pa_ge(s)"
-msgstr ""
+msgstr "Side(r)"
#: mappingdialog.ui
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ed_ition"
-msgstr ""
+msgstr "Utgave"
#: mappingdialog.ui
msgctxt ""
@@ -437,7 +437,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Book title"
-msgstr ""
+msgstr "_Boktittel"
#: mappingdialog.ui
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Volume"
-msgstr ""
+msgstr "Utgave"
#: mappingdialog.ui
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Publication t_ype"
-msgstr ""
+msgstr "_Publikasjonstype"
#: mappingdialog.ui
msgctxt ""
@@ -464,7 +464,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Organi_zation"
-msgstr ""
+msgstr "Organisasjon"
#: mappingdialog.ui
msgctxt ""
@@ -473,7 +473,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Instit_ution"
-msgstr ""
+msgstr "Institusjon"
#: mappingdialog.ui
msgctxt ""
@@ -482,7 +482,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Uni_versity"
-msgstr ""
+msgstr "Universitet"
#: mappingdialog.ui
msgctxt ""
@@ -491,7 +491,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Type of re_port"
-msgstr ""
+msgstr "Rapporttype"
#: mappingdialog.ui
msgctxt ""
@@ -500,7 +500,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Month"
-msgstr ""
+msgstr "_Måned"
#: mappingdialog.ui
msgctxt ""
@@ -509,7 +509,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Journal"
-msgstr ""
+msgstr "_Journal"
#: mappingdialog.ui
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Numb_er"
-msgstr ""
+msgstr "Tall"
#: mappingdialog.ui
msgctxt ""
@@ -527,7 +527,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Se_ries"
-msgstr ""
+msgstr "Serier"
#: mappingdialog.ui
msgctxt ""
@@ -536,7 +536,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ann_otation"
-msgstr ""
+msgstr "Merknader"
#: mappingdialog.ui
msgctxt ""
@@ -545,7 +545,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Note"
-msgstr ""
+msgstr "Merknad"
#: mappingdialog.ui
msgctxt ""
@@ -554,7 +554,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "URL"
-msgstr ""
+msgstr "URL"
#: mappingdialog.ui
msgctxt ""
@@ -563,7 +563,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "User-defined field _1"
-msgstr ""
+msgstr "Bruker definert felt_1"
#: mappingdialog.ui
msgctxt ""
@@ -572,7 +572,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "User-defined field _2"
-msgstr ""
+msgstr "Brukerdefinert felt_2"
#: mappingdialog.ui
msgctxt ""
@@ -581,7 +581,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "User-defined field _3"
-msgstr ""
+msgstr "Brukerdefinert felt_3"
#: mappingdialog.ui
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "User-defined field _4"
-msgstr ""
+msgstr "Brukerdefinert felt_4"
#: mappingdialog.ui
msgctxt ""
@@ -599,7 +599,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "User-defined field _5"
-msgstr ""
+msgstr "Brukerdefinert felt_5"
#: mappingdialog.ui
msgctxt ""
@@ -608,4 +608,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "Column Names"
-msgstr ""
+msgstr "Kolonnenavn"
diff --git a/source/nb/extensions/uiconfig/scanner/ui.po b/source/nb/extensions/uiconfig/scanner/ui.po
index 3ea643dac34..09979a0fe5d 100644
--- a/source/nb/extensions/uiconfig/scanner/ui.po
+++ b/source/nb/extensions/uiconfig/scanner/ui.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-02-19 21:46+0000\n"
-"Last-Translator: Olav <odahlum@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 21:42+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\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.5.1\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1424382370.000000\n"
+"X-POOTLE-MTIME: 1457473373.000000\n"
#: griddialog.ui
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Linear ascending"
-msgstr ""
+msgstr "Lineært stigende"
#: griddialog.ui
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Linear descending"
-msgstr ""
+msgstr "Lineært synkende"
#: griddialog.ui
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Set"
-msgstr ""
+msgstr "_Sett"
#: sanedialog.ui
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Se_t"
-msgstr ""
+msgstr "Sett"
#: sanedialog.ui
msgctxt ""
diff --git a/source/nb/extensions/uiconfig/spropctrlr/ui.po b/source/nb/extensions/uiconfig/spropctrlr/ui.po
index 8c64b719d46..a29798050a2 100644
--- a/source/nb/extensions/uiconfig/spropctrlr/ui.po
+++ b/source/nb/extensions/uiconfig/spropctrlr/ui.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-02-19 21:46+0000\n"
-"Last-Translator: Olav <odahlum@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 21:43+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\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.5.1\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1424382370.000000\n"
+"X-POOTLE-MTIME: 1457473384.000000\n"
#: controlfontdialog.ui
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
-msgstr ""
+msgstr "Delskjemaer kan brukes til å vise detaljerte data om den valgte posten i hovedskjemaet. Du kan sette opp skjemaet ved å velge hvilke kolonner i delskjemaet som tilsvarer kolonnene i hovedskjemaet."
#: formlinksdialog.ui
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "These are control fields that can be used as label fields for the $controlclass$ $controlname$."
-msgstr ""
+msgstr "Disse kontrollfeltene kan brukes som etikettfelt for $controlclass$ $controlname$."
#: labelselectiondialog.ui
msgctxt ""
diff --git a/source/nb/extras/source/autocorr/emoji.po b/source/nb/extras/source/autocorr/emoji.po
index 79cabf919bb..4a61887eee0 100644
--- a/source/nb/extras/source/autocorr/emoji.po
+++ b/source/nb/extras/source/autocorr/emoji.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: 2015-06-26 02:15+0000\n"
+"PO-Revision-Date: 2016-03-08 21:51+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435284914.000000\n"
+"X-POOTLE-MTIME: 1457473913.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -23,7 +23,7 @@ msgctxt ""
"CENT_SIGN\n"
"LngText.text"
msgid "cent"
-msgstr ""
+msgstr "cent"
#. £ (U+000A3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -32,7 +32,7 @@ msgctxt ""
"POUND_SIGN\n"
"LngText.text"
msgid "pound"
-msgstr ""
+msgstr "pund"
#. ¥ (U+000A5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -41,7 +41,7 @@ msgctxt ""
"YEN_SIGN\n"
"LngText.text"
msgid "yen"
-msgstr ""
+msgstr "yen"
#. § (U+000A7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -50,7 +50,7 @@ msgctxt ""
"SECTION_SIGN\n"
"LngText.text"
msgid "section"
-msgstr ""
+msgstr "seksjon"
#. © (U+000A9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -59,7 +59,7 @@ msgctxt ""
"COPYRIGHT_SIGN\n"
"LngText.text"
msgid "copyright"
-msgstr ""
+msgstr "opphavsrett"
#. ¬ (U+000AC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -68,7 +68,7 @@ msgctxt ""
"NOT_SIGN\n"
"LngText.text"
msgid "not"
-msgstr ""
+msgstr "ikke"
#. ® (U+000AE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -77,7 +77,7 @@ msgctxt ""
"REGISTERED_SIGN\n"
"LngText.text"
msgid "registered"
-msgstr ""
+msgstr "registrert"
#. ° (U+000B0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -86,7 +86,7 @@ msgctxt ""
"DEGREE_SIGN\n"
"LngText.text"
msgid "degree"
-msgstr ""
+msgstr "grad"
#. ± (U+000B1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -95,7 +95,7 @@ msgctxt ""
"PLUS-MINUS_SIGN\n"
"LngText.text"
msgid "+-"
-msgstr ""
+msgstr "+-"
#. · (U+000B7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -104,7 +104,7 @@ msgctxt ""
"MIDDLE_DOT\n"
"LngText.text"
msgid "middle dot"
-msgstr ""
+msgstr "midtre prikk"
#. × (U+000D7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -113,7 +113,7 @@ msgctxt ""
"MULTIPLICATION_SIGN\n"
"LngText.text"
msgid "x"
-msgstr ""
+msgstr "x"
#. Α (U+00391), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -122,7 +122,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_ALPHA\n"
"LngText.text"
msgid "Alpha"
-msgstr ""
+msgstr "Alfa"
#. Β (U+00392), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -131,7 +131,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_BETA\n"
"LngText.text"
msgid "Beta"
-msgstr ""
+msgstr "Beta"
#. Γ (U+00393), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -140,7 +140,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_GAMMA\n"
"LngText.text"
msgid "Gamma"
-msgstr ""
+msgstr "Gamma"
#. Δ (U+00394), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -149,7 +149,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_DELTA\n"
"LngText.text"
msgid "Delta"
-msgstr ""
+msgstr "Delta"
#. Ε (U+00395), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -158,7 +158,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_EPSILON\n"
"LngText.text"
msgid "Epsilon"
-msgstr ""
+msgstr "Epsilon"
#. Ζ (U+00396), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -167,7 +167,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_ZETA\n"
"LngText.text"
msgid "Zeta"
-msgstr ""
+msgstr "Zeta"
#. Η (U+00397), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -176,7 +176,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_ETA\n"
"LngText.text"
msgid "Eta"
-msgstr ""
+msgstr "Eta"
#. Θ (U+00398), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -185,7 +185,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_THETA\n"
"LngText.text"
msgid "Theta"
-msgstr ""
+msgstr "Theta"
#. Ι (U+00399), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -194,7 +194,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_IOTA\n"
"LngText.text"
msgid "Iota"
-msgstr ""
+msgstr "Iota"
#. Κ (U+0039A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -203,7 +203,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_KAPPA\n"
"LngText.text"
msgid "Kappa"
-msgstr ""
+msgstr "Kappa"
#. Λ (U+0039B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -212,7 +212,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_LAMDA\n"
"LngText.text"
msgid "Lambda"
-msgstr ""
+msgstr "Lambda"
#. Μ (U+0039C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -221,7 +221,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_MU\n"
"LngText.text"
msgid "Mu"
-msgstr ""
+msgstr "My"
#. Ν (U+0039D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -230,7 +230,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_NU\n"
"LngText.text"
msgid "Nu"
-msgstr ""
+msgstr "Ny"
#. Ξ (U+0039E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -239,7 +239,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_XI\n"
"LngText.text"
msgid "Xi"
-msgstr ""
+msgstr "Ksi"
#. Ο (U+0039F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -248,7 +248,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_OMICRON\n"
"LngText.text"
msgid "Omicron"
-msgstr ""
+msgstr "Omikron"
#. Π (U+003A0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -257,7 +257,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_PI\n"
"LngText.text"
msgid "Pi"
-msgstr ""
+msgstr "Pi"
#. Ρ (U+003A1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -266,7 +266,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_RHO\n"
"LngText.text"
msgid "Rho"
-msgstr ""
+msgstr "Rho"
#. Σ (U+003A3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -275,7 +275,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_SIGMA\n"
"LngText.text"
msgid "Sigma"
-msgstr ""
+msgstr "Sigma"
#. Τ (U+003A4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -284,7 +284,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_TAU\n"
"LngText.text"
msgid "Tau"
-msgstr ""
+msgstr "Tau"
#. Υ (U+003A5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -293,7 +293,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_UPSILON\n"
"LngText.text"
msgid "Upsilon"
-msgstr ""
+msgstr "Ypsilon"
#. Φ (U+003A6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -302,7 +302,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_PHI\n"
"LngText.text"
msgid "Phi"
-msgstr ""
+msgstr "Fi"
#. Χ (U+003A7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -311,7 +311,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_CHI\n"
"LngText.text"
msgid "Chi"
-msgstr ""
+msgstr "Chi"
#. Ψ (U+003A8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -320,7 +320,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_PSI\n"
"LngText.text"
msgid "Psi"
-msgstr ""
+msgstr "Psi"
#. Ω (U+003A9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -329,7 +329,7 @@ msgctxt ""
"GREEK_CAPITAL_LETTER_OMEGA\n"
"LngText.text"
msgid "Omega"
-msgstr ""
+msgstr "Omega"
#. α (U+003B1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -338,7 +338,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_ALPHA\n"
"LngText.text"
msgid "alpha"
-msgstr ""
+msgstr "alfa"
#. β (U+003B2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -347,7 +347,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_BETA\n"
"LngText.text"
msgid "beta"
-msgstr ""
+msgstr "beta"
#. γ (U+003B3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -356,7 +356,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_GAMMA\n"
"LngText.text"
msgid "gamma"
-msgstr ""
+msgstr "gamma"
#. δ (U+003B4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -365,7 +365,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_DELTA\n"
"LngText.text"
msgid "delta"
-msgstr ""
+msgstr "delta"
#. ε (U+003B5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -374,7 +374,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_EPSILON\n"
"LngText.text"
msgid "epsilon"
-msgstr ""
+msgstr "epsilon"
#. ζ (U+003B6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -383,7 +383,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_ZETA\n"
"LngText.text"
msgid "zeta"
-msgstr ""
+msgstr "zeta"
#. η (U+003B7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -392,7 +392,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_ETA\n"
"LngText.text"
msgid "eta"
-msgstr ""
+msgstr "eta"
#. θ (U+003B8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -401,7 +401,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_THETA\n"
"LngText.text"
msgid "theta"
-msgstr ""
+msgstr "theta"
#. ι (U+003B9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -410,7 +410,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_IOTA\n"
"LngText.text"
msgid "iota"
-msgstr ""
+msgstr "iota"
#. κ (U+003BA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -419,7 +419,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_KAPPA\n"
"LngText.text"
msgid "kappa"
-msgstr ""
+msgstr "kappa"
#. λ (U+003BB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -428,7 +428,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_LAMDA\n"
"LngText.text"
msgid "lambda"
-msgstr ""
+msgstr "lambda"
#. μ (U+003BC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -437,7 +437,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_MU\n"
"LngText.text"
msgid "mu"
-msgstr ""
+msgstr "my"
#. ν (U+003BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -446,7 +446,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_NU\n"
"LngText.text"
msgid "nu"
-msgstr ""
+msgstr "ny"
#. ξ (U+003BE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -455,7 +455,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_XI\n"
"LngText.text"
msgid "xi"
-msgstr ""
+msgstr "ksi"
#. ο (U+003BF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -464,7 +464,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_OMICRON\n"
"LngText.text"
msgid "omicron"
-msgstr ""
+msgstr "omikron"
#. π (U+003C0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -473,7 +473,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_PI\n"
"LngText.text"
msgid "pi"
-msgstr ""
+msgstr "pi"
#. ρ (U+003C1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -482,7 +482,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_RHO\n"
"LngText.text"
msgid "rho"
-msgstr ""
+msgstr "rho"
#. ς (U+003C2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -491,7 +491,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_FINAL_SIGMA\n"
"LngText.text"
msgid "sigma2"
-msgstr ""
+msgstr "sigma2"
#. σ (U+003C3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -500,7 +500,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_SIGMA\n"
"LngText.text"
msgid "sigma"
-msgstr ""
+msgstr "sigma"
#. τ (U+003C4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -509,7 +509,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_TAU\n"
"LngText.text"
msgid "tau"
-msgstr ""
+msgstr "tau"
#. υ (U+003C5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -518,7 +518,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_UPSILON\n"
"LngText.text"
msgid "upsilon"
-msgstr ""
+msgstr "ypsilon"
#. φ (U+003C6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -527,7 +527,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_PHI\n"
"LngText.text"
msgid "phi"
-msgstr ""
+msgstr "phi"
#. χ (U+003C7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -536,7 +536,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_CHI\n"
"LngText.text"
msgid "chi"
-msgstr ""
+msgstr "chi"
#. ψ (U+003C8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -545,7 +545,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_PSI\n"
"LngText.text"
msgid "psi"
-msgstr ""
+msgstr "psi"
#. ω (U+003C9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -554,7 +554,7 @@ msgctxt ""
"GREEK_SMALL_LETTER_OMEGA\n"
"LngText.text"
msgid "omega"
-msgstr ""
+msgstr "omega"
#. ฿ (U+00E3F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -563,11 +563,10 @@ msgctxt ""
"THAI_CURRENCY_SYMBOL_BAHT\n"
"LngText.text"
msgid "baht"
-msgstr ""
+msgstr "baht"
#. – (U+02013), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"EN_DASH\n"
@@ -577,7 +576,6 @@ msgstr "--"
#. — (U+02014), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"EM_DASH\n"
@@ -587,7 +585,6 @@ msgstr "---"
#. ’ (U+02019), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"RIGHT_SINGLE_QUOTATION_MARK\n"
@@ -602,7 +599,7 @@ msgctxt ""
"DAGGER\n"
"LngText.text"
msgid "dagger"
-msgstr ""
+msgstr "dolk"
#. ‡ (U+02021), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -611,7 +608,7 @@ msgctxt ""
"DOUBLE_DAGGER\n"
"LngText.text"
msgid "dagger2"
-msgstr ""
+msgstr "dolk2"
#. • (U+02022), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -620,7 +617,7 @@ msgctxt ""
"BULLET\n"
"LngText.text"
msgid "bullet"
-msgstr ""
+msgstr "kuletegn"
#. ‣ (U+02023), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -629,11 +626,10 @@ msgctxt ""
"TRIANGULAR_BULLET\n"
"LngText.text"
msgid "bullet2"
-msgstr ""
+msgstr "punkttegn2"
#. … (U+02026), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"HORIZONTAL_ELLIPSIS\n"
@@ -648,7 +644,7 @@ msgctxt ""
"PER_MILLE_SIGN\n"
"LngText.text"
msgid "per mille"
-msgstr ""
+msgstr "promille"
#. ‱ (U+02031), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -657,7 +653,7 @@ msgctxt ""
"PER_TEN_THOUSAND_SIGN\n"
"LngText.text"
msgid "basis point"
-msgstr ""
+msgstr "basispunkt"
#. ′ (U+02032), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -666,7 +662,7 @@ msgctxt ""
"PRIME\n"
"LngText.text"
msgid "prime"
-msgstr ""
+msgstr "primtegn"
#. ″ (U+02033), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -675,11 +671,10 @@ msgctxt ""
"DOUBLE_PRIME\n"
"LngText.text"
msgid "inch"
-msgstr ""
+msgstr "tomme"
#. ‼ (U+0203C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"DOUBLE_EXCLAMATION_MARK\n"
@@ -689,7 +684,6 @@ msgstr "!!"
#. ⁉ (U+02049), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"EXCLAMATION_QUESTION_MARK\n"
@@ -704,7 +698,7 @@ msgctxt ""
"LIRA_SIGN\n"
"LngText.text"
msgid "lira"
-msgstr ""
+msgstr "lire"
#. ₩ (U+020A9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -713,7 +707,7 @@ msgctxt ""
"WON_SIGN\n"
"LngText.text"
msgid "won"
-msgstr ""
+msgstr "won"
#. ₪ (U+020AA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -722,7 +716,7 @@ msgctxt ""
"NEW_SHEQEL_SIGN\n"
"LngText.text"
msgid "shekel"
-msgstr ""
+msgstr "shekel"
#. € (U+020AC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -731,7 +725,7 @@ msgctxt ""
"EURO_SIGN\n"
"LngText.text"
msgid "euro"
-msgstr ""
+msgstr "euro"
#. ₱ (U+020B1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -740,7 +734,7 @@ msgctxt ""
"PESO_SIGN\n"
"LngText.text"
msgid "peso"
-msgstr ""
+msgstr "peso"
#. ₴ (U+020B4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -749,7 +743,7 @@ msgctxt ""
"HRYVNIA_SIGN\n"
"LngText.text"
msgid "hryvnia"
-msgstr ""
+msgstr "hryvnia"
#. ₹ (U+020B9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -758,7 +752,7 @@ msgctxt ""
"INDIAN_RUPEE_SIGN\n"
"LngText.text"
msgid "rupee"
-msgstr ""
+msgstr "rupi"
#. ₺ (U+020BA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -767,7 +761,7 @@ msgctxt ""
"TURKISH_LIRA_SIGN\n"
"LngText.text"
msgid "Turkish lira"
-msgstr ""
+msgstr "Tyrkisk lire"
#. ™ (U+02122), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -776,7 +770,7 @@ msgctxt ""
"TRADE_MARK_SIGN\n"
"LngText.text"
msgid "tm"
-msgstr ""
+msgstr "TM"
#. ℹ (U+02139), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -785,7 +779,7 @@ msgctxt ""
"INFORMATION_SOURCE\n"
"LngText.text"
msgid "information"
-msgstr ""
+msgstr "informasjon"
#. ← (U+02190), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -794,7 +788,7 @@ msgctxt ""
"LEFTWARDS_ARROW\n"
"LngText.text"
msgid "W"
-msgstr ""
+msgstr "W"
#. ↑ (U+02191), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -803,7 +797,7 @@ msgctxt ""
"UPWARDS_ARROW\n"
"LngText.text"
msgid "N"
-msgstr ""
+msgstr "N"
#. → (U+02192), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -812,7 +806,7 @@ msgctxt ""
"RIGHTWARDS_ARROW\n"
"LngText.text"
msgid "E"
-msgstr ""
+msgstr "E"
#. ↓ (U+02193), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -821,7 +815,7 @@ msgctxt ""
"DOWNWARDS_ARROW\n"
"LngText.text"
msgid "S"
-msgstr ""
+msgstr "S"
#. ↔ (U+02194), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -830,7 +824,7 @@ msgctxt ""
"LEFT_RIGHT_ARROW\n"
"LngText.text"
msgid "EW"
-msgstr ""
+msgstr "AV"
#. ↕ (U+02195), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -839,7 +833,7 @@ msgctxt ""
"UP_DOWN_ARROW\n"
"LngText.text"
msgid "NS"
-msgstr ""
+msgstr "NS"
#. ↖ (U+02196), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -848,7 +842,7 @@ msgctxt ""
"NORTH_WEST_ARROW\n"
"LngText.text"
msgid "NW"
-msgstr ""
+msgstr "NV"
#. ↗ (U+02197), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -857,7 +851,7 @@ msgctxt ""
"NORTH_EAST_ARROW\n"
"LngText.text"
msgid "NE"
-msgstr ""
+msgstr "NØ"
#. ↘ (U+02198), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -866,7 +860,7 @@ msgctxt ""
"SOUTH_EAST_ARROW\n"
"LngText.text"
msgid "SE"
-msgstr ""
+msgstr "SØ"
#. ↙ (U+02199), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -875,7 +869,7 @@ msgctxt ""
"SOUTH_WEST_ARROW\n"
"LngText.text"
msgid "SW"
-msgstr ""
+msgstr "SV"
#. ⇐ (U+021D0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -884,7 +878,7 @@ msgctxt ""
"LEFTWARDS_DOUBLE_ARROW\n"
"LngText.text"
msgid "W2"
-msgstr ""
+msgstr "V2"
#. ⇑ (U+021D1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -893,7 +887,7 @@ msgctxt ""
"UPWARDS_DOUBLE_ARROW\n"
"LngText.text"
msgid "N2"
-msgstr ""
+msgstr "N2"
#. ⇒ (U+021D2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -902,7 +896,7 @@ msgctxt ""
"RIGHTWARDS_DOUBLE_ARROW\n"
"LngText.text"
msgid "E2"
-msgstr ""
+msgstr "Ø2"
#. ⇓ (U+021D3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -911,7 +905,7 @@ msgctxt ""
"DOWNWARDS_DOUBLE_ARROW\n"
"LngText.text"
msgid "S2"
-msgstr ""
+msgstr "S2"
#. ⇔ (U+021D4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -920,7 +914,7 @@ msgctxt ""
"LEFT_RIGHT_DOUBLE_ARROW\n"
"LngText.text"
msgid "EW2"
-msgstr ""
+msgstr "ØV2"
#. ⇕ (U+021D5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -929,7 +923,7 @@ msgctxt ""
"UP_DOWN_DOUBLE_ARROW\n"
"LngText.text"
msgid "NS2"
-msgstr ""
+msgstr "NS2"
#. ⇖ (U+021D6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -938,7 +932,7 @@ msgctxt ""
"NORTH_WEST_DOUBLE_ARROW\n"
"LngText.text"
msgid "NW2"
-msgstr ""
+msgstr "NV2"
#. ⇗ (U+021D7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -947,7 +941,7 @@ msgctxt ""
"NORTH_EAST_DOUBLE_ARROW\n"
"LngText.text"
msgid "NE2"
-msgstr ""
+msgstr "NØ2"
#. ⇘ (U+021D8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -956,7 +950,7 @@ msgctxt ""
"SOUTH_EAST_DOUBLE_ARROW\n"
"LngText.text"
msgid "SE2"
-msgstr ""
+msgstr "SØ2"
#. ⇙ (U+021D9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -965,7 +959,7 @@ msgctxt ""
"SOUTH_WEST_DOUBLE_ARROW\n"
"LngText.text"
msgid "SW2"
-msgstr ""
+msgstr "SV2"
#. ∀ (U+02200), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -974,7 +968,7 @@ msgctxt ""
"FOR_ALL\n"
"LngText.text"
msgid "for all"
-msgstr ""
+msgstr "for alle"
#. ∂ (U+02202), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -983,7 +977,7 @@ msgctxt ""
"PARTIAL_DIFFERENTIAL\n"
"LngText.text"
msgid "partial"
-msgstr ""
+msgstr "delvis"
#. ∃ (U+02203), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -992,7 +986,7 @@ msgctxt ""
"THERE_EXISTS\n"
"LngText.text"
msgid "exists"
-msgstr ""
+msgstr "finnes"
#. ∄ (U+02204), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1001,7 +995,7 @@ msgctxt ""
"THERE_DOES_NOT_EXIST\n"
"LngText.text"
msgid "not exists"
-msgstr ""
+msgstr "finnes ikke"
#. ∅ (U+02205), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1010,7 +1004,7 @@ msgctxt ""
"EMPTY_SET\n"
"LngText.text"
msgid "empty set"
-msgstr ""
+msgstr "tom mengde"
#. ∈ (U+02208), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1019,7 +1013,7 @@ msgctxt ""
"ELEMENT_OF\n"
"LngText.text"
msgid "in"
-msgstr ""
+msgstr "in"
#. ∉ (U+02209), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1028,7 +1022,7 @@ msgctxt ""
"NOT_AN_ELEMENT_OF\n"
"LngText.text"
msgid "not in"
-msgstr ""
+msgstr "ikke i"
#. ∊ (U+0220A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1037,7 +1031,7 @@ msgctxt ""
"SMALL_ELEMENT_OF\n"
"LngText.text"
msgid "small in"
-msgstr ""
+msgstr "lite element"
#. ∋ (U+0220B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1046,7 +1040,7 @@ msgctxt ""
"CONTAINS_AS_MEMBER\n"
"LngText.text"
msgid "ni"
-msgstr ""
+msgstr "inneholder"
#. ∌ (U+0220C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1055,7 +1049,7 @@ msgctxt ""
"DOES_NOT_CONTAIN_AS_MEMBER\n"
"LngText.text"
msgid "not ni"
-msgstr ""
+msgstr "inneholder ikke"
#. ∍ (U+0220D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1064,7 +1058,7 @@ msgctxt ""
"SMALL_CONTAINS_AS_MEMBER\n"
"LngText.text"
msgid "small ni"
-msgstr ""
+msgstr "lite innehold"
#. ∎ (U+0220E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1073,7 +1067,7 @@ msgctxt ""
"END_OF_PROOF\n"
"LngText.text"
msgid "end of proof"
-msgstr ""
+msgstr "bevisslutt"
#. ∏ (U+0220F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1082,7 +1076,7 @@ msgctxt ""
"N-ARY_PRODUCT\n"
"LngText.text"
msgid "product"
-msgstr ""
+msgstr "produkt"
#. ∑ (U+02211), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1091,11 +1085,10 @@ msgctxt ""
"N-ARY_SUMMATION\n"
"LngText.text"
msgid "sum"
-msgstr ""
+msgstr "summer"
#. − (U+02212), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"MINUS_SIGN\n"
@@ -1110,11 +1103,10 @@ msgctxt ""
"MINUS-OR-PLUS_SIGN\n"
"LngText.text"
msgid "-+"
-msgstr ""
+msgstr "-+"
#. ∕ (U+02215), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"DIVISION_SLASH\n"
@@ -1124,7 +1116,6 @@ msgstr "/"
#. ∖ (U+02216), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"SET_MINUS\n"
@@ -1139,7 +1130,7 @@ msgctxt ""
"SQUARE_ROOT\n"
"LngText.text"
msgid "sqrt"
-msgstr ""
+msgstr "kvadratrot"
#. ∛ (U+0221B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1148,7 +1139,7 @@ msgctxt ""
"CUBE_ROOT\n"
"LngText.text"
msgid "cube root"
-msgstr ""
+msgstr "kubikkrot"
#. ∜ (U+0221C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1157,7 +1148,7 @@ msgctxt ""
"FOURTH_ROOT\n"
"LngText.text"
msgid "fourth root"
-msgstr ""
+msgstr "fjerde rot"
#. ∞ (U+0221E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1166,7 +1157,7 @@ msgctxt ""
"INFINITY\n"
"LngText.text"
msgid "infinity"
-msgstr ""
+msgstr "uendelig"
#. ∠ (U+02220), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1175,7 +1166,7 @@ msgctxt ""
"ANGLE\n"
"LngText.text"
msgid "angle"
-msgstr ""
+msgstr "vinkel"
#. ∡ (U+02221), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1184,7 +1175,7 @@ msgctxt ""
"MEASURED_ANGLE\n"
"LngText.text"
msgid "angle2"
-msgstr ""
+msgstr "vinkel2"
#. ∣ (U+02223), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1193,7 +1184,7 @@ msgctxt ""
"DIVIDES\n"
"LngText.text"
msgid "divides"
-msgstr ""
+msgstr "deler"
#. ∤ (U+02224), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1202,7 +1193,7 @@ msgctxt ""
"DOES_NOT_DIVIDE\n"
"LngText.text"
msgid "not divides"
-msgstr ""
+msgstr "deler ikke"
#. ∥ (U+02225), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1211,7 +1202,7 @@ msgctxt ""
"PARALLEL_TO\n"
"LngText.text"
msgid "parallel"
-msgstr ""
+msgstr "parallell"
#. ∦ (U+02226), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1220,7 +1211,7 @@ msgctxt ""
"NOT_PARALLEL_TO\n"
"LngText.text"
msgid "nparallel"
-msgstr ""
+msgstr "ikke parallell"
#. ∧ (U+02227), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1229,7 +1220,7 @@ msgctxt ""
"LOGICAL_AND\n"
"LngText.text"
msgid "and"
-msgstr ""
+msgstr "og"
#. ∨ (U+02228), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1238,7 +1229,7 @@ msgctxt ""
"LOGICAL_OR\n"
"LngText.text"
msgid "or"
-msgstr ""
+msgstr "eller"
#. ∩ (U+02229), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1247,7 +1238,7 @@ msgctxt ""
"INTERSECTION\n"
"LngText.text"
msgid "intersection"
-msgstr ""
+msgstr "snitt"
#. ∪ (U+0222A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1256,7 +1247,7 @@ msgctxt ""
"UNION\n"
"LngText.text"
msgid "union"
-msgstr ""
+msgstr "union"
#. ∫ (U+0222B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1265,7 +1256,7 @@ msgctxt ""
"INTEGRAL\n"
"LngText.text"
msgid "integral"
-msgstr ""
+msgstr "integral"
#. ∬ (U+0222C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1274,7 +1265,7 @@ msgctxt ""
"DOUBLE_INTEGRAL\n"
"LngText.text"
msgid "integral2"
-msgstr ""
+msgstr "integral2"
#. ∭ (U+0222D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1283,7 +1274,7 @@ msgctxt ""
"TRIPLE_INTEGRAL\n"
"LngText.text"
msgid "integral3"
-msgstr ""
+msgstr "integral3"
#. ∮ (U+0222E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1292,7 +1283,7 @@ msgctxt ""
"CONTOUR_INTEGRAL\n"
"LngText.text"
msgid "integral4"
-msgstr ""
+msgstr "integral4"
#. ∰ (U+02230), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1301,7 +1292,7 @@ msgctxt ""
"VOLUME_INTEGRAL\n"
"LngText.text"
msgid "integral5"
-msgstr ""
+msgstr "integral5"
#. ≈ (U+02248), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1310,7 +1301,7 @@ msgctxt ""
"ALMOST_EQUAL_TO\n"
"LngText.text"
msgid "~"
-msgstr ""
+msgstr "~"
#. ≠ (U+02260), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1319,7 +1310,7 @@ msgctxt ""
"NOT_EQUAL_TO\n"
"LngText.text"
msgid "not equal"
-msgstr ""
+msgstr "ikke lik"
#. ≤ (U+02264), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1328,7 +1319,7 @@ msgctxt ""
"LESS-THAN_OR_EQUAL_TO\n"
"LngText.text"
msgid "<="
-msgstr ""
+msgstr "<="
#. ≥ (U+02265), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1337,11 +1328,10 @@ msgctxt ""
"GREATER-THAN_OR_EQUAL_TO\n"
"LngText.text"
msgid ">="
-msgstr ""
+msgstr ">="
#. ≪ (U+0226A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"MUCH_LESS-THAN\n"
@@ -1351,7 +1341,6 @@ msgstr "<<"
#. ≫ (U+0226B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"MUCH_GREATER-THAN\n"
@@ -1366,7 +1355,7 @@ msgctxt ""
"SUBSET_OF\n"
"LngText.text"
msgid "subset"
-msgstr ""
+msgstr "delmengde"
#. ⊃ (U+02283), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1375,7 +1364,7 @@ msgctxt ""
"SUPERSET_OF\n"
"LngText.text"
msgid "superset"
-msgstr ""
+msgstr "grunnmengde"
#. ⊄ (U+02284), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1384,7 +1373,7 @@ msgctxt ""
"NOT_A_SUBSET_OF\n"
"LngText.text"
msgid "not subset"
-msgstr ""
+msgstr "ikke delmengde"
#. ⊅ (U+02285), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1393,7 +1382,7 @@ msgctxt ""
"NOT_A_SUPERSET_OF\n"
"LngText.text"
msgid "not superset"
-msgstr ""
+msgstr "ikke grunnmengde"
#. ⊿ (U+022BF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1402,7 +1391,7 @@ msgctxt ""
"RIGHT_TRIANGLE\n"
"LngText.text"
msgid "right triangle"
-msgstr ""
+msgstr "rettvinklet trekant"
#. ⌚ (U+0231A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1411,7 +1400,7 @@ msgctxt ""
"WATCH\n"
"LngText.text"
msgid "watch"
-msgstr ""
+msgstr "klokke"
#. ⌛ (U+0231B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1420,7 +1409,7 @@ msgctxt ""
"HOURGLASS\n"
"LngText.text"
msgid "hourglass"
-msgstr ""
+msgstr "timeglass"
#. ⌨ (U+02328), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1429,7 +1418,7 @@ msgctxt ""
"KEYBOARD\n"
"LngText.text"
msgid "keyboard"
-msgstr ""
+msgstr "tastatur"
#. ⏢ (U+023E2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1438,7 +1427,7 @@ msgctxt ""
"WHITE_TRAPEZIUM\n"
"LngText.text"
msgid "trapezium"
-msgstr ""
+msgstr "trapes"
#. ⏰ (U+023F0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1447,7 +1436,7 @@ msgctxt ""
"ALARM_CLOCK\n"
"LngText.text"
msgid "alarm clock"
-msgstr ""
+msgstr "alarmklokke"
#. ⏱ (U+023F1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1456,7 +1445,7 @@ msgctxt ""
"STOPWATCH\n"
"LngText.text"
msgid "stopwatch"
-msgstr ""
+msgstr "stoppeklokke"
#. ⏲ (U+023F2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1465,7 +1454,7 @@ msgctxt ""
"TIMER_CLOCK\n"
"LngText.text"
msgid "timer clock"
-msgstr ""
+msgstr "tidsur"
#. ⏳ (U+023F3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1474,7 +1463,7 @@ msgctxt ""
"HOURGLASS_WITH_FLOWING_SAND\n"
"LngText.text"
msgid "hourglass2"
-msgstr ""
+msgstr "timeglass2"
#. ■ (U+025A0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1483,7 +1472,7 @@ msgctxt ""
"BLACK_SQUARE\n"
"LngText.text"
msgid "square2"
-msgstr ""
+msgstr "kvadrat2"
#. □ (U+025A1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1492,7 +1481,7 @@ msgctxt ""
"WHITE_SQUARE\n"
"LngText.text"
msgid "square"
-msgstr ""
+msgstr "kvadrat"
#. ▪ (U+025AA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1501,7 +1490,7 @@ msgctxt ""
"BLACK_SMALL_SQUARE\n"
"LngText.text"
msgid "small square2"
-msgstr ""
+msgstr "lite kvadrat2"
#. ▫ (U+025AB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1510,7 +1499,7 @@ msgctxt ""
"WHITE_SMALL_SQUARE\n"
"LngText.text"
msgid "small square"
-msgstr ""
+msgstr "lite kvadrat"
#. ▬ (U+025AC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1519,7 +1508,7 @@ msgctxt ""
"BLACK_RECTANGLE\n"
"LngText.text"
msgid "rectangle2"
-msgstr ""
+msgstr "rektangel2"
#. ▭ (U+025AD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1528,7 +1517,7 @@ msgctxt ""
"WHITE_RECTANGLE\n"
"LngText.text"
msgid "rectangle"
-msgstr ""
+msgstr "rektangel"
#. ▰ (U+025B0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1537,7 +1526,7 @@ msgctxt ""
"BLACK_PARALLELOGRAM\n"
"LngText.text"
msgid "parallelogram2"
-msgstr ""
+msgstr "parallellogram2"
#. ▱ (U+025B1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1546,7 +1535,7 @@ msgctxt ""
"WHITE_PARALLELOGRAM\n"
"LngText.text"
msgid "parallelogram"
-msgstr ""
+msgstr "parallellogram"
#. ▲ (U+025B2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1555,7 +1544,7 @@ msgctxt ""
"BLACK_UP-POINTING_TRIANGLE\n"
"LngText.text"
msgid "triangle2"
-msgstr ""
+msgstr "trekant2"
#. △ (U+025B3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1564,7 +1553,7 @@ msgctxt ""
"WHITE_UP-POINTING_TRIANGLE\n"
"LngText.text"
msgid "triangle"
-msgstr ""
+msgstr "trekant"
#. ◊ (U+025CA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1573,7 +1562,7 @@ msgctxt ""
"LOZENGE\n"
"LngText.text"
msgid "lozenge"
-msgstr ""
+msgstr "pastill"
#. ○ (U+025CB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1582,7 +1571,7 @@ msgctxt ""
"WHITE_CIRCLE\n"
"LngText.text"
msgid "circle"
-msgstr ""
+msgstr "sirkel"
#. ● (U+025CF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1591,7 +1580,7 @@ msgctxt ""
"BLACK_CIRCLE\n"
"LngText.text"
msgid "circle2"
-msgstr ""
+msgstr "sirkel2"
#. ◦ (U+025E6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1600,7 +1589,7 @@ msgctxt ""
"WHITE_BULLET\n"
"LngText.text"
msgid "bullet3"
-msgstr ""
+msgstr "punkttegn3"
#. ◯ (U+025EF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1609,7 +1598,7 @@ msgctxt ""
"LARGE_CIRCLE\n"
"LngText.text"
msgid "large circle"
-msgstr ""
+msgstr "stor sirkel"
#. ◻ (U+025FB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1618,7 +1607,7 @@ msgctxt ""
"WHITE_MEDIUM_SQUARE\n"
"LngText.text"
msgid "medium square"
-msgstr ""
+msgstr "mellomstort kvadrat"
#. ◼ (U+025FC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1627,7 +1616,7 @@ msgctxt ""
"BLACK_MEDIUM_SQUARE\n"
"LngText.text"
msgid "medium square2"
-msgstr ""
+msgstr "mellomstort kvadrat2"
#. ◽ (U+025FD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1636,7 +1625,7 @@ msgctxt ""
"WHITE_MEDIUM_SMALL_SQUARE\n"
"LngText.text"
msgid "smaller square"
-msgstr ""
+msgstr "mindre kvadrat"
#. ◾ (U+025FE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1645,7 +1634,7 @@ msgctxt ""
"BLACK_MEDIUM_SMALL_SQUARE\n"
"LngText.text"
msgid "smaller square2"
-msgstr ""
+msgstr "mindre kvadrat2"
#. ☀ (U+02600), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1654,7 +1643,7 @@ msgctxt ""
"BLACK_SUN_WITH_RAYS\n"
"LngText.text"
msgid "sunny"
-msgstr ""
+msgstr "solskinn"
#. ☁ (U+02601), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1663,7 +1652,7 @@ msgctxt ""
"CLOUD\n"
"LngText.text"
msgid "cloud"
-msgstr ""
+msgstr "sky"
#. ☂ (U+02602), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1672,7 +1661,7 @@ msgctxt ""
"UMBRELLA\n"
"LngText.text"
msgid "umbrella"
-msgstr ""
+msgstr "paraply"
#. ☃ (U+02603), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1681,7 +1670,7 @@ msgctxt ""
"SNOWMAN\n"
"LngText.text"
msgid "snowman"
-msgstr ""
+msgstr "snømann"
#. ☄ (U+02604), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1690,7 +1679,7 @@ msgctxt ""
"COMET\n"
"LngText.text"
msgid "comet"
-msgstr ""
+msgstr "komet"
#. ★ (U+02605), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1699,7 +1688,7 @@ msgctxt ""
"BLACK_STAR\n"
"LngText.text"
msgid "star"
-msgstr ""
+msgstr "stjerne"
#. ☆ (U+02606), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1708,7 +1697,7 @@ msgctxt ""
"WHITE_STAR\n"
"LngText.text"
msgid "star2"
-msgstr ""
+msgstr "stjerne2"
#. ☇ (U+02607), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1717,7 +1706,7 @@ msgctxt ""
"LIGHTNING\n"
"LngText.text"
msgid "lighting"
-msgstr ""
+msgstr "lyn"
#. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1726,7 +1715,7 @@ msgctxt ""
"THUNDERSTORM\n"
"LngText.text"
msgid "storm"
-msgstr ""
+msgstr "storm"
#. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1735,7 +1724,7 @@ msgctxt ""
"SUN\n"
"LngText.text"
msgid "Sun"
-msgstr ""
+msgstr "Sol"
#. ☎ (U+0260E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1744,7 +1733,7 @@ msgctxt ""
"BLACK_TELEPHONE\n"
"LngText.text"
msgid "phone"
-msgstr ""
+msgstr "telefon"
#. ☏ (U+0260F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1753,7 +1742,7 @@ msgctxt ""
"WHITE_TELEPHONE\n"
"LngText.text"
msgid "phone2"
-msgstr ""
+msgstr "telefon2"
#. ☐ (U+02610), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1762,7 +1751,7 @@ msgctxt ""
"BALLOT_BOX\n"
"LngText.text"
msgid "checkbox"
-msgstr ""
+msgstr "avkryssingsboks"
#. ☑ (U+02611), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1771,7 +1760,7 @@ msgctxt ""
"BALLOT_BOX_WITH_CHECK\n"
"LngText.text"
msgid "checkbox2"
-msgstr ""
+msgstr "avkryssingsboks2"
#. ☒ (U+02612), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1780,7 +1769,7 @@ msgctxt ""
"BALLOT_BOX_WITH_X\n"
"LngText.text"
msgid "checkbox3"
-msgstr ""
+msgstr "avkryssingsboks3"
#. ☓ (U+02613), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1789,7 +1778,7 @@ msgctxt ""
"SALTIRE\n"
"LngText.text"
msgid "saltire"
-msgstr ""
+msgstr "andreaskors"
#. ☔ (U+02614), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1798,7 +1787,7 @@ msgctxt ""
"UMBRELLA_WITH_RAIN_DROPS\n"
"LngText.text"
msgid "rain"
-msgstr ""
+msgstr "regn"
#. ☕ (U+02615), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1807,7 +1796,7 @@ msgctxt ""
"HOT_BEVERAGE\n"
"LngText.text"
msgid "coffee"
-msgstr ""
+msgstr "kaffe"
#. ☚ (U+0261A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1816,7 +1805,7 @@ msgctxt ""
"BLACK_LEFT_POINTING_INDEX\n"
"LngText.text"
msgid "left3"
-msgstr ""
+msgstr "venstre2"
#. ☛ (U+0261B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1825,7 +1814,7 @@ msgctxt ""
"BLACK_RIGHT_POINTING_INDEX\n"
"LngText.text"
msgid "right3"
-msgstr ""
+msgstr "høyre3"
#. ☜ (U+0261C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1834,7 +1823,7 @@ msgctxt ""
"WHITE_LEFT_POINTING_INDEX\n"
"LngText.text"
msgid "left"
-msgstr ""
+msgstr "venstre"
#. ☝ (U+0261D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1843,7 +1832,7 @@ msgctxt ""
"WHITE_UP_POINTING_INDEX\n"
"LngText.text"
msgid "up"
-msgstr ""
+msgstr "opp"
#. ☞ (U+0261E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1852,7 +1841,7 @@ msgctxt ""
"WHITE_RIGHT_POINTING_INDEX\n"
"LngText.text"
msgid "right"
-msgstr ""
+msgstr "høyre"
#. ☟ (U+0261F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1861,7 +1850,7 @@ msgctxt ""
"WHITE_DOWN_POINTING_INDEX\n"
"LngText.text"
msgid "down"
-msgstr ""
+msgstr "ned"
#. ☠ (U+02620), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1870,7 +1859,7 @@ msgctxt ""
"SKULL_AND_CROSSBONES\n"
"LngText.text"
msgid "poison"
-msgstr ""
+msgstr "gift"
#. ☡ (U+02621), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1879,7 +1868,7 @@ msgctxt ""
"CAUTION_SIGN\n"
"LngText.text"
msgid "caution"
-msgstr ""
+msgstr "pass på"
#. ☢ (U+02622), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1888,7 +1877,7 @@ msgctxt ""
"RADIOACTIVE_SIGN\n"
"LngText.text"
msgid "radioactive"
-msgstr ""
+msgstr "radioaktiv"
#. ☣ (U+02623), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1897,7 +1886,7 @@ msgctxt ""
"BIOHAZARD_SIGN\n"
"LngText.text"
msgid "biohazard"
-msgstr ""
+msgstr "biofare"
#. ☤ (U+02624), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1906,7 +1895,7 @@ msgctxt ""
"CADUCEUS\n"
"LngText.text"
msgid "caduceus"
-msgstr ""
+msgstr "merkurstav"
#. ☥ (U+02625), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1915,7 +1904,7 @@ msgctxt ""
"ANKH\n"
"LngText.text"
msgid "ankh"
-msgstr ""
+msgstr "ankh"
#. ☦ (U+02626), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1924,7 +1913,7 @@ msgctxt ""
"ORTHODOX_CROSS\n"
"LngText.text"
msgid "orthodox cross"
-msgstr ""
+msgstr "ortodoks kors"
#. ☧ (U+02627), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1933,7 +1922,7 @@ msgctxt ""
"CHI_RHO\n"
"LngText.text"
msgid "chi rho"
-msgstr ""
+msgstr "chi rho"
#. ☨ (U+02628), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1942,7 +1931,7 @@ msgctxt ""
"CROSS_OF_LORRAINE\n"
"LngText.text"
msgid "cross of Lorraine"
-msgstr ""
+msgstr "lothringenkors"
#. ☩ (U+02629), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1951,7 +1940,7 @@ msgctxt ""
"CROSS_OF_JERUSALEM\n"
"LngText.text"
msgid "cross of Jerusalem"
-msgstr ""
+msgstr "jerusalemskors"
#. ☪ (U+0262A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1960,7 +1949,7 @@ msgctxt ""
"STAR_AND_CRESCENT\n"
"LngText.text"
msgid "star and crescent"
-msgstr ""
+msgstr "stjerne og halvmåne"
#. ☫ (U+0262B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1969,7 +1958,7 @@ msgctxt ""
"FARSI_SYMBOL\n"
"LngText.text"
msgid "Farsi"
-msgstr ""
+msgstr "Farsi"
#. ☬ (U+0262C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1978,7 +1967,7 @@ msgctxt ""
"ADI_SHAKTI\n"
"LngText.text"
msgid "Adi Shakti"
-msgstr ""
+msgstr "Adi Shakti"
#. ☭ (U+0262D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1987,7 +1976,7 @@ msgctxt ""
"HAMMER_AND_SICKLE\n"
"LngText.text"
msgid "hammer and sickle"
-msgstr ""
+msgstr "hammer og sigd"
#. ☮ (U+0262E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -1996,7 +1985,7 @@ msgctxt ""
"PEACE_SYMBOL\n"
"LngText.text"
msgid "peace"
-msgstr ""
+msgstr "fred"
#. ☯ (U+0262F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2005,7 +1994,7 @@ msgctxt ""
"YIN_YANG\n"
"LngText.text"
msgid "yin yang"
-msgstr ""
+msgstr "yin yang"
#. ☹ (U+02639), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2014,7 +2003,7 @@ msgctxt ""
"WHITE_FROWNING_FACE\n"
"LngText.text"
msgid "frown"
-msgstr ""
+msgstr "grimase"
#. ☺ (U+0263A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2023,7 +2012,7 @@ msgctxt ""
"WHITE_SMILING_FACE\n"
"LngText.text"
msgid "smiling"
-msgstr ""
+msgstr "smilende"
#. ☻ (U+0263B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2032,7 +2021,7 @@ msgctxt ""
"BLACK_SMILING_FACE\n"
"LngText.text"
msgid "smiling2"
-msgstr ""
+msgstr "smilende2"
#. ☼ (U+0263C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2041,7 +2030,7 @@ msgctxt ""
"WHITE_SUN_WITH_RAYS\n"
"LngText.text"
msgid "Sun2"
-msgstr ""
+msgstr "Sol2"
#. ☽ (U+0263D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2050,7 +2039,7 @@ msgctxt ""
"FIRST_QUARTER_MOON\n"
"LngText.text"
msgid "Moon"
-msgstr ""
+msgstr "Måne"
#. ☾ (U+0263E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2059,7 +2048,7 @@ msgctxt ""
"LAST_QUARTER_MOON\n"
"LngText.text"
msgid "Moon2"
-msgstr ""
+msgstr "Måne2"
#. ☿ (U+0263F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2068,7 +2057,7 @@ msgctxt ""
"MERCURY\n"
"LngText.text"
msgid "Mercury"
-msgstr ""
+msgstr "Kvikksølv"
#. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2077,7 +2066,7 @@ msgctxt ""
"FEMALE_SIGN\n"
"LngText.text"
msgid "female"
-msgstr ""
+msgstr "kvinne"
#. ♁ (U+02641), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2086,7 +2075,7 @@ msgctxt ""
"EARTH\n"
"LngText.text"
msgid "Earth"
-msgstr ""
+msgstr "Jorda"
#. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2095,7 +2084,7 @@ msgctxt ""
"MALE_SIGN\n"
"LngText.text"
msgid "male"
-msgstr ""
+msgstr "mann"
#. ♃ (U+02643), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2104,7 +2093,7 @@ msgctxt ""
"JUPITER\n"
"LngText.text"
msgid "Jupiter"
-msgstr ""
+msgstr "Jupiter"
#. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2113,7 +2102,7 @@ msgctxt ""
"SATURN\n"
"LngText.text"
msgid "Saturn"
-msgstr ""
+msgstr "Saturn"
#. ♅ (U+02645), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2122,7 +2111,7 @@ msgctxt ""
"URANUS\n"
"LngText.text"
msgid "Uranus"
-msgstr ""
+msgstr "Uranus"
#. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2131,7 +2120,7 @@ msgctxt ""
"NEPTUNE\n"
"LngText.text"
msgid "Neptune"
-msgstr ""
+msgstr "Neptun"
#. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2140,7 +2129,7 @@ msgctxt ""
"PLUTO\n"
"LngText.text"
msgid "Pluto"
-msgstr ""
+msgstr "Pluto"
#. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2149,7 +2138,7 @@ msgctxt ""
"ARIES\n"
"LngText.text"
msgid "Aries"
-msgstr ""
+msgstr "Væren"
#. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2158,7 +2147,7 @@ msgctxt ""
"TAURUS\n"
"LngText.text"
msgid "Taurus"
-msgstr ""
+msgstr "Tyren"
#. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2167,7 +2156,7 @@ msgctxt ""
"GEMINI\n"
"LngText.text"
msgid "Gemini"
-msgstr ""
+msgstr "Tvillingene"
#. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2176,7 +2165,7 @@ msgctxt ""
"CANCER\n"
"LngText.text"
msgid "Cancer"
-msgstr ""
+msgstr "Krepsen"
#. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2185,7 +2174,7 @@ msgctxt ""
"LEO\n"
"LngText.text"
msgid "Leo"
-msgstr ""
+msgstr "Løven"
#. ♍ (U+0264D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2194,7 +2183,7 @@ msgctxt ""
"VIRGO\n"
"LngText.text"
msgid "Virgo"
-msgstr ""
+msgstr "Jomfruen"
#. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2203,7 +2192,7 @@ msgctxt ""
"LIBRA\n"
"LngText.text"
msgid "Libra"
-msgstr ""
+msgstr "Vekten"
#. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2212,7 +2201,7 @@ msgctxt ""
"SCORPIUS\n"
"LngText.text"
msgid "Scorpius"
-msgstr ""
+msgstr "Skorpionen"
#. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2221,7 +2210,7 @@ msgctxt ""
"SAGITTARIUS\n"
"LngText.text"
msgid "Sagittarius"
-msgstr ""
+msgstr "Skytten"
#. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2230,7 +2219,7 @@ msgctxt ""
"CAPRICORN\n"
"LngText.text"
msgid "Capricorn"
-msgstr ""
+msgstr "Steinbukken"
#. ♒ (U+02652), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2239,7 +2228,7 @@ msgctxt ""
"AQUARIUS\n"
"LngText.text"
msgid "Aquarius"
-msgstr ""
+msgstr "Vannmannen"
#. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2248,7 +2237,7 @@ msgctxt ""
"PISCES\n"
"LngText.text"
msgid "Pisces"
-msgstr ""
+msgstr "Fiskene"
#. ♔ (U+02654), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2257,7 +2246,7 @@ msgctxt ""
"WHITE_CHESS_KING\n"
"LngText.text"
msgid "white king"
-msgstr ""
+msgstr "hvit konge"
#. ♕ (U+02655), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2266,7 +2255,7 @@ msgctxt ""
"WHITE_CHESS_QUEEN\n"
"LngText.text"
msgid "white queen"
-msgstr ""
+msgstr "hvit dronning"
#. ♖ (U+02656), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2275,7 +2264,7 @@ msgctxt ""
"WHITE_CHESS_ROOK\n"
"LngText.text"
msgid "white rook"
-msgstr ""
+msgstr "hvitt tårn"
#. ♗ (U+02657), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2284,7 +2273,7 @@ msgctxt ""
"WHITE_CHESS_BISHOP\n"
"LngText.text"
msgid "white bishop"
-msgstr ""
+msgstr "hvit løper"
#. ♘ (U+02658), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2293,7 +2282,7 @@ msgctxt ""
"WHITE_CHESS_KNIGHT\n"
"LngText.text"
msgid "white knight"
-msgstr ""
+msgstr "hvit springer"
#. ♙ (U+02659), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2302,7 +2291,7 @@ msgctxt ""
"WHITE_CHESS_PAWN\n"
"LngText.text"
msgid "white pawn"
-msgstr ""
+msgstr "hvit bonde"
#. ♚ (U+0265A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2311,7 +2300,7 @@ msgctxt ""
"BLACK_CHESS_KING\n"
"LngText.text"
msgid "black king"
-msgstr ""
+msgstr "svart konge"
#. ♛ (U+0265B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2320,7 +2309,7 @@ msgctxt ""
"BLACK_CHESS_QUEEN\n"
"LngText.text"
msgid "black queen"
-msgstr ""
+msgstr "svart dronning"
#. ♜ (U+0265C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2329,7 +2318,7 @@ msgctxt ""
"BLACK_CHESS_ROOK\n"
"LngText.text"
msgid "black rook"
-msgstr ""
+msgstr "svart tårn"
#. ♝ (U+0265D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2338,7 +2327,7 @@ msgctxt ""
"BLACK_CHESS_BISHOP\n"
"LngText.text"
msgid "black bishop"
-msgstr ""
+msgstr "svart løper"
#. ♞ (U+0265E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2347,7 +2336,7 @@ msgctxt ""
"BLACK_CHESS_KNIGHT\n"
"LngText.text"
msgid "black knight"
-msgstr ""
+msgstr "svart springer"
#. ♟ (U+0265F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2356,7 +2345,7 @@ msgctxt ""
"BLACK_CHESS_PAWN\n"
"LngText.text"
msgid "black pawn"
-msgstr ""
+msgstr "svart bonde"
#. ♠ (U+02660), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2365,7 +2354,7 @@ msgctxt ""
"BLACK_SPADE_SUIT\n"
"LngText.text"
msgid "spades"
-msgstr ""
+msgstr "spar"
#. ♡ (U+02661), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2374,7 +2363,7 @@ msgctxt ""
"WHITE_HEART_SUIT\n"
"LngText.text"
msgid "hearts2"
-msgstr ""
+msgstr "hjerter2"
#. ♢ (U+02662), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2383,7 +2372,7 @@ msgctxt ""
"WHITE_DIAMOND_SUIT\n"
"LngText.text"
msgid "diamonds2"
-msgstr ""
+msgstr "ruter2"
#. ♣ (U+02663), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2392,7 +2381,7 @@ msgctxt ""
"BLACK_CLUB_SUIT\n"
"LngText.text"
msgid "clubs"
-msgstr ""
+msgstr "kløver"
#. ♤ (U+02664), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2401,7 +2390,7 @@ msgctxt ""
"WHITE_SPADE_SUIT\n"
"LngText.text"
msgid "spades2"
-msgstr ""
+msgstr "spar2"
#. ♥ (U+02665), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2410,7 +2399,7 @@ msgctxt ""
"BLACK_HEART_SUIT\n"
"LngText.text"
msgid "hearts"
-msgstr ""
+msgstr "hjerter"
#. ♦ (U+02666), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2419,7 +2408,7 @@ msgctxt ""
"BLACK_DIAMOND_SUIT\n"
"LngText.text"
msgid "diamonds"
-msgstr ""
+msgstr "ruter"
#. ♧ (U+02667), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2428,7 +2417,7 @@ msgctxt ""
"WHITE_CLUB_SUIT\n"
"LngText.text"
msgid "clubs2"
-msgstr ""
+msgstr "kløver2"
#. ♨ (U+02668), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2437,7 +2426,7 @@ msgctxt ""
"HOT_SPRINGS\n"
"LngText.text"
msgid "hot springs"
-msgstr ""
+msgstr "varme kilder"
#. ♩ (U+02669), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2446,7 +2435,7 @@ msgctxt ""
"QUARTER_NOTE\n"
"LngText.text"
msgid "note"
-msgstr ""
+msgstr "note"
#. ♪ (U+0266A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2455,7 +2444,7 @@ msgctxt ""
"EIGHTH_NOTE\n"
"LngText.text"
msgid "note2"
-msgstr ""
+msgstr "merknad2"
#. ♫ (U+0266B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2464,7 +2453,7 @@ msgctxt ""
"BEAMED_EIGHTH_NOTES\n"
"LngText.text"
msgid "notes"
-msgstr ""
+msgstr "noter"
#. ♬ (U+0266C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2473,7 +2462,7 @@ msgctxt ""
"BEAMED_SIXTEENTH_NOTES\n"
"LngText.text"
msgid "notes2"
-msgstr ""
+msgstr "merknader2"
#. ♭ (U+0266D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2482,7 +2471,7 @@ msgctxt ""
"MUSIC_FLAT_SIGN\n"
"LngText.text"
msgid "flat"
-msgstr ""
+msgstr "flat"
#. ♮ (U+0266E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2491,7 +2480,7 @@ msgctxt ""
"MUSIC_NATURAL_SIGN\n"
"LngText.text"
msgid "natural"
-msgstr ""
+msgstr "naturlig"
#. ♯ (U+0266F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2500,7 +2489,7 @@ msgctxt ""
"MUSIC_SHARP_SIGN\n"
"LngText.text"
msgid "sharp"
-msgstr ""
+msgstr "skarp"
#. ♲ (U+02672), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2509,7 +2498,7 @@ msgctxt ""
"UNIVERSAL_RECYCLING_SYMBOL\n"
"LngText.text"
msgid "recycling"
-msgstr ""
+msgstr "gjenbruk"
#. ♻ (U+0267B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2518,7 +2507,7 @@ msgctxt ""
"BLACK_UNIVERSAL_RECYCLING_SYMBOL\n"
"LngText.text"
msgid "recycling2"
-msgstr ""
+msgstr "gjenbruk2"
#. ♼ (U+0267C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2527,7 +2516,7 @@ msgctxt ""
"RECYCLED_PAPER\n"
"LngText.text"
msgid "recycled paper"
-msgstr ""
+msgstr "gjenbrukspapir"
#. ♾ (U+0267E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2536,7 +2525,7 @@ msgctxt ""
"PERMANENT_PAPER\n"
"LngText.text"
msgid "permanent paper"
-msgstr ""
+msgstr "permanent papir"
#. ♿ (U+0267F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2545,7 +2534,7 @@ msgctxt ""
"WHEELCHAIR_SYMBOL\n"
"LngText.text"
msgid "wheelchair"
-msgstr ""
+msgstr "rullestol"
#. ⚀ (U+02680), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2554,7 +2543,7 @@ msgctxt ""
"DIE_FACE-1\n"
"LngText.text"
msgid "dice1"
-msgstr ""
+msgstr "terning1"
#. ⚁ (U+02681), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2563,7 +2552,7 @@ msgctxt ""
"DIE_FACE-2\n"
"LngText.text"
msgid "dice2"
-msgstr ""
+msgstr "terning2"
#. ⚂ (U+02682), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2572,7 +2561,7 @@ msgctxt ""
"DIE_FACE-3\n"
"LngText.text"
msgid "dice3"
-msgstr ""
+msgstr "terning3"
#. ⚃ (U+02683), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2581,7 +2570,7 @@ msgctxt ""
"DIE_FACE-4\n"
"LngText.text"
msgid "dice4"
-msgstr ""
+msgstr "terning4"
#. ⚄ (U+02684), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2590,7 +2579,7 @@ msgctxt ""
"DIE_FACE-5\n"
"LngText.text"
msgid "dice5"
-msgstr ""
+msgstr "terning5"
#. ⚅ (U+02685), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2599,7 +2588,7 @@ msgctxt ""
"DIE_FACE-6\n"
"LngText.text"
msgid "dice6"
-msgstr ""
+msgstr "terning6"
#. ⚐ (U+02690), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2608,7 +2597,7 @@ msgctxt ""
"WHITE_FLAG\n"
"LngText.text"
msgid "flag"
-msgstr ""
+msgstr "flagg"
#. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2617,7 +2606,7 @@ msgctxt ""
"BLACK_FLAG\n"
"LngText.text"
msgid "flag2"
-msgstr ""
+msgstr "flagg2"
#. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2626,7 +2615,7 @@ msgctxt ""
"HAMMER_AND_PICK\n"
"LngText.text"
msgid "hammer and pick"
-msgstr ""
+msgstr "hammer og hakke"
#. ⚓ (U+02693), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2635,7 +2624,7 @@ msgctxt ""
"ANCHOR\n"
"LngText.text"
msgid "anchor"
-msgstr ""
+msgstr "anker"
#. ⚔ (U+02694), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2644,7 +2633,7 @@ msgctxt ""
"CROSSED_SWORDS\n"
"LngText.text"
msgid "swords"
-msgstr ""
+msgstr "sverd"
#. ⚕ (U+02695), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2653,7 +2642,7 @@ msgctxt ""
"STAFF_OF_AESCULAPIUS\n"
"LngText.text"
msgid "medical"
-msgstr ""
+msgstr "medisinsk"
#. ⚖ (U+02696), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2662,7 +2651,7 @@ msgctxt ""
"SCALES\n"
"LngText.text"
msgid "scales"
-msgstr ""
+msgstr "vekter"
#. ⚗ (U+02697), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2671,7 +2660,7 @@ msgctxt ""
"ALEMBIC\n"
"LngText.text"
msgid "alembic"
-msgstr ""
+msgstr "kjemi"
#. ⚘ (U+02698), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2680,7 +2669,7 @@ msgctxt ""
"FLOWER\n"
"LngText.text"
msgid "flower"
-msgstr ""
+msgstr "blomst"
#. ⚙ (U+02699), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2689,7 +2678,7 @@ msgctxt ""
"GEAR\n"
"LngText.text"
msgid "gear"
-msgstr ""
+msgstr "gir"
#. ⚚ (U+0269A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2698,7 +2687,7 @@ msgctxt ""
"STAFF_OF_HERMES\n"
"LngText.text"
msgid "staff"
-msgstr ""
+msgstr "heroldstav"
#. ⚛ (U+0269B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2707,7 +2696,7 @@ msgctxt ""
"ATOM_SYMBOL\n"
"LngText.text"
msgid "atom"
-msgstr ""
+msgstr "atom"
#. ⚜ (U+0269C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2716,7 +2705,7 @@ msgctxt ""
"FLEUR-DE-LIS\n"
"LngText.text"
msgid "fleur de lis"
-msgstr ""
+msgstr "fransk lilje"
#. ⚠ (U+026A0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2725,7 +2714,7 @@ msgctxt ""
"WARNING_SIGN\n"
"LngText.text"
msgid "warning"
-msgstr ""
+msgstr "advarsel"
#. ⚡ (U+026A1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2734,7 +2723,7 @@ msgctxt ""
"HIGH_VOLTAGE_SIGN\n"
"LngText.text"
msgid "zap"
-msgstr ""
+msgstr "spenning"
#. ⚪ (U+026AA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2743,7 +2732,7 @@ msgctxt ""
"MEDIUM_WHITE_CIRCLE\n"
"LngText.text"
msgid "white circle"
-msgstr ""
+msgstr "hvit sirkel"
#. ⚫ (U+026AB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2752,7 +2741,7 @@ msgctxt ""
"MEDIUM_BLACK_CIRCLE\n"
"LngText.text"
msgid "black circle"
-msgstr ""
+msgstr "svart sirkel"
#. ⚭ (U+026AD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2761,7 +2750,7 @@ msgctxt ""
"MARRIAGE_SYMBOL\n"
"LngText.text"
msgid "marriage"
-msgstr ""
+msgstr "ekteskap"
#. ⚮ (U+026AE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2770,7 +2759,7 @@ msgctxt ""
"DIVORCE_SYMBOL\n"
"LngText.text"
msgid "divorce"
-msgstr ""
+msgstr "skilsmisse"
#. ⚰ (U+026B0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2779,7 +2768,7 @@ msgctxt ""
"COFFIN\n"
"LngText.text"
msgid "coffin"
-msgstr ""
+msgstr "kiste"
#. ⚱ (U+026B1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2788,7 +2777,7 @@ msgctxt ""
"FUNERAL_URN\n"
"LngText.text"
msgid "urn"
-msgstr ""
+msgstr "urne"
#. ⚽ (U+026BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2797,7 +2786,7 @@ msgctxt ""
"SOCCER_BALL\n"
"LngText.text"
msgid "soccer"
-msgstr ""
+msgstr "fotball"
#. ⚾ (U+026BE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2806,7 +2795,7 @@ msgctxt ""
"BASEBALL\n"
"LngText.text"
msgid "baseball"
-msgstr ""
+msgstr "baseball"
#. ⛄ (U+026C4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2815,7 +2804,7 @@ msgctxt ""
"SNOWMAN_WITHOUT_SNOW\n"
"LngText.text"
msgid "snowman2"
-msgstr ""
+msgstr "snømann2"
#. ⛅ (U+026C5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2824,7 +2813,7 @@ msgctxt ""
"SUN_BEHIND_CLOUD\n"
"LngText.text"
msgid "cloud2"
-msgstr ""
+msgstr "sky2"
#. ⛆ (U+026C6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2833,7 +2822,7 @@ msgctxt ""
"RAIN\n"
"LngText.text"
msgid "rain2"
-msgstr ""
+msgstr "regn2"
#. ⛈ (U+026C8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2842,7 +2831,7 @@ msgctxt ""
"THUNDER_CLOUD_AND_RAIN\n"
"LngText.text"
msgid "cloud3"
-msgstr ""
+msgstr "sky3"
#. ⛎ (U+026CE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2851,7 +2840,7 @@ msgctxt ""
"OPHIUCHUS\n"
"LngText.text"
msgid "ophiuchus"
-msgstr ""
+msgstr "slangebæreren"
#. ⛏ (U+026CF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2860,7 +2849,7 @@ msgctxt ""
"PICK\n"
"LngText.text"
msgid "pick"
-msgstr ""
+msgstr "hakke"
#. ⛐ (U+026D0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2869,7 +2858,7 @@ msgctxt ""
"CAR_SLIDING\n"
"LngText.text"
msgid "sliding car"
-msgstr ""
+msgstr "glatt vegbane"
#. ⛑ (U+026D1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2878,7 +2867,7 @@ msgctxt ""
"HELMET_WITH_WHITE_CROSS\n"
"LngText.text"
msgid "helmet"
-msgstr ""
+msgstr "hjelm"
#. ⛓ (U+026D3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2887,7 +2876,7 @@ msgctxt ""
"CHAINS\n"
"LngText.text"
msgid "chains"
-msgstr ""
+msgstr "kjettinger"
#. ⛔ (U+026D4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2896,7 +2885,7 @@ msgctxt ""
"NO_ENTRY\n"
"LngText.text"
msgid "no entry"
-msgstr ""
+msgstr "innkjøring forbudt"
#. ⛟ (U+026DF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2905,7 +2894,7 @@ msgctxt ""
"BLACK_TRUCK\n"
"LngText.text"
msgid "truck"
-msgstr ""
+msgstr "lastebil"
#. ⛤ (U+026E4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2914,7 +2903,7 @@ msgctxt ""
"PENTAGRAM\n"
"LngText.text"
msgid "pentagram"
-msgstr ""
+msgstr "pentagram"
#. ⛨ (U+026E8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2923,7 +2912,7 @@ msgctxt ""
"BLACK_CROSS_ON_SHIELD\n"
"LngText.text"
msgid "shield"
-msgstr ""
+msgstr "skjold"
#. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2932,7 +2921,7 @@ msgctxt ""
"CHURCH\n"
"LngText.text"
msgid "church"
-msgstr ""
+msgstr "kirke"
#. ⛰ (U+026F0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2941,7 +2930,7 @@ msgctxt ""
"MOUNTAIN\n"
"LngText.text"
msgid "mountain"
-msgstr ""
+msgstr "fjell"
#. ⛱ (U+026F1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2950,7 +2939,7 @@ msgctxt ""
"UMBRELLA_ON_GROUND\n"
"LngText.text"
msgid "umbrella3"
-msgstr ""
+msgstr "paraply3"
#. ⛲ (U+026F2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2959,7 +2948,7 @@ msgctxt ""
"FOUNTAIN\n"
"LngText.text"
msgid "fountain"
-msgstr ""
+msgstr "fontene"
#. ⛳ (U+026F3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2968,7 +2957,7 @@ msgctxt ""
"FLAG_IN_HOLE\n"
"LngText.text"
msgid "golf"
-msgstr ""
+msgstr "golf"
#. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2977,7 +2966,7 @@ msgctxt ""
"FERRY\n"
"LngText.text"
msgid "ferry"
-msgstr ""
+msgstr "ferje"
#. ⛵ (U+026F5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2986,7 +2975,7 @@ msgctxt ""
"SAILBOAT\n"
"LngText.text"
msgid "sailboat"
-msgstr ""
+msgstr "seilbåt"
#. ⛺ (U+026FA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -2995,7 +2984,7 @@ msgctxt ""
"TENT\n"
"LngText.text"
msgid "tent"
-msgstr ""
+msgstr "telt"
#. ⛷ (U+026F7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3004,7 +2993,7 @@ msgctxt ""
"SKIER\n"
"LngText.text"
msgid "skier"
-msgstr ""
+msgstr "skiløper"
#. ⛸ (U+026F8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3013,7 +3002,7 @@ msgctxt ""
"ICE_SKATE\n"
"LngText.text"
msgid "skate"
-msgstr ""
+msgstr "skøyte"
#. ⛹ (U+026F9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3022,7 +3011,7 @@ msgctxt ""
"PERSON_WITH_BALL\n"
"LngText.text"
msgid "ball"
-msgstr ""
+msgstr "ball"
#. ⛽ (U+026FD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3031,7 +3020,7 @@ msgctxt ""
"FUEL_PUMP\n"
"LngText.text"
msgid "fuelpump"
-msgstr ""
+msgstr "bensinpumpe"
#. ✁ (U+02701), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3040,7 +3029,7 @@ msgctxt ""
"UPPER_BLADE_SCISSORS\n"
"LngText.text"
msgid "scissors3"
-msgstr ""
+msgstr "saks3"
#. ✂ (U+02702), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3049,7 +3038,7 @@ msgctxt ""
"BLACK_SCISSORS\n"
"LngText.text"
msgid "scissors"
-msgstr ""
+msgstr "saks"
#. ✃ (U+02703), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3058,7 +3047,7 @@ msgctxt ""
"LOWER_BLADE_SCISSORS\n"
"LngText.text"
msgid "scissors4"
-msgstr ""
+msgstr "saks4"
#. ✄ (U+02704), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3067,7 +3056,7 @@ msgctxt ""
"WHITE_SCISSORS\n"
"LngText.text"
msgid "scissors2"
-msgstr ""
+msgstr "saks2"
#. ✅ (U+02705), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3076,7 +3065,7 @@ msgctxt ""
"WHITE_HEAVY_CHECK_MARK\n"
"LngText.text"
msgid "check mark3"
-msgstr ""
+msgstr "avkryssingstegn"
#. ✆ (U+02706), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3085,7 +3074,7 @@ msgctxt ""
"TELEPHONE_LOCATION\n"
"LngText.text"
msgid "telephone"
-msgstr ""
+msgstr "telefon"
#. ✈ (U+02708), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3094,7 +3083,7 @@ msgctxt ""
"AIRPLANE\n"
"LngText.text"
msgid "airplane"
-msgstr ""
+msgstr "fly"
#. ✉ (U+02709), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3103,7 +3092,7 @@ msgctxt ""
"ENVELOPE\n"
"LngText.text"
msgid "envelope"
-msgstr ""
+msgstr "konvolutt"
#. ✊ (U+0270A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3112,7 +3101,7 @@ msgctxt ""
"RAISED_FIST\n"
"LngText.text"
msgid "fist"
-msgstr ""
+msgstr "knyttneve"
#. ✋ (U+0270B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3121,7 +3110,7 @@ msgctxt ""
"RAISED_HAND\n"
"LngText.text"
msgid "hand"
-msgstr ""
+msgstr "hånd"
#. ✌ (U+0270C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3130,7 +3119,7 @@ msgctxt ""
"VICTORY_HAND\n"
"LngText.text"
msgid "victory"
-msgstr ""
+msgstr "seier"
#. ✍ (U+0270D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3139,7 +3128,7 @@ msgctxt ""
"WRITING_HAND\n"
"LngText.text"
msgid "writing"
-msgstr ""
+msgstr "skriver"
#. ✎ (U+0270E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3148,7 +3137,7 @@ msgctxt ""
"LOWER_RIGHT_PENCIL\n"
"LngText.text"
msgid "pencil"
-msgstr ""
+msgstr "blyant"
#. ✏ (U+0270F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3157,7 +3146,7 @@ msgctxt ""
"PENCIL\n"
"LngText.text"
msgid "pencil2"
-msgstr ""
+msgstr "blyant2"
#. ✐ (U+02710), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3166,7 +3155,7 @@ msgctxt ""
"UPPER_RIGHT_PENCIL\n"
"LngText.text"
msgid "pencil3"
-msgstr ""
+msgstr "blyant3"
#. ✑ (U+02711), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3175,7 +3164,7 @@ msgctxt ""
"WHITE_NIB\n"
"LngText.text"
msgid "nib"
-msgstr ""
+msgstr "pennesplitt"
#. ✒ (U+02712), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3184,7 +3173,7 @@ msgctxt ""
"BLACK_NIB\n"
"LngText.text"
msgid "nib2"
-msgstr ""
+msgstr "pennesplitt2"
#. ✓ (U+02713), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3193,7 +3182,7 @@ msgctxt ""
"CHECK_MARK\n"
"LngText.text"
msgid "check mark"
-msgstr ""
+msgstr "avkryssingstegn"
#. ✔ (U+02714), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3202,7 +3191,7 @@ msgctxt ""
"HEAVY_CHECK_MARK\n"
"LngText.text"
msgid "check mark2"
-msgstr ""
+msgstr "avkryssingstegn2"
#. ✖ (U+02716), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3211,7 +3200,7 @@ msgctxt ""
"HEAVY_MULTIPLICATION_X\n"
"LngText.text"
msgid "times2"
-msgstr ""
+msgstr "ganger2"
#. ✙ (U+02719), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3220,7 +3209,7 @@ msgctxt ""
"OUTLINED_GREEK_CROSS\n"
"LngText.text"
msgid "Greek cross2"
-msgstr ""
+msgstr "gresk kors2"
#. ✚ (U+0271A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3229,7 +3218,7 @@ msgctxt ""
"HEAVY_GREEK_CROSS\n"
"LngText.text"
msgid "Greek cross"
-msgstr ""
+msgstr "gresk kors"
#. ✝ (U+0271D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3238,7 +3227,7 @@ msgctxt ""
"LATIN_CROSS\n"
"LngText.text"
msgid "Latin cross"
-msgstr ""
+msgstr "latinsk kors"
#. ✠ (U+02720), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3247,7 +3236,7 @@ msgctxt ""
"MALTESE_CROSS\n"
"LngText.text"
msgid "Maltese cross"
-msgstr ""
+msgstr "Malteserkors"
#. ✡ (U+02721), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3256,7 +3245,7 @@ msgctxt ""
"STAR_OF_DAVID\n"
"LngText.text"
msgid "star of David"
-msgstr ""
+msgstr "Davidsstjerne"
#. ✨ (U+02728), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3265,7 +3254,7 @@ msgctxt ""
"SPARKLES\n"
"LngText.text"
msgid "sparkles"
-msgstr ""
+msgstr "glitrer"
#. ❄ (U+02744), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3274,7 +3263,7 @@ msgctxt ""
"SNOWFLAKE\n"
"LngText.text"
msgid "snowflake"
-msgstr ""
+msgstr "snøflak"
#. ❇ (U+02747), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3283,7 +3272,7 @@ msgctxt ""
"SPARKLE\n"
"LngText.text"
msgid "sparkle"
-msgstr ""
+msgstr "gnistre"
#. ❌ (U+0274C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3292,7 +3281,7 @@ msgctxt ""
"CROSS_MARK\n"
"LngText.text"
msgid "x2"
-msgstr ""
+msgstr "x2"
#. ❎ (U+0274E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3301,11 +3290,10 @@ msgctxt ""
"NEGATIVE_SQUARED_CROSS_MARK\n"
"LngText.text"
msgid "x3"
-msgstr ""
+msgstr "x3"
#. ❓ (U+02753), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"BLACK_QUESTION_MARK_ORNAMENT\n"
@@ -3320,11 +3308,10 @@ msgctxt ""
"WHITE_QUESTION_MARK_ORNAMENT\n"
"LngText.text"
msgid "?2"
-msgstr ""
+msgstr "?2"
#. ❕ (U+02755), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"WHITE_EXCLAMATION_MARK_ORNAMENT\n"
@@ -3339,7 +3326,7 @@ msgctxt ""
"HEAVY_EXCLAMATION_MARK_SYMBOL\n"
"LngText.text"
msgid "!2"
-msgstr ""
+msgstr "!2"
#. ❤ (U+02764), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3348,7 +3335,7 @@ msgctxt ""
"HEAVY_BLACK_HEART\n"
"LngText.text"
msgid "heart"
-msgstr ""
+msgstr "hjerte"
#. ➰ (U+027B0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3357,7 +3344,7 @@ msgctxt ""
"CURLY_LOOP\n"
"LngText.text"
msgid "loop"
-msgstr ""
+msgstr "løkke"
#. ➿ (U+027BF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3366,7 +3353,7 @@ msgctxt ""
"DOUBLE_CURLY_LOOP\n"
"LngText.text"
msgid "loop2"
-msgstr ""
+msgstr "løkke2"
#. ⬛ (U+02B1B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3375,7 +3362,7 @@ msgctxt ""
"BLACK_LARGE_SQUARE\n"
"LngText.text"
msgid "large square2"
-msgstr ""
+msgstr "stort kvadrat2"
#. ⬜ (U+02B1C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3384,7 +3371,7 @@ msgctxt ""
"WHITE_LARGE_SQUARE\n"
"LngText.text"
msgid "large square"
-msgstr ""
+msgstr "stort kvadrat"
#. ⬟ (U+02B1F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3393,7 +3380,7 @@ msgctxt ""
"BLACK_PENTAGON\n"
"LngText.text"
msgid "pentagon2"
-msgstr ""
+msgstr "femkant2"
#. ⬠ (U+02B20), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3402,7 +3389,7 @@ msgctxt ""
"WHITE_PENTAGON\n"
"LngText.text"
msgid "pentagon"
-msgstr ""
+msgstr "femkant"
#. ⬡ (U+02B21), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3411,7 +3398,7 @@ msgctxt ""
"WHITE_HEXAGON\n"
"LngText.text"
msgid "hexagon"
-msgstr ""
+msgstr "sekskant"
#. ⬢ (U+02B22), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3420,7 +3407,7 @@ msgctxt ""
"BLACK_HEXAGON\n"
"LngText.text"
msgid "hexagon2"
-msgstr ""
+msgstr "sekskant2"
#. ⬤ (U+02B24), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3429,7 +3416,7 @@ msgctxt ""
"BLACK_LARGE_CIRCLE\n"
"LngText.text"
msgid "large circle2"
-msgstr ""
+msgstr "stor sirkel2"
#. ⬭ (U+02B2D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3438,7 +3425,7 @@ msgctxt ""
"WHITE_HORIZONTAL_ELLIPSE\n"
"LngText.text"
msgid "ellipse"
-msgstr ""
+msgstr "ellipse"
#. ⭐ (U+02B50), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3447,7 +3434,7 @@ msgctxt ""
"WHITE_MEDIUM_STAR\n"
"LngText.text"
msgid "medium star"
-msgstr ""
+msgstr "mellomstor stjerne"
#. ⭑ (U+02B51), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3456,7 +3443,7 @@ msgctxt ""
"BLACK_SMALL_STAR\n"
"LngText.text"
msgid "small star2"
-msgstr ""
+msgstr "liten stjerne2"
#. ⭒ (U+02B52), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3465,7 +3452,7 @@ msgctxt ""
"WHITE_SMALL_STAR\n"
"LngText.text"
msgid "small star"
-msgstr ""
+msgstr "liten stjerne"
#. ff (U+0FB00), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3474,7 +3461,7 @@ msgctxt ""
"LATIN_SMALL_LIGATURE_FF\n"
"LngText.text"
msgid "ff"
-msgstr ""
+msgstr "ff"
#. fi (U+0FB01), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3483,7 +3470,7 @@ msgctxt ""
"LATIN_SMALL_LIGATURE_FI\n"
"LngText.text"
msgid "fi"
-msgstr ""
+msgstr "fi"
#. fl (U+0FB02), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3492,7 +3479,7 @@ msgctxt ""
"LATIN_SMALL_LIGATURE_FL\n"
"LngText.text"
msgid "fl"
-msgstr ""
+msgstr "fl"
#. ffi (U+0FB03), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3501,7 +3488,7 @@ msgctxt ""
"LATIN_SMALL_LIGATURE_FFI\n"
"LngText.text"
msgid "ffi"
-msgstr ""
+msgstr "ffi"
#. ffl (U+0FB04), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3510,7 +3497,7 @@ msgctxt ""
"LATIN_SMALL_LIGATURE_FFL\n"
"LngText.text"
msgid "ffl"
-msgstr ""
+msgstr "ffl"
#. 𝄞 (U+1D11E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3519,7 +3506,7 @@ msgctxt ""
"MUSICAL_SYMBOL_G_CLEF\n"
"LngText.text"
msgid "clef"
-msgstr ""
+msgstr "nøkkel"
#. 𝄪 (U+1D12A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3528,7 +3515,7 @@ msgctxt ""
"MUSICAL_SYMBOL_DOUBLE_SHARP\n"
"LngText.text"
msgid "double sharp"
-msgstr ""
+msgstr "dobbeltkryss"
#. 𝄫 (U+1D12B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3537,7 +3524,7 @@ msgctxt ""
"MUSICAL_SYMBOL_DOUBLE_FLAT\n"
"LngText.text"
msgid "double flat"
-msgstr ""
+msgstr "dobbelt flat"
#. 𝄻 (U+1D13B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3546,7 +3533,7 @@ msgctxt ""
"WHOLE_REST\n"
"LngText.text"
msgid "whole rest"
-msgstr ""
+msgstr "hel pause"
#. 𝄼 (U+1D13C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3555,7 +3542,7 @@ msgctxt ""
"HALF_REST\n"
"LngText.text"
msgid "half rest"
-msgstr ""
+msgstr "halv pause"
#. 𝄽 (U+1D13D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3564,7 +3551,7 @@ msgctxt ""
"QUARTER_REST\n"
"LngText.text"
msgid "quarter rest"
-msgstr ""
+msgstr "kvart pause"
#. 𝄾 (U+1D13E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3573,7 +3560,7 @@ msgctxt ""
"EIGHTH_REST\n"
"LngText.text"
msgid "eighth rest"
-msgstr ""
+msgstr "åttendedels pause"
#. 𝅝 (U+1D15D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3582,7 +3569,7 @@ msgctxt ""
"MUSICAL_SYMBOL_WHOLE_NOTE\n"
"LngText.text"
msgid "whole note"
-msgstr ""
+msgstr "hel note"
#. 𝅗𝅥 (U+1D15E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3591,7 +3578,7 @@ msgctxt ""
"MUSICAL_SYMBOL_HALF_NOTE\n"
"LngText.text"
msgid "half note"
-msgstr ""
+msgstr "halvnote"
#. 𝅘𝅥 (U+1D15F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3600,7 +3587,7 @@ msgctxt ""
"MUSICAL_SYMBOL_QUARTER_NOTE\n"
"LngText.text"
msgid "quarter note"
-msgstr ""
+msgstr "kvartnote"
#. 𝅘𝅥𝅮 (U+1D160), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3609,7 +3596,7 @@ msgctxt ""
"MUSICAL_SYMBOL_EIGHTH_NOTE\n"
"LngText.text"
msgid "eighth note"
-msgstr ""
+msgstr "åttendedelsnote"
#. 𝅘𝅥𝅯 (U+1D161), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3618,7 +3605,7 @@ msgctxt ""
"MUSICAL_SYMBOL_SIXTEENTH_NOTE\n"
"LngText.text"
msgid "sixteenth note"
-msgstr ""
+msgstr "sekstendedelsnote"
#. 🀄 (U+1F004), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3627,7 +3614,7 @@ msgctxt ""
"MAHJONG_TILE_RED_DRAGON\n"
"LngText.text"
msgid "mahjong"
-msgstr ""
+msgstr "mahjong"
#. 🁠 (U+1F060), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3636,7 +3623,7 @@ msgctxt ""
"DOMINO_TILE_HORIZONTAL-06-05\n"
"LngText.text"
msgid "domino"
-msgstr ""
+msgstr "domino"
#. 🂡 (U+1F0A1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3645,7 +3632,7 @@ msgctxt ""
"PLAYING_CARD_ACE_OF_SPADES\n"
"LngText.text"
msgid "ace"
-msgstr ""
+msgstr "ess"
#. 🂫 (U+1F0AB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3654,7 +3641,7 @@ msgctxt ""
"PLAYING_CARD_JACK_OF_SPADES\n"
"LngText.text"
msgid "jack"
-msgstr ""
+msgstr "knekt"
#. 🂭 (U+1F0AD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3663,7 +3650,7 @@ msgctxt ""
"PLAYING_CARD_QUEEN_OF_SPADES\n"
"LngText.text"
msgid "queen"
-msgstr ""
+msgstr "dronning"
#. 🂮 (U+1F0AE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3672,7 +3659,7 @@ msgctxt ""
"PLAYING_CARD_KING_OF_SPADES\n"
"LngText.text"
msgid "king"
-msgstr ""
+msgstr "konge"
#. 🃏 (U+1F0CF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3681,7 +3668,7 @@ msgctxt ""
"PLAYING_CARD_BLACK_JOKER\n"
"LngText.text"
msgid "joker"
-msgstr ""
+msgstr "joker"
#. 🌀 (U+1F300), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3690,7 +3677,7 @@ msgctxt ""
"CYCLONE\n"
"LngText.text"
msgid "cyclone"
-msgstr ""
+msgstr "syklon"
#. 🌁 (U+1F301), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3699,7 +3686,7 @@ msgctxt ""
"FOGGY\n"
"LngText.text"
msgid "fog"
-msgstr ""
+msgstr "tåke"
#. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3708,7 +3695,7 @@ msgctxt ""
"CLOSED_UMBRELLA\n"
"LngText.text"
msgid "umbrella2"
-msgstr ""
+msgstr "paraply2"
#. 🌃 (U+1F303), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3717,7 +3704,7 @@ msgctxt ""
"NIGHT_WITH_STARS\n"
"LngText.text"
msgid "night"
-msgstr ""
+msgstr "natt"
#. 🌄 (U+1F304), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3726,7 +3713,7 @@ msgctxt ""
"SUNRISE_OVER_MOUNTAINS\n"
"LngText.text"
msgid "sunrise2"
-msgstr ""
+msgstr "soloppgang fjell"
#. 🌅 (U+1F305), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3735,7 +3722,7 @@ msgctxt ""
"SUNRISE\n"
"LngText.text"
msgid "sunrise"
-msgstr ""
+msgstr "soloppgang"
#. 🌆 (U+1F306), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3744,7 +3731,7 @@ msgctxt ""
"CITYSCAPE_AT_DUSK\n"
"LngText.text"
msgid "sunset"
-msgstr ""
+msgstr "solnedgang"
#. 🌇 (U+1F307), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3753,7 +3740,7 @@ msgctxt ""
"SUNSET_OVER_BUILDINGS\n"
"LngText.text"
msgid "sunrise3"
-msgstr ""
+msgstr "soloppgang3"
#. 🌈 (U+1F308), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3762,7 +3749,7 @@ msgctxt ""
"RAINBOW\n"
"LngText.text"
msgid "rainbow"
-msgstr ""
+msgstr "regnbue"
#. 🌉 (U+1F309), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3771,7 +3758,7 @@ msgctxt ""
"BRIDGE_AT_NIGHT\n"
"LngText.text"
msgid "bridge"
-msgstr ""
+msgstr "bru"
#. 🌊 (U+1F30A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3780,7 +3767,7 @@ msgctxt ""
"WATER_WAVE\n"
"LngText.text"
msgid "ocean"
-msgstr ""
+msgstr "hav"
#. 🌋 (U+1F30B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3789,7 +3776,7 @@ msgctxt ""
"VOLCANO\n"
"LngText.text"
msgid "volcano"
-msgstr ""
+msgstr "vulkan"
#. 🌌 (U+1F30C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3798,7 +3785,7 @@ msgctxt ""
"MILKY_WAY\n"
"LngText.text"
msgid "Milky way"
-msgstr ""
+msgstr "Melkeveien"
#. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3807,7 +3794,7 @@ msgctxt ""
"EARTH_GLOBE_EUROPE-AFRICA\n"
"LngText.text"
msgid "globe"
-msgstr ""
+msgstr "jorkloden"
#. 🌎 (U+1F30E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3816,7 +3803,7 @@ msgctxt ""
"EARTH_GLOBE_AMERICAS\n"
"LngText.text"
msgid "globe2"
-msgstr ""
+msgstr "jordklode Amerika"
#. 🌏 (U+1F30F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3825,7 +3812,7 @@ msgctxt ""
"EARTH_GLOBE_ASIA-AUSTRALIA\n"
"LngText.text"
msgid "globe3"
-msgstr ""
+msgstr "jordklode Asia"
#. 🌐 (U+1F310), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3834,7 +3821,7 @@ msgctxt ""
"GLOBE_WITH_MERIDIANS\n"
"LngText.text"
msgid "globe4"
-msgstr ""
+msgstr "jordklode meridian"
#. 🌑 (U+1F311), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3843,7 +3830,7 @@ msgctxt ""
"NEW_MOON_SYMBOL\n"
"LngText.text"
msgid "new moon"
-msgstr ""
+msgstr "nymåne"
#. 🌒 (U+1F312), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3852,7 +3839,7 @@ msgctxt ""
"WAXING_CRESCENT_MOON_SYMBOL\n"
"LngText.text"
msgid "waxing crescent moon"
-msgstr ""
+msgstr "halvmåne stigende"
#. 🌓 (U+1F313), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3861,7 +3848,7 @@ msgctxt ""
"FIRST_QUARTER_MOON_SYMBOL\n"
"LngText.text"
msgid "first quarter"
-msgstr ""
+msgstr "måne første kvarter"
#. 🌔 (U+1F314), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3870,7 +3857,7 @@ msgctxt ""
"WAXING_GIBBOUS_MOON_SYMBOL\n"
"LngText.text"
msgid "waxing gibbous moon"
-msgstr ""
+msgstr "nesten fullmåne"
#. 🌕 (U+1F315), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3879,7 +3866,7 @@ msgctxt ""
"FULL_MOON_SYMBOL\n"
"LngText.text"
msgid "full moon"
-msgstr ""
+msgstr "fullmåne"
#. 🌖 (U+1F316), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3888,7 +3875,7 @@ msgctxt ""
"WANING_GIBBOUS_MOON_SYMBOL\n"
"LngText.text"
msgid "waning gibbous moon"
-msgstr ""
+msgstr "minkende fullmåne"
#. 🌗 (U+1F317), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3897,7 +3884,7 @@ msgctxt ""
"LAST_QUARTER_MOON_SYMBOL\n"
"LngText.text"
msgid "last quarter"
-msgstr ""
+msgstr "måne siste kvarter"
#. 🌘 (U+1F318), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3906,7 +3893,7 @@ msgctxt ""
"WANING_CRESCENT_MOON_SYMBOL\n"
"LngText.text"
msgid "waning crescent moon"
-msgstr ""
+msgstr "halvmåne synkende"
#. 🌙 (U+1F319), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3915,7 +3902,7 @@ msgctxt ""
"CRESCENT_MOON\n"
"LngText.text"
msgid "crescent moon"
-msgstr ""
+msgstr "halvmåne"
#. 🌚 (U+1F31A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3924,7 +3911,7 @@ msgctxt ""
"NEW_MOON_WITH_FACE\n"
"LngText.text"
msgid "new moon2"
-msgstr ""
+msgstr "nymåne med ansikt"
#. 🌛 (U+1F31B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3933,7 +3920,7 @@ msgctxt ""
"FIRST_QUARTER_MOON_WITH_FACE\n"
"LngText.text"
msgid "moon"
-msgstr ""
+msgstr "måne"
#. 🌜 (U+1F31C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3942,7 +3929,7 @@ msgctxt ""
"LAST_QUARTER_MOON_WITH_FACE\n"
"LngText.text"
msgid "moon2"
-msgstr ""
+msgstr "synkende måne med ansikt"
#. 🌝 (U+1F31D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3951,7 +3938,7 @@ msgctxt ""
"FULL_MOON_WITH_FACE\n"
"LngText.text"
msgid "full moon2"
-msgstr ""
+msgstr "fullmåne med ansikt"
#. 🌞 (U+1F31E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3960,7 +3947,7 @@ msgctxt ""
"SUN_WITH_FACE\n"
"LngText.text"
msgid "sun"
-msgstr ""
+msgstr "sol"
#. 🌟 (U+1F31F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3969,7 +3956,7 @@ msgctxt ""
"GLOWING_STAR\n"
"LngText.text"
msgid "star3"
-msgstr ""
+msgstr "lysende stjerne"
#. 🌠 (U+1F320), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3978,7 +3965,7 @@ msgctxt ""
"SHOOTING_STAR\n"
"LngText.text"
msgid "star4"
-msgstr ""
+msgstr "stjerneskudd"
#. 🌰 (U+1F330), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3987,7 +3974,7 @@ msgctxt ""
"CHESTNUT\n"
"LngText.text"
msgid "chestnut"
-msgstr ""
+msgstr "kastanje"
#. 🌱 (U+1F331), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -3996,7 +3983,7 @@ msgctxt ""
"SEEDLING\n"
"LngText.text"
msgid "seedling"
-msgstr ""
+msgstr "frøplante"
#. 🌲 (U+1F332), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4005,7 +3992,7 @@ msgctxt ""
"EVERGREEN_TREE\n"
"LngText.text"
msgid "pine"
-msgstr ""
+msgstr "furu"
#. 🌳 (U+1F333), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4014,7 +4001,7 @@ msgctxt ""
"DECIDUOUS_TREE\n"
"LngText.text"
msgid "tree"
-msgstr ""
+msgstr "tre"
#. 🌴 (U+1F334), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4023,7 +4010,7 @@ msgctxt ""
"PALM_TREE\n"
"LngText.text"
msgid "palm"
-msgstr ""
+msgstr "palme"
#. 🌵 (U+1F335), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4032,7 +4019,7 @@ msgctxt ""
"CACTUS\n"
"LngText.text"
msgid "cactus"
-msgstr ""
+msgstr "kaktus"
#. 🌷 (U+1F337), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4041,7 +4028,7 @@ msgctxt ""
"TULIP\n"
"LngText.text"
msgid "tulip"
-msgstr ""
+msgstr "tulipan"
#. 🌸 (U+1F338), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4050,7 +4037,7 @@ msgctxt ""
"CHERRY_BLOSSOM\n"
"LngText.text"
msgid "cherry blossom"
-msgstr ""
+msgstr "kirsebærblomst"
#. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4059,7 +4046,7 @@ msgctxt ""
"ROSE\n"
"LngText.text"
msgid "rose"
-msgstr ""
+msgstr "rose"
#. 🌺 (U+1F33A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4068,7 +4055,7 @@ msgctxt ""
"HIBISCUS\n"
"LngText.text"
msgid "hibiscus"
-msgstr ""
+msgstr "hibiskus"
#. 🌻 (U+1F33B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4077,7 +4064,7 @@ msgctxt ""
"SUNFLOWER\n"
"LngText.text"
msgid "sunflower"
-msgstr ""
+msgstr "solsikke"
#. 🌼 (U+1F33C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4086,7 +4073,7 @@ msgctxt ""
"BLOSSOM\n"
"LngText.text"
msgid "blossom"
-msgstr ""
+msgstr "blomstre"
#. 🌽 (U+1F33D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4095,7 +4082,7 @@ msgctxt ""
"EAR_OF_MAIZE\n"
"LngText.text"
msgid "corn"
-msgstr ""
+msgstr "mais"
#. 🌾 (U+1F33E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4104,7 +4091,7 @@ msgctxt ""
"EAR_OF_RICE\n"
"LngText.text"
msgid "grass"
-msgstr ""
+msgstr "gress"
#. 🌿 (U+1F33F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4113,7 +4100,7 @@ msgctxt ""
"HERB\n"
"LngText.text"
msgid "herb"
-msgstr ""
+msgstr "urt"
#. 🍀 (U+1F340), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4122,7 +4109,7 @@ msgctxt ""
"FOUR_LEAF_CLOVER\n"
"LngText.text"
msgid "clover"
-msgstr ""
+msgstr "kløver"
#. 🍁 (U+1F341), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4131,7 +4118,7 @@ msgctxt ""
"MAPLE_LEAF\n"
"LngText.text"
msgid "leaf"
-msgstr ""
+msgstr "blad"
#. 🍂 (U+1F342), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4140,7 +4127,7 @@ msgctxt ""
"FALLEN_LEAF\n"
"LngText.text"
msgid "leaf2"
-msgstr ""
+msgstr "blad fallende"
#. 🍃 (U+1F343), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4149,7 +4136,7 @@ msgctxt ""
"LEAF_FLUTTERING_IN_WIND\n"
"LngText.text"
msgid "leaf3"
-msgstr ""
+msgstr "blad flyende"
#. 🍄 (U+1F344), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4158,7 +4145,7 @@ msgctxt ""
"MUSHROOM\n"
"LngText.text"
msgid "mushroom"
-msgstr ""
+msgstr "sopp"
#. 🍅 (U+1F345), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4167,7 +4154,7 @@ msgctxt ""
"TOMATO\n"
"LngText.text"
msgid "tomato"
-msgstr ""
+msgstr "tomat"
#. 🍆 (U+1F346), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4176,7 +4163,7 @@ msgctxt ""
"AUBERGINE\n"
"LngText.text"
msgid "eggplant"
-msgstr ""
+msgstr "aubergine"
#. 🍇 (U+1F347), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4185,7 +4172,7 @@ msgctxt ""
"GRAPES\n"
"LngText.text"
msgid "grapes"
-msgstr ""
+msgstr "druer"
#. 🍈 (U+1F348), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4194,7 +4181,7 @@ msgctxt ""
"MELON\n"
"LngText.text"
msgid "melon"
-msgstr ""
+msgstr "melon"
#. 🍉 (U+1F349), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4203,7 +4190,7 @@ msgctxt ""
"WATERMELON\n"
"LngText.text"
msgid "watermelon"
-msgstr ""
+msgstr "vannmelon"
#. 🍊 (U+1F34A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4212,7 +4199,7 @@ msgctxt ""
"TANGERINE\n"
"LngText.text"
msgid "tangerine"
-msgstr ""
+msgstr "mandarin"
#. 🍋 (U+1F34B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4221,7 +4208,7 @@ msgctxt ""
"LEMON\n"
"LngText.text"
msgid "lemon"
-msgstr ""
+msgstr "sitron"
#. 🍌 (U+1F34C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4230,7 +4217,7 @@ msgctxt ""
"BANANA\n"
"LngText.text"
msgid "banana"
-msgstr ""
+msgstr "banan"
#. 🍍 (U+1F34D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4239,7 +4226,7 @@ msgctxt ""
"PINEAPPLE\n"
"LngText.text"
msgid "pineapple"
-msgstr ""
+msgstr "ananas"
#. 🍎 (U+1F34E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4248,7 +4235,7 @@ msgctxt ""
"RED_APPLE\n"
"LngText.text"
msgid "apple"
-msgstr ""
+msgstr "eple"
#. 🍏 (U+1F34F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4257,7 +4244,7 @@ msgctxt ""
"GREEN_APPLE\n"
"LngText.text"
msgid "green apple"
-msgstr ""
+msgstr "grønt eple"
#. 🍐 (U+1F350), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4266,7 +4253,7 @@ msgctxt ""
"PEAR\n"
"LngText.text"
msgid "pear"
-msgstr ""
+msgstr "pære"
#. 🍑 (U+1F351), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4275,7 +4262,7 @@ msgctxt ""
"PEACH\n"
"LngText.text"
msgid "peach"
-msgstr ""
+msgstr "fersken"
#. 🍒 (U+1F352), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4284,7 +4271,7 @@ msgctxt ""
"CHERRIES\n"
"LngText.text"
msgid "cherries"
-msgstr ""
+msgstr "kirsebær"
#. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4293,7 +4280,7 @@ msgctxt ""
"STRAWBERRY\n"
"LngText.text"
msgid "strawberry"
-msgstr ""
+msgstr "jordbær"
#. 🍔 (U+1F354), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4302,7 +4289,7 @@ msgctxt ""
"HAMBURGER\n"
"LngText.text"
msgid "hamburger"
-msgstr ""
+msgstr "hamburger"
#. 🍕 (U+1F355), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4311,7 +4298,7 @@ msgctxt ""
"SLICE_OF_PIZZA\n"
"LngText.text"
msgid "pizza"
-msgstr ""
+msgstr "pizza"
#. 🍖 (U+1F356), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4320,7 +4307,7 @@ msgctxt ""
"MEAT_ON_BONE\n"
"LngText.text"
msgid "meat"
-msgstr ""
+msgstr "kjøtt"
#. 🍗 (U+1F357), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4329,7 +4316,7 @@ msgctxt ""
"POULTRY_LEG\n"
"LngText.text"
msgid "poultry leg"
-msgstr ""
+msgstr "kyllingbein"
#. 🍘 (U+1F358), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4338,7 +4325,7 @@ msgctxt ""
"RICE_CRACKER\n"
"LngText.text"
msgid "rice cracker"
-msgstr ""
+msgstr "risknekker"
#. 🍙 (U+1F359), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4347,7 +4334,7 @@ msgctxt ""
"RICE_BALL\n"
"LngText.text"
msgid "rice ball"
-msgstr ""
+msgstr "risboll"
#. 🍚 (U+1F35A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4356,7 +4343,7 @@ msgctxt ""
"COOKED_RICE\n"
"LngText.text"
msgid "rice"
-msgstr ""
+msgstr "ris"
#. 🍛 (U+1F35B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4365,7 +4352,7 @@ msgctxt ""
"CURRY_AND_RICE\n"
"LngText.text"
msgid "curry"
-msgstr ""
+msgstr "karri"
#. 🍜 (U+1F35C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4374,7 +4361,7 @@ msgctxt ""
"STEAMING_BOWL\n"
"LngText.text"
msgid "ramen"
-msgstr ""
+msgstr "nudelbolle"
#. 🍝 (U+1F35D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4383,7 +4370,7 @@ msgctxt ""
"SPAGHETTI\n"
"LngText.text"
msgid "spaghetti"
-msgstr ""
+msgstr "spaghetti"
#. 🍞 (U+1F35E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4392,7 +4379,7 @@ msgctxt ""
"BREAD\n"
"LngText.text"
msgid "bread"
-msgstr ""
+msgstr "brød"
#. 🍟 (U+1F35F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4401,7 +4388,7 @@ msgctxt ""
"FRENCH_FRIES\n"
"LngText.text"
msgid "fries"
-msgstr ""
+msgstr "pommes frites"
#. 🍠 (U+1F360), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4410,7 +4397,7 @@ msgctxt ""
"ROASTED_SWEET_POTATO\n"
"LngText.text"
msgid "sweet potato"
-msgstr ""
+msgstr "søtpotet"
#. 🍡 (U+1F361), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4419,7 +4406,7 @@ msgctxt ""
"DANGO\n"
"LngText.text"
msgid "dango"
-msgstr ""
+msgstr "dango"
#. 🍢 (U+1F362), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4428,7 +4415,7 @@ msgctxt ""
"ODEN\n"
"LngText.text"
msgid "oden"
-msgstr ""
+msgstr "oden"
#. 🍣 (U+1F363), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4437,7 +4424,7 @@ msgctxt ""
"SUSHI\n"
"LngText.text"
msgid "sushi"
-msgstr ""
+msgstr "sushi"
#. 🍤 (U+1F364), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4446,7 +4433,7 @@ msgctxt ""
"FRIED_SHRIMP\n"
"LngText.text"
msgid "fried shrimp"
-msgstr ""
+msgstr "stekt reke"
#. 🍥 (U+1F365), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4455,7 +4442,7 @@ msgctxt ""
"FISH_CAKE_WITH_SWIRL_DESIGN\n"
"LngText.text"
msgid "fish cake"
-msgstr ""
+msgstr "fiskekake"
#. 🍦 (U+1F366), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4464,7 +4451,7 @@ msgctxt ""
"SOFT_ICE_CREAM\n"
"LngText.text"
msgid "icecream"
-msgstr ""
+msgstr "softis"
#. 🍧 (U+1F367), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4473,7 +4460,7 @@ msgctxt ""
"SHAVED_ICE\n"
"LngText.text"
msgid "shaved ice"
-msgstr ""
+msgstr "høvlet is"
#. 🍨 (U+1F368), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4482,7 +4469,7 @@ msgctxt ""
"ICE_CREAM\n"
"LngText.text"
msgid "ice cream"
-msgstr ""
+msgstr "iskrem"
#. 🍩 (U+1F369), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4491,7 +4478,7 @@ msgctxt ""
"DOUGHNUT\n"
"LngText.text"
msgid "doughnut"
-msgstr ""
+msgstr "smultring"
#. 🍪 (U+1F36A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4500,7 +4487,7 @@ msgctxt ""
"COOKIE\n"
"LngText.text"
msgid "cookie"
-msgstr ""
+msgstr "informasjonskapsel"
#. 🍫 (U+1F36B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4509,7 +4496,7 @@ msgctxt ""
"CHOCOLATE_BAR\n"
"LngText.text"
msgid "chocolate"
-msgstr ""
+msgstr "sjokolade"
#. 🍬 (U+1F36C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4518,7 +4505,7 @@ msgctxt ""
"CANDY\n"
"LngText.text"
msgid "candy"
-msgstr ""
+msgstr "sukkertøy"
#. 🍭 (U+1F36D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4527,7 +4514,7 @@ msgctxt ""
"LOLLIPOP\n"
"LngText.text"
msgid "lollipop"
-msgstr ""
+msgstr "slikkepinne"
#. 🍮 (U+1F36E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4536,7 +4523,7 @@ msgctxt ""
"CUSTARD\n"
"LngText.text"
msgid "custard"
-msgstr ""
+msgstr "vaniljesaus"
#. 🍯 (U+1F36F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4545,7 +4532,7 @@ msgctxt ""
"HONEY_POT\n"
"LngText.text"
msgid "honey"
-msgstr ""
+msgstr "honningkrukke"
#. 🍰 (U+1F370), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4554,7 +4541,7 @@ msgctxt ""
"SHORTCAKE\n"
"LngText.text"
msgid "cake"
-msgstr ""
+msgstr "kake"
#. 🍱 (U+1F371), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4563,7 +4550,7 @@ msgctxt ""
"BENTO_BOX\n"
"LngText.text"
msgid "bento"
-msgstr ""
+msgstr "bento"
#. 🍲 (U+1F372), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4572,7 +4559,7 @@ msgctxt ""
"POT_OF_FOOD\n"
"LngText.text"
msgid "stew"
-msgstr ""
+msgstr "gryterett"
#. 🍳 (U+1F373), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4581,7 +4568,7 @@ msgctxt ""
"COOKING\n"
"LngText.text"
msgid "egg"
-msgstr ""
+msgstr "egg"
#. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4590,7 +4577,7 @@ msgctxt ""
"FORK_AND_KNIFE\n"
"LngText.text"
msgid "restaurant"
-msgstr ""
+msgstr "restaurant"
#. 🍵 (U+1F375), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4599,7 +4586,7 @@ msgctxt ""
"TEACUP_WITHOUT_HANDLE\n"
"LngText.text"
msgid "tea"
-msgstr ""
+msgstr "tea"
#. 🍶 (U+1F376), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4608,7 +4595,7 @@ msgctxt ""
"SAKE_BOTTLE_AND_CUP\n"
"LngText.text"
msgid "sake"
-msgstr ""
+msgstr "sake"
#. 🍷 (U+1F377), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4617,7 +4604,7 @@ msgctxt ""
"WINE_GLASS\n"
"LngText.text"
msgid "wine glass"
-msgstr ""
+msgstr "vinglass"
#. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4626,7 +4613,7 @@ msgctxt ""
"COCKTAIL_GLASS\n"
"LngText.text"
msgid "cocktail"
-msgstr ""
+msgstr "cocktailglass"
#. 🍹 (U+1F379), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4635,7 +4622,7 @@ msgctxt ""
"TROPICAL_DRINK\n"
"LngText.text"
msgid "tropical drink"
-msgstr ""
+msgstr "tropisk drink"
#. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4644,7 +4631,7 @@ msgctxt ""
"BEER_MUG\n"
"LngText.text"
msgid "beer"
-msgstr ""
+msgstr "øl"
#. 🍻 (U+1F37B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4653,7 +4640,7 @@ msgctxt ""
"CLINKING_BEER_MUGS\n"
"LngText.text"
msgid "beer2"
-msgstr ""
+msgstr "ølkrus"
#. 🍼 (U+1F37C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4662,7 +4649,7 @@ msgctxt ""
"BABY_BOTTLE\n"
"LngText.text"
msgid "baby bottle"
-msgstr ""
+msgstr "tåteflaske"
#. 🎀 (U+1F380), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4671,7 +4658,7 @@ msgctxt ""
"RIBBON\n"
"LngText.text"
msgid "ribbon"
-msgstr ""
+msgstr "bånd"
#. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4680,7 +4667,7 @@ msgctxt ""
"WRAPPED_PRESENT\n"
"LngText.text"
msgid "gift"
-msgstr ""
+msgstr "gave"
#. 🎂 (U+1F382), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4689,7 +4676,7 @@ msgctxt ""
"BIRTHDAY_CAKE\n"
"LngText.text"
msgid "birthday"
-msgstr ""
+msgstr "fødselsdag"
#. 🎃 (U+1F383), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4698,7 +4685,7 @@ msgctxt ""
"JACK-O-LANTERN\n"
"LngText.text"
msgid "Halloween"
-msgstr ""
+msgstr "Halloween"
#. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4707,7 +4694,7 @@ msgctxt ""
"CHRISTMAS_TREE\n"
"LngText.text"
msgid "Christmas"
-msgstr ""
+msgstr "Jul"
#. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4716,7 +4703,7 @@ msgctxt ""
"FATHER_CHRISTMAS\n"
"LngText.text"
msgid "Santa"
-msgstr ""
+msgstr "Julenisse"
#. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4725,7 +4712,7 @@ msgctxt ""
"FIREWORKS\n"
"LngText.text"
msgid "fireworks"
-msgstr ""
+msgstr "fyrverkeri"
#. 🎇 (U+1F387), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4734,7 +4721,7 @@ msgctxt ""
"FIREWORK_SPARKLER\n"
"LngText.text"
msgid "sparkler"
-msgstr ""
+msgstr "stjerneskudd"
#. 🎈 (U+1F388), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4743,7 +4730,7 @@ msgctxt ""
"BALLOON\n"
"LngText.text"
msgid "balloon"
-msgstr ""
+msgstr "ballong"
#. 🎉 (U+1F389), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4752,7 +4739,7 @@ msgctxt ""
"PARTY_POPPER\n"
"LngText.text"
msgid "party"
-msgstr ""
+msgstr "fest"
#. 🎊 (U+1F38A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4761,7 +4748,7 @@ msgctxt ""
"CONFETTI_BALL\n"
"LngText.text"
msgid "confetti ball"
-msgstr ""
+msgstr "konfettiball"
#. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4770,7 +4757,7 @@ msgctxt ""
"TANABATA_TREE\n"
"LngText.text"
msgid "tanabata tree"
-msgstr ""
+msgstr "tanabata tre"
#. 🎌 (U+1F38C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4779,7 +4766,7 @@ msgctxt ""
"CROSSED_FLAGS\n"
"LngText.text"
msgid "flags"
-msgstr ""
+msgstr "flagg"
#. 🎍 (U+1F38D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4788,7 +4775,7 @@ msgctxt ""
"PINE_DECORATION\n"
"LngText.text"
msgid "bamboo"
-msgstr ""
+msgstr "bambus"
#. 🎎 (U+1F38E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4797,7 +4784,7 @@ msgctxt ""
"JAPANESE_DOLLS\n"
"LngText.text"
msgid "dolls"
-msgstr ""
+msgstr "dukker"
#. 🎏 (U+1F38F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4806,7 +4793,7 @@ msgctxt ""
"CARP_STREAMER\n"
"LngText.text"
msgid "flags2"
-msgstr ""
+msgstr "flagg2"
#. 🎐 (U+1F390), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4815,7 +4802,7 @@ msgctxt ""
"WIND_CHIME\n"
"LngText.text"
msgid "wind chime"
-msgstr ""
+msgstr "vindbjelle"
#. 🎑 (U+1F391), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4824,7 +4811,7 @@ msgctxt ""
"MOON_VIEWING_CEREMONY\n"
"LngText.text"
msgid "rice scene"
-msgstr ""
+msgstr "måneseremoni"
#. 🎒 (U+1F392), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4833,7 +4820,7 @@ msgctxt ""
"SCHOOL_SATCHEL\n"
"LngText.text"
msgid "school satchel"
-msgstr ""
+msgstr "ransel"
#. 🎓 (U+1F393), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4842,7 +4829,7 @@ msgctxt ""
"GRADUATION_CAP\n"
"LngText.text"
msgid "graduation"
-msgstr ""
+msgstr "eksamen"
#. 🎠 (U+1F3A0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4851,7 +4838,7 @@ msgctxt ""
"CAROUSEL_HORSE\n"
"LngText.text"
msgid "carousel horse"
-msgstr ""
+msgstr "karusellhest"
#. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4860,7 +4847,7 @@ msgctxt ""
"FERRIS_WHEEL\n"
"LngText.text"
msgid "ferris wheel"
-msgstr ""
+msgstr "pariserhjul"
#. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4869,7 +4856,7 @@ msgctxt ""
"ROLLER_COASTER\n"
"LngText.text"
msgid "roller coaster"
-msgstr ""
+msgstr "berg og dalbane"
#. 🎣 (U+1F3A3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4878,7 +4865,7 @@ msgctxt ""
"FISHING_POLE_AND_FISH\n"
"LngText.text"
msgid "fishing"
-msgstr ""
+msgstr "fiske"
#. 🎤 (U+1F3A4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4887,7 +4874,7 @@ msgctxt ""
"MICROPHONE\n"
"LngText.text"
msgid "microphone"
-msgstr ""
+msgstr "mikrofon"
#. 🎥 (U+1F3A5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4896,7 +4883,7 @@ msgctxt ""
"MOVIE_CAMERA\n"
"LngText.text"
msgid "movie camera"
-msgstr ""
+msgstr "filmkamera"
#. 🎦 (U+1F3A6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4905,7 +4892,7 @@ msgctxt ""
"CINEMA\n"
"LngText.text"
msgid "cinema"
-msgstr ""
+msgstr "kino"
#. 🎧 (U+1F3A7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4914,7 +4901,7 @@ msgctxt ""
"HEADPHONE\n"
"LngText.text"
msgid "headphone"
-msgstr ""
+msgstr "øretelefoner"
#. 🎨 (U+1F3A8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4923,7 +4910,7 @@ msgctxt ""
"ARTIST_PALETTE\n"
"LngText.text"
msgid "art"
-msgstr ""
+msgstr "fargepalett"
#. 🎩 (U+1F3A9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4932,7 +4919,7 @@ msgctxt ""
"TOP_HAT\n"
"LngText.text"
msgid "top hat"
-msgstr ""
+msgstr "flosshatt"
#. 🎪 (U+1F3AA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4941,7 +4928,7 @@ msgctxt ""
"CIRCUS_TENT\n"
"LngText.text"
msgid "circus tent"
-msgstr ""
+msgstr "sirkustelt"
#. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4950,7 +4937,7 @@ msgctxt ""
"TICKET\n"
"LngText.text"
msgid "ticket"
-msgstr ""
+msgstr "billett"
#. 🎬 (U+1F3AC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4959,7 +4946,7 @@ msgctxt ""
"CLAPPER_BOARD\n"
"LngText.text"
msgid "clapper"
-msgstr ""
+msgstr "klapper"
#. 🎭 (U+1F3AD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4968,7 +4955,7 @@ msgctxt ""
"PERFORMING_ARTS\n"
"LngText.text"
msgid "theatre"
-msgstr ""
+msgstr "teater"
#. 🎮 (U+1F3AE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4977,7 +4964,7 @@ msgctxt ""
"VIDEO_GAME\n"
"LngText.text"
msgid "video game"
-msgstr ""
+msgstr "dataspill"
#. 🎯 (U+1F3AF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4986,7 +4973,7 @@ msgctxt ""
"DIRECT_HIT\n"
"LngText.text"
msgid "hit"
-msgstr ""
+msgstr "blink"
#. 🎰 (U+1F3B0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -4995,7 +4982,7 @@ msgctxt ""
"SLOT_MACHINE\n"
"LngText.text"
msgid "slot machine"
-msgstr ""
+msgstr "spilleautomat"
#. 🎱 (U+1F3B1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5004,7 +4991,7 @@ msgctxt ""
"BILLIARDS\n"
"LngText.text"
msgid "billiards"
-msgstr ""
+msgstr "biljard"
#. 🎲 (U+1F3B2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5013,7 +5000,7 @@ msgctxt ""
"GAME_DIE\n"
"LngText.text"
msgid "dice"
-msgstr ""
+msgstr "terninger"
#. 🎳 (U+1F3B3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5022,7 +5009,7 @@ msgctxt ""
"BOWLING\n"
"LngText.text"
msgid "bowling"
-msgstr ""
+msgstr "bowling"
#. 🎴 (U+1F3B4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5031,7 +5018,7 @@ msgctxt ""
"FLOWER_PLAYING_CARDS\n"
"LngText.text"
msgid "cards"
-msgstr ""
+msgstr "kort"
#. 🎵 (U+1F3B5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5040,7 +5027,7 @@ msgctxt ""
"MUSICAL_NOTE\n"
"LngText.text"
msgid "music2"
-msgstr ""
+msgstr "musikk"
#. 🎶 (U+1F3B6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5049,7 +5036,7 @@ msgctxt ""
"MULTIPLE_MUSICAL_NOTES\n"
"LngText.text"
msgid "music"
-msgstr ""
+msgstr "musikknote"
#. 🎷 (U+1F3B7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5058,7 +5045,7 @@ msgctxt ""
"SAXOPHONE\n"
"LngText.text"
msgid "saxophone"
-msgstr ""
+msgstr "saksofon"
#. 🎸 (U+1F3B8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5067,7 +5054,7 @@ msgctxt ""
"GUITAR\n"
"LngText.text"
msgid "guitar"
-msgstr ""
+msgstr "gitar"
#. 🎹 (U+1F3B9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5076,7 +5063,7 @@ msgctxt ""
"MUSICAL_KEYBOARD\n"
"LngText.text"
msgid "piano"
-msgstr ""
+msgstr "piano"
#. 🎺 (U+1F3BA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5085,7 +5072,7 @@ msgctxt ""
"TRUMPET\n"
"LngText.text"
msgid "trumpet"
-msgstr ""
+msgstr "trompet"
#. 🎻 (U+1F3BB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5094,7 +5081,7 @@ msgctxt ""
"VIOLIN\n"
"LngText.text"
msgid "violin"
-msgstr ""
+msgstr "fiolin"
#. 🎼 (U+1F3BC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5103,7 +5090,7 @@ msgctxt ""
"MUSICAL_SCORE\n"
"LngText.text"
msgid "score"
-msgstr ""
+msgstr "partitur"
#. 🎽 (U+1F3BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5112,7 +5099,7 @@ msgctxt ""
"RUNNING_SHIRT_WITH_SASH\n"
"LngText.text"
msgid "shirt2"
-msgstr ""
+msgstr "singlet"
#. 🎾 (U+1F3BE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5121,7 +5108,7 @@ msgctxt ""
"TENNIS_RACQUET_AND_BALL\n"
"LngText.text"
msgid "tennis"
-msgstr ""
+msgstr "tennis"
#. 🎿 (U+1F3BF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5130,7 +5117,7 @@ msgctxt ""
"SKI_AND_SKI_BOOT\n"
"LngText.text"
msgid "ski"
-msgstr ""
+msgstr "ski"
#. 🏀 (U+1F3C0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5139,7 +5126,7 @@ msgctxt ""
"BASKETBALL_AND_HOOP\n"
"LngText.text"
msgid "basketball"
-msgstr ""
+msgstr "basketball"
#. 🏁 (U+1F3C1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5148,7 +5135,7 @@ msgctxt ""
"CHEQUERED_FLAG\n"
"LngText.text"
msgid "flag3"
-msgstr ""
+msgstr "motorsport"
#. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5157,7 +5144,7 @@ msgctxt ""
"SNOWBOARDER\n"
"LngText.text"
msgid "snowboarder"
-msgstr ""
+msgstr "snøbrett"
#. 🏃 (U+1F3C3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5166,7 +5153,7 @@ msgctxt ""
"RUNNER\n"
"LngText.text"
msgid "runner"
-msgstr ""
+msgstr "løper"
#. 🏄 (U+1F3C4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5175,7 +5162,7 @@ msgctxt ""
"SURFER\n"
"LngText.text"
msgid "surfer"
-msgstr ""
+msgstr "surfer"
#. 🏆 (U+1F3C6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5184,7 +5171,7 @@ msgctxt ""
"TROPHY\n"
"LngText.text"
msgid "trophy"
-msgstr ""
+msgstr "trofe"
#. 🏇 (U+1F3C7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5193,7 +5180,7 @@ msgctxt ""
"HORSE_RACING\n"
"LngText.text"
msgid "horse racing"
-msgstr ""
+msgstr "hesteløp"
#. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5202,7 +5189,7 @@ msgctxt ""
"AMERICAN_FOOTBALL\n"
"LngText.text"
msgid "football"
-msgstr ""
+msgstr "amerikansk fotball"
#. 🏉 (U+1F3C9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5211,7 +5198,7 @@ msgctxt ""
"RUGBY_FOOTBALL\n"
"LngText.text"
msgid "rugby football"
-msgstr ""
+msgstr "rugby"
#. 🏊 (U+1F3CA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5220,7 +5207,7 @@ msgctxt ""
"SWIMMER\n"
"LngText.text"
msgid "swimmer"
-msgstr ""
+msgstr "svømmer"
#. 🏠 (U+1F3E0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5229,7 +5216,7 @@ msgctxt ""
"HOUSE_BUILDING\n"
"LngText.text"
msgid "house"
-msgstr ""
+msgstr "hus"
#. 🏡 (U+1F3E1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5238,7 +5225,7 @@ msgctxt ""
"HOUSE_WITH_GARDEN\n"
"LngText.text"
msgid "house2"
-msgstr ""
+msgstr "hus med hage"
#. 🏢 (U+1F3E2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5247,7 +5234,7 @@ msgctxt ""
"OFFICE_BUILDING\n"
"LngText.text"
msgid "office"
-msgstr ""
+msgstr "kontor"
#. 🏣 (U+1F3E3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5256,7 +5243,7 @@ msgctxt ""
"JAPANESE_POST_OFFICE\n"
"LngText.text"
msgid "post office2"
-msgstr ""
+msgstr "japansk posthus"
#. 🏤 (U+1F3E4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5265,7 +5252,7 @@ msgctxt ""
"EUROPEAN_POST_OFFICE\n"
"LngText.text"
msgid "post office"
-msgstr ""
+msgstr "posthus"
#. 🏥 (U+1F3E5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5274,7 +5261,7 @@ msgctxt ""
"HOSPITAL\n"
"LngText.text"
msgid "hospital"
-msgstr ""
+msgstr "sykehus"
#. 🏦 (U+1F3E6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5283,7 +5270,7 @@ msgctxt ""
"BANK\n"
"LngText.text"
msgid "bank"
-msgstr ""
+msgstr "bank"
#. 🏧 (U+1F3E7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5292,7 +5279,7 @@ msgctxt ""
"AUTOMATED_TELLER_MACHINE\n"
"LngText.text"
msgid "atm"
-msgstr ""
+msgstr "minibank"
#. 🏨 (U+1F3E8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5301,7 +5288,7 @@ msgctxt ""
"HOTEL\n"
"LngText.text"
msgid "hotel"
-msgstr ""
+msgstr "hotell"
#. 🏩 (U+1F3E9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5310,7 +5297,7 @@ msgctxt ""
"LOVE_HOTEL\n"
"LngText.text"
msgid "hotel2"
-msgstr ""
+msgstr "timeshotell"
#. 🏪 (U+1F3EA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5319,7 +5306,7 @@ msgctxt ""
"CONVENIENCE_STORE\n"
"LngText.text"
msgid "store"
-msgstr ""
+msgstr "butikk"
#. 🏫 (U+1F3EB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5328,7 +5315,7 @@ msgctxt ""
"SCHOOL\n"
"LngText.text"
msgid "school"
-msgstr ""
+msgstr "skole"
#. 🏬 (U+1F3EC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5337,7 +5324,7 @@ msgctxt ""
"DEPARTMENT_STORE\n"
"LngText.text"
msgid "store2"
-msgstr ""
+msgstr "kjøpesenter"
#. 🏭 (U+1F3ED), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5346,7 +5333,7 @@ msgctxt ""
"FACTORY\n"
"LngText.text"
msgid "factory"
-msgstr ""
+msgstr "fabrikk"
#. 🏮 (U+1F3EE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5355,7 +5342,7 @@ msgctxt ""
"IZAKAYA_LANTERN\n"
"LngText.text"
msgid "lantern"
-msgstr ""
+msgstr "lanterne"
#. 🏯 (U+1F3EF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5364,7 +5351,7 @@ msgctxt ""
"JAPANESE_CASTLE\n"
"LngText.text"
msgid "castle2"
-msgstr ""
+msgstr "japansk slott"
#. 🏰 (U+1F3F0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5373,7 +5360,7 @@ msgctxt ""
"EUROPEAN_CASTLE\n"
"LngText.text"
msgid "castle"
-msgstr ""
+msgstr "slott"
#. 🐀 (U+1F400), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5382,7 +5369,7 @@ msgctxt ""
"RAT\n"
"LngText.text"
msgid "rat"
-msgstr ""
+msgstr "råtte"
#. 🐁 (U+1F401), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5391,7 +5378,7 @@ msgctxt ""
"MOUSE\n"
"LngText.text"
msgid "mouse"
-msgstr ""
+msgstr "mus"
#. 🐂 (U+1F402), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5400,7 +5387,7 @@ msgctxt ""
"OX\n"
"LngText.text"
msgid "ox"
-msgstr ""
+msgstr "okse"
#. 🐃 (U+1F403), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5409,7 +5396,7 @@ msgctxt ""
"WATER_BUFFALO\n"
"LngText.text"
msgid "water buffalo"
-msgstr ""
+msgstr "vannbøffel"
#. 🐄 (U+1F404), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5418,7 +5405,7 @@ msgctxt ""
"COW\n"
"LngText.text"
msgid "cow"
-msgstr ""
+msgstr "ku"
#. 🐅 (U+1F405), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5427,7 +5414,7 @@ msgctxt ""
"TIGER\n"
"LngText.text"
msgid "tiger"
-msgstr ""
+msgstr "tiger"
#. 🐆 (U+1F406), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5436,7 +5423,7 @@ msgctxt ""
"LEOPARD\n"
"LngText.text"
msgid "leopard"
-msgstr ""
+msgstr "leopard"
#. 🐇 (U+1F407), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5445,7 +5432,7 @@ msgctxt ""
"RABBIT\n"
"LngText.text"
msgid "rabbit"
-msgstr ""
+msgstr "kanin"
#. 🐈 (U+1F408), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5454,7 +5441,7 @@ msgctxt ""
"CAT\n"
"LngText.text"
msgid "cat"
-msgstr ""
+msgstr "katt"
#. 🐉 (U+1F409), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5463,7 +5450,7 @@ msgctxt ""
"DRAGON\n"
"LngText.text"
msgid "dragon"
-msgstr ""
+msgstr "drage"
#. 🐊 (U+1F40A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5472,7 +5459,7 @@ msgctxt ""
"CROCODILE\n"
"LngText.text"
msgid "crocodile"
-msgstr ""
+msgstr "krokodille"
#. 🐋 (U+1F40B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5481,7 +5468,7 @@ msgctxt ""
"WHALE\n"
"LngText.text"
msgid "whale2"
-msgstr ""
+msgstr "hval"
#. 🐌 (U+1F40C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5490,7 +5477,7 @@ msgctxt ""
"SNAIL\n"
"LngText.text"
msgid "snail"
-msgstr ""
+msgstr "snegle"
#. 🐍 (U+1F40D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5499,7 +5486,7 @@ msgctxt ""
"SNAKE\n"
"LngText.text"
msgid "snake"
-msgstr ""
+msgstr "slange"
#. 🐎 (U+1F40E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5508,7 +5495,7 @@ msgctxt ""
"HORSE\n"
"LngText.text"
msgid "horse"
-msgstr ""
+msgstr "hest"
#. 🐏 (U+1F40F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5517,7 +5504,7 @@ msgctxt ""
"RAM\n"
"LngText.text"
msgid "ram"
-msgstr ""
+msgstr "vær"
#. 🐐 (U+1F410), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5526,7 +5513,7 @@ msgctxt ""
"GOAT\n"
"LngText.text"
msgid "goat"
-msgstr ""
+msgstr "geit"
#. 🐑 (U+1F411), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5535,7 +5522,7 @@ msgctxt ""
"SHEEP\n"
"LngText.text"
msgid "sheep"
-msgstr ""
+msgstr "sau"
#. 🐒 (U+1F412), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5544,7 +5531,7 @@ msgctxt ""
"MONKEY\n"
"LngText.text"
msgid "monkey"
-msgstr ""
+msgstr "apekatt"
#. 🐓 (U+1F413), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5553,7 +5540,7 @@ msgctxt ""
"ROOSTER\n"
"LngText.text"
msgid "rooster"
-msgstr ""
+msgstr "hane"
#. 🐔 (U+1F414), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5562,7 +5549,7 @@ msgctxt ""
"CHICKEN\n"
"LngText.text"
msgid "chicken"
-msgstr ""
+msgstr "kylling"
#. 🐕 (U+1F415), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5571,7 +5558,7 @@ msgctxt ""
"DOG\n"
"LngText.text"
msgid "dog"
-msgstr ""
+msgstr "hund"
#. 🐖 (U+1F416), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5580,7 +5567,7 @@ msgctxt ""
"PIG\n"
"LngText.text"
msgid "pig"
-msgstr ""
+msgstr "gris"
#. 🐗 (U+1F417), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5589,7 +5576,7 @@ msgctxt ""
"BOAR\n"
"LngText.text"
msgid "boar"
-msgstr ""
+msgstr "villsvin"
#. 🐘 (U+1F418), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5598,7 +5585,7 @@ msgctxt ""
"ELEPHANT\n"
"LngText.text"
msgid "elephant"
-msgstr ""
+msgstr "elefant"
#. 🐙 (U+1F419), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5607,7 +5594,7 @@ msgctxt ""
"OCTOPUS\n"
"LngText.text"
msgid "octopus"
-msgstr ""
+msgstr "blekksprut"
#. 🐚 (U+1F41A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5616,7 +5603,7 @@ msgctxt ""
"SPIRAL_SHELL\n"
"LngText.text"
msgid "shell"
-msgstr ""
+msgstr "skjell"
#. 🐛 (U+1F41B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5625,7 +5612,7 @@ msgctxt ""
"BUG\n"
"LngText.text"
msgid "bug"
-msgstr ""
+msgstr "feil"
#. 🐜 (U+1F41C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5634,7 +5621,7 @@ msgctxt ""
"ANT\n"
"LngText.text"
msgid "ant"
-msgstr ""
+msgstr "maur"
#. 🐝 (U+1F41D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5643,7 +5630,7 @@ msgctxt ""
"HONEYBEE\n"
"LngText.text"
msgid "bee"
-msgstr ""
+msgstr "bie"
#. 🐞 (U+1F41E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5652,7 +5639,7 @@ msgctxt ""
"LADY_BEETLE\n"
"LngText.text"
msgid "ladybug"
-msgstr ""
+msgstr "marihøne"
#. 🐟 (U+1F41F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5661,7 +5648,7 @@ msgctxt ""
"FISH\n"
"LngText.text"
msgid "fish"
-msgstr ""
+msgstr "fisk"
#. 🐠 (U+1F420), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5670,7 +5657,7 @@ msgctxt ""
"TROPICAL_FISH\n"
"LngText.text"
msgid "fish2"
-msgstr ""
+msgstr "tropisk fisk"
#. 🐡 (U+1F421), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5679,7 +5666,7 @@ msgctxt ""
"BLOWFISH\n"
"LngText.text"
msgid "fish3"
-msgstr ""
+msgstr "kulefisk"
#. 🐢 (U+1F422), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5688,7 +5675,7 @@ msgctxt ""
"TURTLE\n"
"LngText.text"
msgid "turtle"
-msgstr ""
+msgstr "skilpadde"
#. 🐣 (U+1F423), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5697,7 +5684,7 @@ msgctxt ""
"HATCHING_CHICK\n"
"LngText.text"
msgid "chick"
-msgstr ""
+msgstr "nyklekt kylling"
#. 🐤 (U+1F424), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5706,7 +5693,7 @@ msgctxt ""
"BABY_CHICK\n"
"LngText.text"
msgid "chick2"
-msgstr ""
+msgstr "kylling"
#. 🐥 (U+1F425), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5715,7 +5702,7 @@ msgctxt ""
"FRONT-FACING_BABY_CHICK\n"
"LngText.text"
msgid "chick3"
-msgstr ""
+msgstr "kylling, front"
#. 🐦 (U+1F426), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5724,7 +5711,7 @@ msgctxt ""
"BIRD\n"
"LngText.text"
msgid "bird"
-msgstr ""
+msgstr "fugl"
#. 🐧 (U+1F427), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5733,7 +5720,7 @@ msgctxt ""
"PENGUIN\n"
"LngText.text"
msgid "penguin"
-msgstr ""
+msgstr "pingvin"
#. 🐨 (U+1F428), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5742,7 +5729,7 @@ msgctxt ""
"KOALA\n"
"LngText.text"
msgid "koala"
-msgstr ""
+msgstr "koala"
#. 🐩 (U+1F429), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5751,7 +5738,7 @@ msgctxt ""
"POODLE\n"
"LngText.text"
msgid "poodle"
-msgstr ""
+msgstr "puddel"
#. 🐪 (U+1F42A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5760,7 +5747,7 @@ msgctxt ""
"DROMEDARY_CAMEL\n"
"LngText.text"
msgid "camel"
-msgstr ""
+msgstr "dromedar"
#. 🐫 (U+1F42B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5769,7 +5756,7 @@ msgctxt ""
"BACTRIAN_CAMEL\n"
"LngText.text"
msgid "camel2"
-msgstr ""
+msgstr "kamel"
#. 🐬 (U+1F42C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5778,7 +5765,7 @@ msgctxt ""
"DOLPHIN\n"
"LngText.text"
msgid "dolphin"
-msgstr ""
+msgstr "delfin"
#. 🐭 (U+1F42D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5787,7 +5774,7 @@ msgctxt ""
"MOUSE_FACE\n"
"LngText.text"
msgid "mouse2"
-msgstr ""
+msgstr "museansikt"
#. 🐮 (U+1F42E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5796,7 +5783,7 @@ msgctxt ""
"COW_FACE\n"
"LngText.text"
msgid "cow2"
-msgstr ""
+msgstr "kuansikt"
#. 🐯 (U+1F42F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5805,7 +5792,7 @@ msgctxt ""
"TIGER_FACE\n"
"LngText.text"
msgid "tiger2"
-msgstr ""
+msgstr "tigeransikt"
#. 🐰 (U+1F430), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5814,7 +5801,7 @@ msgctxt ""
"RABBIT_FACE\n"
"LngText.text"
msgid "rabbit2"
-msgstr ""
+msgstr "kaninansikt"
#. 🐱 (U+1F431), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5823,7 +5810,7 @@ msgctxt ""
"CAT_FACE\n"
"LngText.text"
msgid "cat2"
-msgstr ""
+msgstr "katteansikt"
#. 🐲 (U+1F432), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5832,7 +5819,7 @@ msgctxt ""
"DRAGON_FACE\n"
"LngText.text"
msgid "dragon2"
-msgstr ""
+msgstr "drageansikt"
#. 🐳 (U+1F433), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5841,7 +5828,7 @@ msgctxt ""
"SPOUTING_WHALE\n"
"LngText.text"
msgid "whale"
-msgstr ""
+msgstr "blåsende hval"
#. 🐴 (U+1F434), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5850,7 +5837,7 @@ msgctxt ""
"HORSE_FACE\n"
"LngText.text"
msgid "horse2"
-msgstr ""
+msgstr "hesteansikt"
#. 🐵 (U+1F435), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5859,7 +5846,7 @@ msgctxt ""
"MONKEY_FACE\n"
"LngText.text"
msgid "monkey2"
-msgstr ""
+msgstr "apeansikt"
#. 🐶 (U+1F436), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5868,7 +5855,7 @@ msgctxt ""
"DOG_FACE\n"
"LngText.text"
msgid "dog2"
-msgstr ""
+msgstr "hundeansikt"
#. 🐷 (U+1F437), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5877,7 +5864,7 @@ msgctxt ""
"PIG_FACE\n"
"LngText.text"
msgid "pig2"
-msgstr ""
+msgstr "griseansikt"
#. 🐸 (U+1F438), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5886,7 +5873,7 @@ msgctxt ""
"FROG_FACE\n"
"LngText.text"
msgid "frog"
-msgstr ""
+msgstr "froskeansikt"
#. 🐹 (U+1F439), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5895,7 +5882,7 @@ msgctxt ""
"HAMSTER_FACE\n"
"LngText.text"
msgid "hamster"
-msgstr ""
+msgstr "hamsteransikt"
#. 🐺 (U+1F43A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5904,7 +5891,7 @@ msgctxt ""
"WOLF_FACE\n"
"LngText.text"
msgid "wolf"
-msgstr ""
+msgstr "ulveansikt"
#. 🐻 (U+1F43B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5913,7 +5900,7 @@ msgctxt ""
"BEAR_FACE\n"
"LngText.text"
msgid "bear"
-msgstr ""
+msgstr "bjørneansikt"
#. 🐼 (U+1F43C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5922,7 +5909,7 @@ msgctxt ""
"PANDA_FACE\n"
"LngText.text"
msgid "panda"
-msgstr ""
+msgstr "pandaansikt"
#. 🐽 (U+1F43D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5931,7 +5918,7 @@ msgctxt ""
"PIG_NOSE\n"
"LngText.text"
msgid "pig nose"
-msgstr ""
+msgstr "grisetryne"
#. 🐾 (U+1F43E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5940,7 +5927,7 @@ msgctxt ""
"PAW_PRINTS\n"
"LngText.text"
msgid "feet"
-msgstr ""
+msgstr "fotspor"
#. 👀 (U+1F440), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5949,7 +5936,7 @@ msgctxt ""
"EYES\n"
"LngText.text"
msgid "eyes"
-msgstr ""
+msgstr "øye"
#. 👂 (U+1F442), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5958,7 +5945,7 @@ msgctxt ""
"EAR\n"
"LngText.text"
msgid "ear"
-msgstr ""
+msgstr "øre"
#. 👃 (U+1F443), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5967,7 +5954,7 @@ msgctxt ""
"NOSE\n"
"LngText.text"
msgid "nose"
-msgstr ""
+msgstr "nese"
#. 👄 (U+1F444), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5976,7 +5963,7 @@ msgctxt ""
"MOUTH\n"
"LngText.text"
msgid "mouth"
-msgstr ""
+msgstr "munn"
#. 👅 (U+1F445), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5985,7 +5972,7 @@ msgctxt ""
"TONGUE\n"
"LngText.text"
msgid "tongue"
-msgstr ""
+msgstr "tunge"
#. 👆 (U+1F446), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -5994,7 +5981,7 @@ msgctxt ""
"WHITE_UP_POINTING_BACKHAND_INDEX\n"
"LngText.text"
msgid "up2"
-msgstr ""
+msgstr "pekehånd, opp"
#. 👇 (U+1F447), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6003,7 +5990,7 @@ msgctxt ""
"WHITE_DOWN_POINTING_BACKHAND_INDEX\n"
"LngText.text"
msgid "down2"
-msgstr ""
+msgstr "pekehånd, ned"
#. 👈 (U+1F448), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6012,7 +5999,7 @@ msgctxt ""
"WHITE_LEFT_POINTING_BACKHAND_INDEX\n"
"LngText.text"
msgid "left2"
-msgstr ""
+msgstr "pekehånd, venstre"
#. 👉 (U+1F449), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6021,7 +6008,7 @@ msgctxt ""
"WHITE_RIGHT_POINTING_BACKHAND_INDEX\n"
"LngText.text"
msgid "right2"
-msgstr ""
+msgstr "pekehånd, høyre"
#. 👊 (U+1F44A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6030,7 +6017,7 @@ msgctxt ""
"FISTED_HAND_SIGN\n"
"LngText.text"
msgid "fist2"
-msgstr ""
+msgstr "knyttneve"
#. 👋 (U+1F44B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6039,7 +6026,7 @@ msgctxt ""
"WAVING_HAND_SIGN\n"
"LngText.text"
msgid "wave"
-msgstr ""
+msgstr "vinkende hånd"
#. 👌 (U+1F44C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6048,7 +6035,7 @@ msgctxt ""
"OK_HAND_SIGN\n"
"LngText.text"
msgid "ok"
-msgstr ""
+msgstr "ok"
#. 👍 (U+1F44D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6057,7 +6044,7 @@ msgctxt ""
"THUMBS_UP_SIGN\n"
"LngText.text"
msgid "yes"
-msgstr ""
+msgstr "ja"
#. 👎 (U+1F44E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6066,7 +6053,7 @@ msgctxt ""
"THUMBS_DOWN_SIGN\n"
"LngText.text"
msgid "no"
-msgstr ""
+msgstr "nei"
#. 👏 (U+1F44F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6075,7 +6062,7 @@ msgctxt ""
"CLAPPING_HANDS_SIGN\n"
"LngText.text"
msgid "clap"
-msgstr ""
+msgstr "applaus"
#. 👐 (U+1F450), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6084,7 +6071,7 @@ msgctxt ""
"OPEN_HANDS_SIGN\n"
"LngText.text"
msgid "open hands"
-msgstr ""
+msgstr "åpne hender"
#. 👑 (U+1F451), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6093,7 +6080,7 @@ msgctxt ""
"CROWN\n"
"LngText.text"
msgid "crown"
-msgstr ""
+msgstr "krone"
#. 👒 (U+1F452), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6102,7 +6089,7 @@ msgctxt ""
"WOMANS_HAT\n"
"LngText.text"
msgid "hat"
-msgstr ""
+msgstr "damehatt"
#. 👓 (U+1F453), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6111,7 +6098,7 @@ msgctxt ""
"EYEGLASSES\n"
"LngText.text"
msgid "eyeglasses"
-msgstr ""
+msgstr "briller"
#. 👔 (U+1F454), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6120,7 +6107,7 @@ msgctxt ""
"NECKTIE\n"
"LngText.text"
msgid "necktie"
-msgstr ""
+msgstr "slips"
#. 👕 (U+1F455), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6129,7 +6116,7 @@ msgctxt ""
"T-SHIRT\n"
"LngText.text"
msgid "shirt"
-msgstr ""
+msgstr "t-skjorte"
#. 👖 (U+1F456), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6138,7 +6125,7 @@ msgctxt ""
"JEANS\n"
"LngText.text"
msgid "jeans"
-msgstr ""
+msgstr "jeans"
#. 👗 (U+1F457), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6147,7 +6134,7 @@ msgctxt ""
"DRESS\n"
"LngText.text"
msgid "dress"
-msgstr ""
+msgstr "kjole"
#. 👘 (U+1F458), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6156,7 +6143,7 @@ msgctxt ""
"KIMONO\n"
"LngText.text"
msgid "kimono"
-msgstr ""
+msgstr "kimono"
#. 👙 (U+1F459), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6165,7 +6152,7 @@ msgctxt ""
"BIKINI\n"
"LngText.text"
msgid "bikini"
-msgstr ""
+msgstr "bikini"
#. 👚 (U+1F45A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6174,7 +6161,7 @@ msgctxt ""
"WOMANS_CLOTHES\n"
"LngText.text"
msgid "clothes"
-msgstr ""
+msgstr "dameklær"
#. 👛 (U+1F45B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6183,7 +6170,7 @@ msgctxt ""
"PURSE\n"
"LngText.text"
msgid "purse"
-msgstr ""
+msgstr "portmone"
#. 👜 (U+1F45C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6192,7 +6179,7 @@ msgctxt ""
"HANDBAG\n"
"LngText.text"
msgid "handbag"
-msgstr ""
+msgstr "håndveske"
#. 👝 (U+1F45D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6201,7 +6188,7 @@ msgctxt ""
"POUCH\n"
"LngText.text"
msgid "pouch"
-msgstr ""
+msgstr "liten veske"
#. 👞 (U+1F45E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6210,7 +6197,7 @@ msgctxt ""
"MANS_SHOE\n"
"LngText.text"
msgid "shoe"
-msgstr ""
+msgstr "herresko"
#. 👟 (U+1F45F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6219,7 +6206,7 @@ msgctxt ""
"ATHLETIC_SHOE\n"
"LngText.text"
msgid "shoe2"
-msgstr ""
+msgstr "sportssko"
#. 👠 (U+1F460), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6228,7 +6215,7 @@ msgctxt ""
"HIGH-HEELED_SHOE\n"
"LngText.text"
msgid "shoe3"
-msgstr ""
+msgstr "damesko"
#. 👡 (U+1F461), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6237,7 +6224,7 @@ msgctxt ""
"WOMANS_SANDAL\n"
"LngText.text"
msgid "sandal"
-msgstr ""
+msgstr "damesandal"
#. 👢 (U+1F462), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6246,7 +6233,7 @@ msgctxt ""
"WOMANS_BOOTS\n"
"LngText.text"
msgid "boot"
-msgstr ""
+msgstr "damestøvel"
#. 👣 (U+1F463), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6255,7 +6242,7 @@ msgctxt ""
"FOOTPRINTS\n"
"LngText.text"
msgid "footprints"
-msgstr ""
+msgstr "fotspor"
#. 👤 (U+1F464), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6264,7 +6251,7 @@ msgctxt ""
"BUST_IN_SILHOUETTE\n"
"LngText.text"
msgid "bust"
-msgstr ""
+msgstr "byste"
#. 👥 (U+1F465), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6273,7 +6260,7 @@ msgctxt ""
"BUSTS_IN_SILHOUETTE\n"
"LngText.text"
msgid "busts"
-msgstr ""
+msgstr "byster"
#. 👦 (U+1F466), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6282,7 +6269,7 @@ msgctxt ""
"BOY\n"
"LngText.text"
msgid "boy"
-msgstr ""
+msgstr "gutt"
#. 👧 (U+1F467), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6291,7 +6278,7 @@ msgctxt ""
"GIRL\n"
"LngText.text"
msgid "girl"
-msgstr ""
+msgstr "jente"
#. 👨 (U+1F468), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6300,7 +6287,7 @@ msgctxt ""
"MAN\n"
"LngText.text"
msgid "man"
-msgstr ""
+msgstr "mann"
#. 👩 (U+1F469), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6309,7 +6296,7 @@ msgctxt ""
"WOMAN\n"
"LngText.text"
msgid "woman"
-msgstr ""
+msgstr "kvinne"
#. 👪 (U+1F46A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6318,7 +6305,7 @@ msgctxt ""
"FAMILY\n"
"LngText.text"
msgid "family"
-msgstr ""
+msgstr "familie"
#. 👫 (U+1F46B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6327,7 +6314,7 @@ msgctxt ""
"MAN_AND_WOMAN_HOLDING_HANDS\n"
"LngText.text"
msgid "couple"
-msgstr ""
+msgstr "par"
#. 👬 (U+1F46C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6336,7 +6323,7 @@ msgctxt ""
"TWO_MEN_HOLDING_HANDS\n"
"LngText.text"
msgid "couple2"
-msgstr ""
+msgstr "par, menn"
#. 👭 (U+1F46D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6345,7 +6332,7 @@ msgctxt ""
"TWO_WOMEN_HOLDING_HANDS\n"
"LngText.text"
msgid "couple3"
-msgstr ""
+msgstr "par, kvinner"
#. 👮 (U+1F46E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6354,7 +6341,7 @@ msgctxt ""
"POLICE_OFFICER\n"
"LngText.text"
msgid "cop"
-msgstr ""
+msgstr "politi"
#. 👯 (U+1F46F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6363,7 +6350,7 @@ msgctxt ""
"WOMAN_WITH_BUNNY_EARS\n"
"LngText.text"
msgid "bunny ears"
-msgstr ""
+msgstr "kaninører"
#. 👰 (U+1F470), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6372,7 +6359,7 @@ msgctxt ""
"BRIDE_WITH_VEIL\n"
"LngText.text"
msgid "bride"
-msgstr ""
+msgstr "brud"
#. 👱 (U+1F471), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6381,7 +6368,7 @@ msgctxt ""
"PERSON_WITH_BLOND_HAIR\n"
"LngText.text"
msgid "blond hair"
-msgstr ""
+msgstr "blondt hår"
#. 👲 (U+1F472), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6390,7 +6377,7 @@ msgctxt ""
"MAN_WITH_GUA_PI_MAO\n"
"LngText.text"
msgid "hat2"
-msgstr ""
+msgstr "hatt"
#. 👳 (U+1F473), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6399,7 +6386,7 @@ msgctxt ""
"MAN_WITH_TURBAN\n"
"LngText.text"
msgid "turban"
-msgstr ""
+msgstr "turban"
#. 👴 (U+1F474), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6408,7 +6395,7 @@ msgctxt ""
"OLDER_MAN\n"
"LngText.text"
msgid "older man"
-msgstr ""
+msgstr "eldre mann"
#. 👵 (U+1F475), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6417,7 +6404,7 @@ msgctxt ""
"OLDER_WOMAN\n"
"LngText.text"
msgid "older woman"
-msgstr ""
+msgstr "eldre kvinne"
#. 👶 (U+1F476), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6426,7 +6413,7 @@ msgctxt ""
"BABY\n"
"LngText.text"
msgid "baby"
-msgstr ""
+msgstr "baby"
#. 👷 (U+1F477), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6435,7 +6422,7 @@ msgctxt ""
"CONSTRUCTION_WORKER\n"
"LngText.text"
msgid "worker"
-msgstr ""
+msgstr "arbeider"
#. 👸 (U+1F478), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6444,7 +6431,7 @@ msgctxt ""
"PRINCESS\n"
"LngText.text"
msgid "princess"
-msgstr ""
+msgstr "prinsesse"
#. 👹 (U+1F479), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6453,7 +6440,7 @@ msgctxt ""
"JAPANESE_OGRE\n"
"LngText.text"
msgid "ogre"
-msgstr ""
+msgstr "uhyre"
#. 👺 (U+1F47A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6462,7 +6449,7 @@ msgctxt ""
"JAPANESE_GOBLIN\n"
"LngText.text"
msgid "goblin"
-msgstr ""
+msgstr "goblin"
#. 👻 (U+1F47B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6471,7 +6458,7 @@ msgctxt ""
"GHOST\n"
"LngText.text"
msgid "ghost"
-msgstr ""
+msgstr "spøkelse"
#. 👼 (U+1F47C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6480,7 +6467,7 @@ msgctxt ""
"BABY_ANGEL\n"
"LngText.text"
msgid "angel"
-msgstr ""
+msgstr "babyengel"
#. 👽 (U+1F47D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6489,7 +6476,7 @@ msgctxt ""
"EXTRATERRESTRIAL_ALIEN\n"
"LngText.text"
msgid "alien"
-msgstr ""
+msgstr "romvesen"
#. 👾 (U+1F47E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6498,7 +6485,7 @@ msgctxt ""
"ALIEN_MONSTER\n"
"LngText.text"
msgid "alien2"
-msgstr ""
+msgstr "rommonster"
#. 👿 (U+1F47F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6507,7 +6494,7 @@ msgctxt ""
"IMP\n"
"LngText.text"
msgid "imp"
-msgstr ""
+msgstr "svartalv"
#. 💀 (U+1F480), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6516,7 +6503,7 @@ msgctxt ""
"SKULL\n"
"LngText.text"
msgid "skull"
-msgstr ""
+msgstr "kranie"
#. 💁 (U+1F481), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6525,7 +6512,7 @@ msgctxt ""
"INFORMATION_DESK_PERSON\n"
"LngText.text"
msgid "information2"
-msgstr ""
+msgstr "informasjonsdisk"
#. 💂 (U+1F482), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6534,7 +6521,7 @@ msgctxt ""
"GUARDSMAN\n"
"LngText.text"
msgid "guard"
-msgstr ""
+msgstr "vakt"
#. 💃 (U+1F483), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6543,7 +6530,7 @@ msgctxt ""
"DANCER\n"
"LngText.text"
msgid "dancer"
-msgstr ""
+msgstr "danser"
#. 💄 (U+1F484), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6552,7 +6539,7 @@ msgctxt ""
"LIPSTICK\n"
"LngText.text"
msgid "lipstick"
-msgstr ""
+msgstr "leppestift"
#. 💅 (U+1F485), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6561,7 +6548,7 @@ msgctxt ""
"NAIL_POLISH\n"
"LngText.text"
msgid "nail care"
-msgstr ""
+msgstr "manikyr"
#. 💆 (U+1F486), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6570,7 +6557,7 @@ msgctxt ""
"FACE_MASSAGE\n"
"LngText.text"
msgid "massage"
-msgstr ""
+msgstr "massasje"
#. 💇 (U+1F487), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6579,7 +6566,7 @@ msgctxt ""
"HAIRCUT\n"
"LngText.text"
msgid "haircut"
-msgstr ""
+msgstr "hårklipp"
#. 💈 (U+1F488), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6588,7 +6575,7 @@ msgctxt ""
"BARBER_POLE\n"
"LngText.text"
msgid "barber"
-msgstr ""
+msgstr "barber"
#. 💉 (U+1F489), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6597,7 +6584,7 @@ msgctxt ""
"SYRINGE\n"
"LngText.text"
msgid "syringe"
-msgstr ""
+msgstr "sprøyte"
#. 💊 (U+1F48A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6606,7 +6593,7 @@ msgctxt ""
"PILL\n"
"LngText.text"
msgid "pill"
-msgstr ""
+msgstr "pille"
#. 💋 (U+1F48B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6615,7 +6602,7 @@ msgctxt ""
"KISS_MARK\n"
"LngText.text"
msgid "kiss mark"
-msgstr ""
+msgstr "kyssemerke"
#. 💌 (U+1F48C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6624,7 +6611,7 @@ msgctxt ""
"LOVE_LETTER\n"
"LngText.text"
msgid "love letter"
-msgstr ""
+msgstr "kjærlighetsbrev"
#. 💍 (U+1F48D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6633,7 +6620,7 @@ msgctxt ""
"RING\n"
"LngText.text"
msgid "ring"
-msgstr ""
+msgstr "ring"
#. 💎 (U+1F48E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6642,7 +6629,7 @@ msgctxt ""
"GEM_STONE\n"
"LngText.text"
msgid "gem"
-msgstr ""
+msgstr "juvel"
#. 💏 (U+1F48F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6651,7 +6638,7 @@ msgctxt ""
"KISS\n"
"LngText.text"
msgid "kiss"
-msgstr ""
+msgstr "kyss"
#. 💐 (U+1F490), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6660,7 +6647,7 @@ msgctxt ""
"BOUQUET\n"
"LngText.text"
msgid "bouquet"
-msgstr ""
+msgstr "bukett"
#. 💑 (U+1F491), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6669,7 +6656,7 @@ msgctxt ""
"COUPLE_WITH_HEART\n"
"LngText.text"
msgid "couple4"
-msgstr ""
+msgstr "par med hjerte"
#. 💒 (U+1F492), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6678,7 +6665,7 @@ msgctxt ""
"WEDDING\n"
"LngText.text"
msgid "wedding"
-msgstr ""
+msgstr "bryllup"
#. 💓 (U+1F493), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6687,7 +6674,7 @@ msgctxt ""
"BEATING_HEART\n"
"LngText.text"
msgid "heartbeat"
-msgstr ""
+msgstr "hjerteslag"
#. 💔 (U+1F494), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6696,7 +6683,7 @@ msgctxt ""
"BROKEN_HEART\n"
"LngText.text"
msgid "broken heart"
-msgstr ""
+msgstr "knust hjerte"
#. 💕 (U+1F495), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6705,7 +6692,7 @@ msgctxt ""
"TWO_HEARTS\n"
"LngText.text"
msgid "two hearts"
-msgstr ""
+msgstr "to hjerter"
#. 💖 (U+1F496), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6714,7 +6701,7 @@ msgctxt ""
"SPARKLING_HEART\n"
"LngText.text"
msgid "sparkling heart"
-msgstr ""
+msgstr "boblende hjerte"
#. 💗 (U+1F497), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6723,7 +6710,7 @@ msgctxt ""
"GROWING_HEART\n"
"LngText.text"
msgid "heartpulse"
-msgstr ""
+msgstr "voksende hjerte"
#. 💘 (U+1F498), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6732,7 +6719,7 @@ msgctxt ""
"HEART_WITH_ARROW\n"
"LngText.text"
msgid "love"
-msgstr ""
+msgstr "kjærlighet"
#. 💝 (U+1F49D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6741,7 +6728,7 @@ msgctxt ""
"HEART_WITH_RIBBON\n"
"LngText.text"
msgid "gift heart"
-msgstr ""
+msgstr "hjerte med sløyfe"
#. 💞 (U+1F49E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6750,7 +6737,7 @@ msgctxt ""
"REVOLVING_HEARTS\n"
"LngText.text"
msgid "revolving hearts"
-msgstr ""
+msgstr "roterende hjerter"
#. 💟 (U+1F49F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6759,7 +6746,7 @@ msgctxt ""
"HEART_DECORATION\n"
"LngText.text"
msgid "heart decoration"
-msgstr ""
+msgstr "hjertedekorasjon"
#. 💠 (U+1F4A0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6768,7 +6755,7 @@ msgctxt ""
"DIAMOND_SHAPE_WITH_A_DOT_INSIDE\n"
"LngText.text"
msgid "cuteness"
-msgstr ""
+msgstr "ruter med punkt"
#. 💡 (U+1F4A1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6777,7 +6764,7 @@ msgctxt ""
"ELECTRIC_LIGHT_BULB\n"
"LngText.text"
msgid "bulb"
-msgstr ""
+msgstr "lyspære"
#. 💢 (U+1F4A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6786,7 +6773,7 @@ msgctxt ""
"ANGER_SYMBOL\n"
"LngText.text"
msgid "anger"
-msgstr ""
+msgstr "sinne"
#. 💣 (U+1F4A3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6795,7 +6782,7 @@ msgctxt ""
"BOMB\n"
"LngText.text"
msgid "bomb"
-msgstr ""
+msgstr "bombe"
#. 💤 (U+1F4A4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6804,7 +6791,7 @@ msgctxt ""
"SLEEPING_SYMBOL\n"
"LngText.text"
msgid "zzz"
-msgstr ""
+msgstr "søvn"
#. 💥 (U+1F4A5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6813,7 +6800,7 @@ msgctxt ""
"COLLISION_SYMBOL\n"
"LngText.text"
msgid "boom"
-msgstr ""
+msgstr "kollisjon"
#. 💦 (U+1F4A6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6822,7 +6809,7 @@ msgctxt ""
"SPLASHING_SWEAT_SYMBOL\n"
"LngText.text"
msgid "sweat drops"
-msgstr ""
+msgstr "sveittedråper"
#. 💧 (U+1F4A7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6831,7 +6818,7 @@ msgctxt ""
"DROPLET\n"
"LngText.text"
msgid "droplet"
-msgstr ""
+msgstr "dråpe"
#. 💨 (U+1F4A8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6840,7 +6827,7 @@ msgctxt ""
"DASH_SYMBOL\n"
"LngText.text"
msgid "dash"
-msgstr ""
+msgstr "strek"
#. 💩 (U+1F4A9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6849,7 +6836,7 @@ msgctxt ""
"PILE_OF_POO\n"
"LngText.text"
msgid "poo"
-msgstr ""
+msgstr "bæsj"
#. 💪 (U+1F4AA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6858,7 +6845,7 @@ msgctxt ""
"FLEXED_BICEPS\n"
"LngText.text"
msgid "muscle"
-msgstr ""
+msgstr "muskel"
#. 💫 (U+1F4AB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6867,7 +6854,7 @@ msgctxt ""
"DIZZY_SYMBOL\n"
"LngText.text"
msgid "dizzy"
-msgstr ""
+msgstr "svimmel"
#. 💬 (U+1F4AC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6876,7 +6863,7 @@ msgctxt ""
"SPEECH_BALLOON\n"
"LngText.text"
msgid "speech balloon"
-msgstr ""
+msgstr "snakkeboble"
#. 💭 (U+1F4AD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6885,7 +6872,7 @@ msgctxt ""
"THOUGHT_BALLOON\n"
"LngText.text"
msgid "thought balloon"
-msgstr ""
+msgstr "tenkeboble"
#. 💮 (U+1F4AE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6894,7 +6881,7 @@ msgctxt ""
"WHITE_FLOWER\n"
"LngText.text"
msgid "white flower"
-msgstr ""
+msgstr "hvit blomst"
#. 💯 (U+1F4AF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6903,7 +6890,7 @@ msgctxt ""
"HUNDRED_POINTS_SYMBOL\n"
"LngText.text"
msgid "100"
-msgstr ""
+msgstr "100"
#. 💰 (U+1F4B0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6912,7 +6899,7 @@ msgctxt ""
"MONEY_BAG\n"
"LngText.text"
msgid "moneybag"
-msgstr ""
+msgstr "pengesekk"
#. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6921,7 +6908,7 @@ msgctxt ""
"CURRENCY_EXCHANGE\n"
"LngText.text"
msgid "currency exchange"
-msgstr ""
+msgstr "valutaveksling"
#. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6930,7 +6917,7 @@ msgctxt ""
"HEAVY_DOLLAR_SIGN\n"
"LngText.text"
msgid "heavy dollar sign"
-msgstr ""
+msgstr "dollarsymbol, tykt"
#. 💳 (U+1F4B3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6939,7 +6926,7 @@ msgctxt ""
"CREDIT_CARD\n"
"LngText.text"
msgid "credit card"
-msgstr ""
+msgstr "kredittkort"
#. 💴 (U+1F4B4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6948,7 +6935,7 @@ msgctxt ""
"BANKNOTE_WITH_YEN_SIGN\n"
"LngText.text"
msgid "yen2"
-msgstr ""
+msgstr "yen seddel"
#. 💵 (U+1F4B5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6957,7 +6944,7 @@ msgctxt ""
"BANKNOTE_WITH_DOLLAR_SIGN\n"
"LngText.text"
msgid "dollar2"
-msgstr ""
+msgstr "dollarseddel"
#. 💶 (U+1F4B6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6966,7 +6953,7 @@ msgctxt ""
"BANKNOTE_WITH_EURO_SIGN\n"
"LngText.text"
msgid "euro2"
-msgstr ""
+msgstr "euroseddel"
#. 💷 (U+1F4B7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6975,7 +6962,7 @@ msgctxt ""
"BANKNOTE_WITH_POUND_SIGN\n"
"LngText.text"
msgid "pound2"
-msgstr ""
+msgstr "pundseddel"
#. 💸 (U+1F4B8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6984,7 +6971,7 @@ msgctxt ""
"MONEY_WITH_WINGS\n"
"LngText.text"
msgid "money"
-msgstr ""
+msgstr "penger med vinger"
#. 💹 (U+1F4B9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -6993,7 +6980,7 @@ msgctxt ""
"CHART_WITH_UPWARDS_TREND_AND_YEN_SIGN\n"
"LngText.text"
msgid "chart"
-msgstr ""
+msgstr "diagram, yen"
#. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7002,7 +6989,7 @@ msgctxt ""
"SEAT\n"
"LngText.text"
msgid "seat"
-msgstr ""
+msgstr "sete"
#. 💻 (U+1F4BB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7011,7 +6998,7 @@ msgctxt ""
"PERSONAL_COMPUTER\n"
"LngText.text"
msgid "computer"
-msgstr ""
+msgstr "PC"
#. 💼 (U+1F4BC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7020,7 +7007,7 @@ msgctxt ""
"BRIEFCASE\n"
"LngText.text"
msgid "briefcase"
-msgstr ""
+msgstr "dokumentmappe"
#. 💽 (U+1F4BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7029,7 +7016,7 @@ msgctxt ""
"MINIDISC\n"
"LngText.text"
msgid "md"
-msgstr ""
+msgstr "minidisk"
#. 💾 (U+1F4BE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7038,7 +7025,7 @@ msgctxt ""
"FLOPPY_DISK\n"
"LngText.text"
msgid "floppy"
-msgstr ""
+msgstr "diskett"
#. 💿 (U+1F4BF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7047,7 +7034,7 @@ msgctxt ""
"OPTICAL_DISC\n"
"LngText.text"
msgid "cd"
-msgstr ""
+msgstr "CD"
#. 📀 (U+1F4C0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7056,7 +7043,7 @@ msgctxt ""
"DVD\n"
"LngText.text"
msgid "dvd"
-msgstr ""
+msgstr "DVD"
#. 📁 (U+1F4C1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7065,7 +7052,7 @@ msgctxt ""
"FILE_FOLDER\n"
"LngText.text"
msgid "folder"
-msgstr ""
+msgstr "mappe"
#. 📂 (U+1F4C2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7074,7 +7061,7 @@ msgctxt ""
"OPEN_FILE_FOLDER\n"
"LngText.text"
msgid "folder2"
-msgstr ""
+msgstr "åpen mappe"
#. 📃 (U+1F4C3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7083,7 +7070,7 @@ msgctxt ""
"PAGE_WITH_CURL\n"
"LngText.text"
msgid "page with curl"
-msgstr ""
+msgstr "side med krøll"
#. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7092,7 +7079,7 @@ msgctxt ""
"PAGE_FACING_UP\n"
"LngText.text"
msgid "page facing up"
-msgstr ""
+msgstr "side, opp"
#. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7101,7 +7088,7 @@ msgctxt ""
"CALENDAR\n"
"LngText.text"
msgid "calendar"
-msgstr ""
+msgstr "kalender"
#. 📆 (U+1F4C6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7110,7 +7097,7 @@ msgctxt ""
"TEAR-OFF_CALENDAR\n"
"LngText.text"
msgid "calendar2"
-msgstr ""
+msgstr "avrivingskalender"
#. 📇 (U+1F4C7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7119,7 +7106,7 @@ msgctxt ""
"CARD_INDEX\n"
"LngText.text"
msgid "card index"
-msgstr ""
+msgstr "kortregister"
#. 📈 (U+1F4C8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7128,7 +7115,7 @@ msgctxt ""
"CHART_WITH_UPWARDS_TREND\n"
"LngText.text"
msgid "char"
-msgstr ""
+msgstr "diagram, opp"
#. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7137,7 +7124,7 @@ msgctxt ""
"CHART_WITH_DOWNWARDS_TREND\n"
"LngText.text"
msgid "chart2"
-msgstr ""
+msgstr "diagram, ned"
#. 📊 (U+1F4CA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7146,7 +7133,7 @@ msgctxt ""
"BAR_CHART\n"
"LngText.text"
msgid "chart3"
-msgstr ""
+msgstr "stolpediagram"
#. 📋 (U+1F4CB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7155,7 +7142,7 @@ msgctxt ""
"CLIPBOARD\n"
"LngText.text"
msgid "clipboard"
-msgstr ""
+msgstr "utklippstavle"
#. 📌 (U+1F4CC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7164,7 +7151,7 @@ msgctxt ""
"PUSHPIN\n"
"LngText.text"
msgid "pushpin"
-msgstr ""
+msgstr "heftestift"
#. 📍 (U+1F4CD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7173,7 +7160,7 @@ msgctxt ""
"ROUND_PUSHPIN\n"
"LngText.text"
msgid "round pushpin"
-msgstr ""
+msgstr "rund heftestift"
#. 📎 (U+1F4CE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7182,7 +7169,7 @@ msgctxt ""
"PAPERCLIP\n"
"LngText.text"
msgid "paperclip"
-msgstr ""
+msgstr "binders"
#. 📏 (U+1F4CF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7191,7 +7178,7 @@ msgctxt ""
"STRAIGHT_RULER\n"
"LngText.text"
msgid "ruler"
-msgstr ""
+msgstr "linjal"
#. 📐 (U+1F4D0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7200,7 +7187,7 @@ msgctxt ""
"TRIANGULAR_RULER\n"
"LngText.text"
msgid "ruler2"
-msgstr ""
+msgstr "vinkellinjal"
#. 📑 (U+1F4D1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7209,7 +7196,7 @@ msgctxt ""
"BOOKMARK_TABS\n"
"LngText.text"
msgid "bookmark"
-msgstr ""
+msgstr "bokmerke"
#. 📒 (U+1F4D2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7218,7 +7205,7 @@ msgctxt ""
"LEDGER\n"
"LngText.text"
msgid "ledger"
-msgstr ""
+msgstr "reskontro"
#. 📓 (U+1F4D3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7227,7 +7214,7 @@ msgctxt ""
"NOTEBOOK\n"
"LngText.text"
msgid "notebook"
-msgstr ""
+msgstr "notisbok"
#. 📔 (U+1F4D4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7236,7 +7223,7 @@ msgctxt ""
"NOTEBOOK_WITH_DECORATIVE_COVER\n"
"LngText.text"
msgid "notebook2"
-msgstr ""
+msgstr "notisbok, dekorert"
#. 📕 (U+1F4D5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7245,7 +7232,7 @@ msgctxt ""
"CLOSED_BOOK\n"
"LngText.text"
msgid "book"
-msgstr ""
+msgstr "bok"
#. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7254,7 +7241,7 @@ msgctxt ""
"OPEN_BOOK\n"
"LngText.text"
msgid "book2"
-msgstr ""
+msgstr "åpen bok"
#. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7263,7 +7250,7 @@ msgctxt ""
"BOOKS\n"
"LngText.text"
msgid "books"
-msgstr ""
+msgstr "bøker"
#. 📛 (U+1F4DB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7272,7 +7259,7 @@ msgctxt ""
"NAME_BADGE\n"
"LngText.text"
msgid "name"
-msgstr ""
+msgstr "navneskilt"
#. 📜 (U+1F4DC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7281,7 +7268,7 @@ msgctxt ""
"SCROLL\n"
"LngText.text"
msgid "scroll"
-msgstr ""
+msgstr "skriftrull"
#. 📝 (U+1F4DD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7290,7 +7277,7 @@ msgctxt ""
"MEMO\n"
"LngText.text"
msgid "memo"
-msgstr ""
+msgstr "notat"
#. 📞 (U+1F4DE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7299,7 +7286,7 @@ msgctxt ""
"TELEPHONE_RECEIVER\n"
"LngText.text"
msgid "receiver"
-msgstr ""
+msgstr "telefonlur"
#. 📟 (U+1F4DF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7308,7 +7295,7 @@ msgctxt ""
"PAGER\n"
"LngText.text"
msgid "pager"
-msgstr ""
+msgstr "personsøker"
#. 📠 (U+1F4E0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7317,7 +7304,7 @@ msgctxt ""
"FAX_MACHINE\n"
"LngText.text"
msgid "fax"
-msgstr ""
+msgstr "faks"
#. 📡 (U+1F4E1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7326,7 +7313,7 @@ msgctxt ""
"SATELLITE_ANTENNA\n"
"LngText.text"
msgid "satellite"
-msgstr ""
+msgstr "satellitt"
#. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7335,7 +7322,7 @@ msgctxt ""
"PUBLIC_ADDRESS_LOUDSPEAKER\n"
"LngText.text"
msgid "loudspeaker"
-msgstr ""
+msgstr "høytaler"
#. 📣 (U+1F4E3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7344,7 +7331,7 @@ msgctxt ""
"CHEERING_MEGAPHONE\n"
"LngText.text"
msgid "mega"
-msgstr ""
+msgstr "megafon"
#. 📤 (U+1F4E4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7353,7 +7340,7 @@ msgctxt ""
"OUTBOX_TRAY\n"
"LngText.text"
msgid "tray"
-msgstr ""
+msgstr "utboks"
#. 📥 (U+1F4E5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7362,7 +7349,7 @@ msgctxt ""
"INBOX_TRAY\n"
"LngText.text"
msgid "tray2"
-msgstr ""
+msgstr "innboks"
#. 📦 (U+1F4E6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7371,7 +7358,7 @@ msgctxt ""
"PACKAGE\n"
"LngText.text"
msgid "package"
-msgstr ""
+msgstr "pakke"
#. 📧 (U+1F4E7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7380,7 +7367,7 @@ msgctxt ""
"E-MAIL_SYMBOL\n"
"LngText.text"
msgid "e-mail"
-msgstr ""
+msgstr "e-post"
#. 📨 (U+1F4E8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7389,7 +7376,7 @@ msgctxt ""
"INCOMING_ENVELOPE\n"
"LngText.text"
msgid "envelope2"
-msgstr ""
+msgstr "konvolutt, inn"
#. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7398,7 +7385,7 @@ msgctxt ""
"ENVELOPE_WITH_DOWNWARDS_ARROW_ABOVE\n"
"LngText.text"
msgid "envelope3"
-msgstr ""
+msgstr "konvolutt med pil ned"
#. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7407,7 +7394,7 @@ msgctxt ""
"CLOSED_MAILBOX_WITH_LOWERED_FLAG\n"
"LngText.text"
msgid "mailbox"
-msgstr ""
+msgstr "tom postkasse"
#. 📫 (U+1F4EB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7416,7 +7403,7 @@ msgctxt ""
"CLOSED_MAILBOX_WITH_RAISED_FLAG\n"
"LngText.text"
msgid "mailbox2"
-msgstr ""
+msgstr "full postkasse"
#. 📬 (U+1F4EC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7425,7 +7412,7 @@ msgctxt ""
"OPEN_MAILBOX_WITH_RAISED_FLAG\n"
"LngText.text"
msgid "mailbox3"
-msgstr ""
+msgstr "åpen, full postkasse"
#. 📭 (U+1F4ED), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7434,7 +7421,7 @@ msgctxt ""
"OPEN_MAILBOX_WITH_LOWERED_FLAG\n"
"LngText.text"
msgid "mailbox4"
-msgstr ""
+msgstr "åpen, tom postkasse"
#. 📮 (U+1F4EE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7443,7 +7430,7 @@ msgctxt ""
"POSTBOX\n"
"LngText.text"
msgid "postbox"
-msgstr ""
+msgstr "postboks"
#. 📯 (U+1F4EF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7452,7 +7439,7 @@ msgctxt ""
"POSTAL_HORN\n"
"LngText.text"
msgid "horn"
-msgstr ""
+msgstr "posthorn"
#. 📰 (U+1F4F0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7461,7 +7448,7 @@ msgctxt ""
"NEWSPAPER\n"
"LngText.text"
msgid "newspaper"
-msgstr ""
+msgstr "avis"
#. 📱 (U+1F4F1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7470,7 +7457,7 @@ msgctxt ""
"MOBILE_PHONE\n"
"LngText.text"
msgid "mobile"
-msgstr ""
+msgstr "mobiltelefon"
#. 📲 (U+1F4F2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7479,7 +7466,7 @@ msgctxt ""
"MOBILE_PHONE_WITH_RIGHTWARDS_ARROW_AT_LEFT\n"
"LngText.text"
msgid "calling"
-msgstr ""
+msgstr "ringer"
#. 📳 (U+1F4F3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7488,7 +7475,7 @@ msgctxt ""
"VIBRATION_MODE\n"
"LngText.text"
msgid "vibration mode"
-msgstr ""
+msgstr "vibreringsmodus"
#. 📴 (U+1F4F4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7497,7 +7484,7 @@ msgctxt ""
"MOBILE_PHONE_OFF\n"
"LngText.text"
msgid "mobile phone off"
-msgstr ""
+msgstr "mobiltelefon av"
#. 📵 (U+1F4F5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7506,7 +7493,7 @@ msgctxt ""
"NO_MOBILE_PHONES\n"
"LngText.text"
msgid "no mobile"
-msgstr ""
+msgstr "ingen mobil"
#. 📶 (U+1F4F6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7515,7 +7502,7 @@ msgctxt ""
"ANTENNA_WITH_BARS\n"
"LngText.text"
msgid "signal strength"
-msgstr ""
+msgstr "signalstyrke"
#. 📷 (U+1F4F7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7524,7 +7511,7 @@ msgctxt ""
"CAMERA\n"
"LngText.text"
msgid "camera"
-msgstr ""
+msgstr "kamera"
#. 📹 (U+1F4F9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7533,7 +7520,7 @@ msgctxt ""
"VIDEO_CAMERA\n"
"LngText.text"
msgid "video camera"
-msgstr ""
+msgstr "videokamera"
#. 📺 (U+1F4FA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7542,7 +7529,7 @@ msgctxt ""
"TELEVISION\n"
"LngText.text"
msgid "tv"
-msgstr ""
+msgstr "tv"
#. 📻 (U+1F4FB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7551,7 +7538,7 @@ msgctxt ""
"RADIO\n"
"LngText.text"
msgid "radio"
-msgstr ""
+msgstr "radio"
#. 📼 (U+1F4FC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7560,7 +7547,7 @@ msgctxt ""
"VIDEOCASSETTE\n"
"LngText.text"
msgid "vhs"
-msgstr ""
+msgstr "vhs"
#. 🔅 (U+1F505), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7569,7 +7556,7 @@ msgctxt ""
"LOW_BRIGHTNESS_SYMBOL\n"
"LngText.text"
msgid "brightness"
-msgstr ""
+msgstr "lysstyrke"
#. 🔆 (U+1F506), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7578,7 +7565,7 @@ msgctxt ""
"HIGH_BRIGHTNESS_SYMBOL\n"
"LngText.text"
msgid "brightness2"
-msgstr ""
+msgstr "lysstyrke, høy"
#. 🔇 (U+1F507), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7587,7 +7574,7 @@ msgctxt ""
"SPEAKER_WITH_CANCELLATION_STROKE\n"
"LngText.text"
msgid "mute"
-msgstr ""
+msgstr "demp"
#. 🔈 (U+1F508), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7596,7 +7583,7 @@ msgctxt ""
"SPEAKER\n"
"LngText.text"
msgid "speaker"
-msgstr ""
+msgstr "høytaler"
#. 🔉 (U+1F509), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7605,7 +7592,7 @@ msgctxt ""
"SPEAKER_WITH_ONE_SOUND_WAVE\n"
"LngText.text"
msgid "sound"
-msgstr ""
+msgstr "lyd"
#. 🔊 (U+1F50A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7614,7 +7601,7 @@ msgctxt ""
"SPEAKER_WITH_THREE_SOUND_WAVES\n"
"LngText.text"
msgid "loud sound"
-msgstr ""
+msgstr "høy lyd"
#. 🔋 (U+1F50B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7623,7 +7610,7 @@ msgctxt ""
"BATTERY\n"
"LngText.text"
msgid "battery"
-msgstr ""
+msgstr "batteri"
#. 🔌 (U+1F50C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7632,7 +7619,7 @@ msgctxt ""
"ELECTRIC_PLUG\n"
"LngText.text"
msgid "plug"
-msgstr ""
+msgstr "støpsel"
#. 🔍 (U+1F50D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7641,7 +7628,7 @@ msgctxt ""
"LEFT-POINTING_MAGNIFYING_GLASS\n"
"LngText.text"
msgid "mag"
-msgstr ""
+msgstr "lupe, venstre"
#. 🔎 (U+1F50E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7650,7 +7637,7 @@ msgctxt ""
"RIGHT-POINTING_MAGNIFYING_GLASS\n"
"LngText.text"
msgid "mag2"
-msgstr ""
+msgstr "lupe, høyre"
#. 🔏 (U+1F50F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7659,7 +7646,7 @@ msgctxt ""
"LOCK_WITH_INK_PEN\n"
"LngText.text"
msgid "lock2"
-msgstr ""
+msgstr "lås med penn"
#. 🔐 (U+1F510), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7668,7 +7655,7 @@ msgctxt ""
"CLOSED_LOCK_WITH_KEY\n"
"LngText.text"
msgid "lock3"
-msgstr ""
+msgstr "lås med nøkkel"
#. 🔑 (U+1F511), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7677,7 +7664,7 @@ msgctxt ""
"KEY\n"
"LngText.text"
msgid "key"
-msgstr ""
+msgstr "nøkkel"
#. 🔒 (U+1F512), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7686,7 +7673,7 @@ msgctxt ""
"LOCK\n"
"LngText.text"
msgid "lock"
-msgstr ""
+msgstr "lås"
#. 🔓 (U+1F513), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7695,7 +7682,7 @@ msgctxt ""
"OPEN_LOCK\n"
"LngText.text"
msgid "unlock"
-msgstr ""
+msgstr "åpen lås"
#. 🔔 (U+1F514), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7704,7 +7691,7 @@ msgctxt ""
"BELL\n"
"LngText.text"
msgid "bell"
-msgstr ""
+msgstr "klokke"
#. 🔕 (U+1F515), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7713,7 +7700,7 @@ msgctxt ""
"BELL_WITH_CANCELLATION_STROKE\n"
"LngText.text"
msgid "no bell"
-msgstr ""
+msgstr "ingen klokke"
#. 🔖 (U+1F516), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7722,7 +7709,7 @@ msgctxt ""
"BOOKMARK\n"
"LngText.text"
msgid "bookmark2"
-msgstr ""
+msgstr "bokmerke"
#. 🔗 (U+1F517), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7731,7 +7718,7 @@ msgctxt ""
"LINK_SYMBOL\n"
"LngText.text"
msgid "link"
-msgstr ""
+msgstr "lenke"
#. 🔘 (U+1F518), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7740,7 +7727,7 @@ msgctxt ""
"RADIO_BUTTON\n"
"LngText.text"
msgid "radio button"
-msgstr ""
+msgstr "radioknapp"
#. 🔞 (U+1F51E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7749,7 +7736,7 @@ msgctxt ""
"NO_ONE_UNDER_EIGHTEEN_SYMBOL\n"
"LngText.text"
msgid "underage"
-msgstr ""
+msgstr "mindreårig"
#. 🔤 (U+1F524), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7758,7 +7745,7 @@ msgctxt ""
"INPUT_SYMBOL_FOR_LATIN_LETTERS\n"
"LngText.text"
msgid "abc"
-msgstr ""
+msgstr "abc"
#. 🔥 (U+1F525), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7767,7 +7754,7 @@ msgctxt ""
"FIRE\n"
"LngText.text"
msgid "fire"
-msgstr ""
+msgstr "flamme"
#. 🔦 (U+1F526), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7776,7 +7763,7 @@ msgctxt ""
"ELECTRIC_TORCH\n"
"LngText.text"
msgid "flashlight"
-msgstr ""
+msgstr "lommelykt"
#. 🔧 (U+1F527), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7785,7 +7772,7 @@ msgctxt ""
"WRENCH\n"
"LngText.text"
msgid "wrench"
-msgstr ""
+msgstr "fastnøkkel"
#. 🔨 (U+1F528), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7794,7 +7781,7 @@ msgctxt ""
"HAMMER\n"
"LngText.text"
msgid "hammer"
-msgstr ""
+msgstr "hammer"
#. 🔩 (U+1F529), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7803,7 +7790,7 @@ msgctxt ""
"NUT_AND_BOLT\n"
"LngText.text"
msgid "nut and bolt"
-msgstr ""
+msgstr "mutter og bolt"
#. 🔪 (U+1F52A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7812,7 +7799,7 @@ msgctxt ""
"HOCHO\n"
"LngText.text"
msgid "knife"
-msgstr ""
+msgstr "kniv"
#. 🔫 (U+1F52B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7821,7 +7808,7 @@ msgctxt ""
"PISTOL\n"
"LngText.text"
msgid "pistol"
-msgstr ""
+msgstr "pistol"
#. 🔬 (U+1F52C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7830,7 +7817,7 @@ msgctxt ""
"MICROSCOPE\n"
"LngText.text"
msgid "microscope"
-msgstr ""
+msgstr "mikroskop"
#. 🔭 (U+1F52D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7839,7 +7826,7 @@ msgctxt ""
"TELESCOPE\n"
"LngText.text"
msgid "telescope"
-msgstr ""
+msgstr "teleskop"
#. 🔮 (U+1F52E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7848,7 +7835,7 @@ msgctxt ""
"CRYSTAL_BALL\n"
"LngText.text"
msgid "crystal ball"
-msgstr ""
+msgstr "krystallkule"
#. 🔰 (U+1F530), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7857,7 +7844,7 @@ msgctxt ""
"JAPANESE_SYMBOL_FOR_BEGINNER\n"
"LngText.text"
msgid "beginner"
-msgstr ""
+msgstr "nybegynner"
#. 🔱 (U+1F531), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7866,7 +7853,7 @@ msgctxt ""
"TRIDENT_EMBLEM\n"
"LngText.text"
msgid "trident"
-msgstr ""
+msgstr "trefork"
#. 🔲 (U+1F532), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7875,7 +7862,7 @@ msgctxt ""
"BLACK_SQUARE_BUTTON\n"
"LngText.text"
msgid "button2"
-msgstr ""
+msgstr "firkantet knapp"
#. 🔳 (U+1F533), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7884,7 +7871,7 @@ msgctxt ""
"WHITE_SQUARE_BUTTON\n"
"LngText.text"
msgid "button"
-msgstr ""
+msgstr "knapp"
#. 🕐 (U+1F550), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7893,7 +7880,7 @@ msgctxt ""
"CLOCK_FACE_ONE_OCLOCK\n"
"LngText.text"
msgid "1"
-msgstr ""
+msgstr "klokke"
#. 🕑 (U+1F551), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7902,7 +7889,7 @@ msgctxt ""
"CLOCK_FACE_TWO_OCLOCK\n"
"LngText.text"
msgid "2"
-msgstr ""
+msgstr "klokke"
#. 🕒 (U+1F552), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7911,7 +7898,7 @@ msgctxt ""
"CLOCK_FACE_THREE_OCLOCK\n"
"LngText.text"
msgid "3"
-msgstr ""
+msgstr "klokke"
#. 🕓 (U+1F553), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7920,7 +7907,7 @@ msgctxt ""
"CLOCK_FACE_FOUR_OCLOCK\n"
"LngText.text"
msgid "4"
-msgstr ""
+msgstr "klokke"
#. 🕔 (U+1F554), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7929,7 +7916,7 @@ msgctxt ""
"CLOCK_FACE_FIVE_OCLOCK\n"
"LngText.text"
msgid "5"
-msgstr ""
+msgstr "klokke"
#. 🕕 (U+1F555), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7938,7 +7925,7 @@ msgctxt ""
"CLOCK_FACE_SIX_OCLOCK\n"
"LngText.text"
msgid "6"
-msgstr ""
+msgstr "klokke"
#. 🕖 (U+1F556), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7947,7 +7934,7 @@ msgctxt ""
"CLOCK_FACE_SEVEN_OCLOCK\n"
"LngText.text"
msgid "7"
-msgstr ""
+msgstr "klokke"
#. 🕗 (U+1F557), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7956,7 +7943,7 @@ msgctxt ""
"CLOCK_FACE_EIGHT_OCLOCK\n"
"LngText.text"
msgid "8"
-msgstr ""
+msgstr "klokke"
#. 🕘 (U+1F558), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7965,7 +7952,7 @@ msgctxt ""
"CLOCK_FACE_NINE_OCLOCK\n"
"LngText.text"
msgid "9"
-msgstr ""
+msgstr "9"
#. 🕙 (U+1F559), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7974,7 +7961,7 @@ msgctxt ""
"CLOCK_FACE_TEN_OCLOCK\n"
"LngText.text"
msgid "10"
-msgstr ""
+msgstr "klokke 10"
#. 🕚 (U+1F55A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7983,7 +7970,7 @@ msgctxt ""
"CLOCK_FACE_ELEVEN_OCLOCK\n"
"LngText.text"
msgid "11"
-msgstr ""
+msgstr "klokka 11"
#. 🕛 (U+1F55B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -7992,7 +7979,7 @@ msgctxt ""
"CLOCK_FACE_TWELVE_OCLOCK\n"
"LngText.text"
msgid "12"
-msgstr ""
+msgstr "klokka 12"
#. 🕜 (U+1F55C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8001,7 +7988,7 @@ msgctxt ""
"CLOCK_FACE_ONE-THIRTY\n"
"LngText.text"
msgid "1.30"
-msgstr ""
+msgstr "klokka 1.30"
#. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8010,7 +7997,7 @@ msgctxt ""
"CLOCK_FACE_TWO-THIRTY\n"
"LngText.text"
msgid "2.30"
-msgstr ""
+msgstr "klokka 2.30"
#. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8019,7 +8006,7 @@ msgctxt ""
"CLOCK_FACE_THREE-THIRTY\n"
"LngText.text"
msgid "3.30"
-msgstr ""
+msgstr "klokka 3.30"
#. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8028,7 +8015,7 @@ msgctxt ""
"CLOCK_FACE_FOUR-THIRTY\n"
"LngText.text"
msgid "4.30"
-msgstr ""
+msgstr "klokka 4.30"
#. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8037,7 +8024,7 @@ msgctxt ""
"CLOCK_FACE_FIVE-THIRTY\n"
"LngText.text"
msgid "5.30"
-msgstr ""
+msgstr "klokka 5.30"
#. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8046,7 +8033,7 @@ msgctxt ""
"CLOCK_FACE_SIX-THIRTY\n"
"LngText.text"
msgid "6.30"
-msgstr ""
+msgstr "klokka 6.30"
#. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8055,7 +8042,7 @@ msgctxt ""
"CLOCK_FACE_SEVEN-THIRTY\n"
"LngText.text"
msgid "7.30"
-msgstr ""
+msgstr "klokka 7.30"
#. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8064,7 +8051,7 @@ msgctxt ""
"CLOCK_FACE_EIGHT-THIRTY\n"
"LngText.text"
msgid "8.30"
-msgstr ""
+msgstr "klokka 8.30"
#. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8073,7 +8060,7 @@ msgctxt ""
"CLOCK_FACE_NINE-THIRTY\n"
"LngText.text"
msgid "9.30"
-msgstr ""
+msgstr "klokka 9.30"
#. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8082,7 +8069,7 @@ msgctxt ""
"CLOCK_FACE_TEN-THIRTY\n"
"LngText.text"
msgid "10.30"
-msgstr ""
+msgstr "klokka 10.30"
#. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8091,7 +8078,7 @@ msgctxt ""
"CLOCK_FACE_ELEVEN-THIRTY\n"
"LngText.text"
msgid "11.30"
-msgstr ""
+msgstr "klokka 11.30"
#. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8100,7 +8087,7 @@ msgctxt ""
"CLOCK_FACE_TWELVE-THIRTY\n"
"LngText.text"
msgid "12.30"
-msgstr ""
+msgstr "klokka 12.30"
#. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8109,7 +8096,7 @@ msgctxt ""
"MOUNT_FUJI\n"
"LngText.text"
msgid "Fuji"
-msgstr ""
+msgstr "Fuji"
#. 🗼 (U+1F5FC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8118,7 +8105,7 @@ msgctxt ""
"TOKYO_TOWER\n"
"LngText.text"
msgid "tower"
-msgstr ""
+msgstr "Tokyo"
#. 🗽 (U+1F5FD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8127,7 +8114,7 @@ msgctxt ""
"STATUE_OF_LIBERTY\n"
"LngText.text"
msgid "liberty"
-msgstr ""
+msgstr "frihetsstatuen"
#. 🗾 (U+1F5FE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8136,7 +8123,7 @@ msgctxt ""
"SILHOUETTE_OF_JAPAN\n"
"LngText.text"
msgid "Japan"
-msgstr ""
+msgstr "Japan"
#. 🗿 (U+1F5FF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8145,7 +8132,7 @@ msgctxt ""
"MOYAI\n"
"LngText.text"
msgid "statue"
-msgstr ""
+msgstr "statue"
#. 😀 (U+1F600), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8154,7 +8141,7 @@ msgctxt ""
"GRINNING_FACE\n"
"LngText.text"
msgid "grinning"
-msgstr ""
+msgstr "flirende"
#. 😁 (U+1F601), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8163,7 +8150,7 @@ msgctxt ""
"GRINNING_FACE_WITH_SMILING_EYES\n"
"LngText.text"
msgid "grin"
-msgstr ""
+msgstr "smil"
#. 😂 (U+1F602), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8172,7 +8159,7 @@ msgctxt ""
"FACE_WITH_TEARS_OF_JOY\n"
"LngText.text"
msgid "joy"
-msgstr ""
+msgstr "lykke"
#. 😃 (U+1F603), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8181,7 +8168,7 @@ msgctxt ""
"SMILING_FACE_WITH_OPEN_MOUTH\n"
"LngText.text"
msgid "smiley"
-msgstr ""
+msgstr "smilefjes"
#. 😄 (U+1F604), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8190,7 +8177,7 @@ msgctxt ""
"SMILING_FACE_WITH_OPEN_MOUTH_AND_SMILING_EYES\n"
"LngText.text"
msgid "smile"
-msgstr ""
+msgstr "smil"
#. 😅 (U+1F605), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8199,7 +8186,7 @@ msgctxt ""
"SMILING_FACE_WITH_OPEN_MOUTH_AND_COLD_SWEAT\n"
"LngText.text"
msgid "sweat smile"
-msgstr ""
+msgstr "søtt smil"
#. 😆 (U+1F606), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8208,7 +8195,7 @@ msgctxt ""
"SMILING_FACE_WITH_OPEN_MOUTH_AND_TIGHTLY-CLOSED_EYES\n"
"LngText.text"
msgid "laughing"
-msgstr ""
+msgstr "ler"
#. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8217,7 +8204,7 @@ msgctxt ""
"SMILING_FACE_WITH_HALO\n"
"LngText.text"
msgid "innocent"
-msgstr ""
+msgstr "uskyldig"
#. 😈 (U+1F608), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8226,7 +8213,7 @@ msgctxt ""
"SMILING_FACE_WITH_HORNS\n"
"LngText.text"
msgid "smiling imp"
-msgstr ""
+msgstr "smilende djevel"
#. 😉 (U+1F609), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8235,7 +8222,7 @@ msgctxt ""
"WINKING_FACE\n"
"LngText.text"
msgid "wink"
-msgstr ""
+msgstr "blunk"
#. 😊 (U+1F60A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8244,7 +8231,7 @@ msgctxt ""
"SMILING_FACE_WITH_SMILING_EYES\n"
"LngText.text"
msgid "blush"
-msgstr ""
+msgstr "rødmer"
#. 😋 (U+1F60B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8253,7 +8240,7 @@ msgctxt ""
"FACE_SAVOURING_DELICIOUS_FOOD\n"
"LngText.text"
msgid "yum"
-msgstr ""
+msgstr "nam"
#. 😌 (U+1F60C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8262,7 +8249,7 @@ msgctxt ""
"RELIEVED_FACE\n"
"LngText.text"
msgid "relieved"
-msgstr ""
+msgstr "letta"
#. 😍 (U+1F60D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8271,7 +8258,7 @@ msgctxt ""
"SMILING_FACE_WITH_HEART-SHAPED_EYES\n"
"LngText.text"
msgid "heart eyes"
-msgstr ""
+msgstr "ansikt med hjerteformede øyne"
#. 😎 (U+1F60E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8280,7 +8267,7 @@ msgctxt ""
"SMILING_FACE_WITH_SUNGLASSES\n"
"LngText.text"
msgid "sunglasses"
-msgstr ""
+msgstr "solbriller"
#. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8289,7 +8276,7 @@ msgctxt ""
"SMIRKING_FACE\n"
"LngText.text"
msgid "smirk"
-msgstr ""
+msgstr "sleskt smil"
#. 😐 (U+1F610), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8298,7 +8285,7 @@ msgctxt ""
"NEUTRAL_FACE\n"
"LngText.text"
msgid "neutral face"
-msgstr ""
+msgstr "nøytralt ansikt"
#. 😑 (U+1F611), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8307,7 +8294,7 @@ msgctxt ""
"EXPRESSIONLESS_FACE\n"
"LngText.text"
msgid "expressionless"
-msgstr ""
+msgstr "uttrykksløs"
#. 😒 (U+1F612), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8316,7 +8303,7 @@ msgctxt ""
"UNAMUSED_FACE\n"
"LngText.text"
msgid "unamused"
-msgstr ""
+msgstr "misfornøyd"
#. 😓 (U+1F613), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8325,7 +8312,7 @@ msgctxt ""
"FACE_WITH_COLD_SWEAT\n"
"LngText.text"
msgid "sweat"
-msgstr ""
+msgstr "kaldsvette"
#. 😔 (U+1F614), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8334,7 +8321,7 @@ msgctxt ""
"PENSIVE_FACE\n"
"LngText.text"
msgid "pensive"
-msgstr ""
+msgstr "ettertenksom"
#. 😕 (U+1F615), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8343,7 +8330,7 @@ msgctxt ""
"CONFUSED_FACE\n"
"LngText.text"
msgid "confused"
-msgstr ""
+msgstr "forvirret"
#. 😖 (U+1F616), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8352,7 +8339,7 @@ msgctxt ""
"CONFOUNDED_FACE\n"
"LngText.text"
msgid "confounded"
-msgstr ""
+msgstr "forundret"
#. 😗 (U+1F617), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8361,7 +8348,7 @@ msgctxt ""
"KISSING_FACE\n"
"LngText.text"
msgid "kissing"
-msgstr ""
+msgstr "kysser"
#. 😘 (U+1F618), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8370,7 +8357,7 @@ msgctxt ""
"FACE_THROWING_A_KISS\n"
"LngText.text"
msgid "kiss2"
-msgstr ""
+msgstr "kyss"
#. 😙 (U+1F619), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8379,7 +8366,7 @@ msgctxt ""
"KISSING_FACE_WITH_SMILING_EYES\n"
"LngText.text"
msgid "kiss3"
-msgstr ""
+msgstr "kyss"
#. 😚 (U+1F61A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8388,7 +8375,7 @@ msgctxt ""
"KISSING_FACE_WITH_CLOSED_EYES\n"
"LngText.text"
msgid "kiss4"
-msgstr ""
+msgstr "kyss"
#. 😛 (U+1F61B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8397,7 +8384,7 @@ msgctxt ""
"FACE_WITH_STUCK-OUT_TONGUE\n"
"LngText.text"
msgid "tongue2"
-msgstr ""
+msgstr "tunge"
#. 😜 (U+1F61C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8406,7 +8393,7 @@ msgctxt ""
"FACE_WITH_STUCK-OUT_TONGUE_AND_WINKING_EYE\n"
"LngText.text"
msgid "tongue3"
-msgstr ""
+msgstr "tunge"
#. 😝 (U+1F61D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8415,7 +8402,7 @@ msgctxt ""
"FACE_WITH_STUCK-OUT_TONGUE_AND_TIGHTLY-CLOSED_EYES\n"
"LngText.text"
msgid "tongue4"
-msgstr ""
+msgstr "tunge"
#. 😞 (U+1F61E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8424,7 +8411,7 @@ msgctxt ""
"DISAPPOINTED_FACE\n"
"LngText.text"
msgid "disappointed"
-msgstr ""
+msgstr "skuffa"
#. 😟 (U+1F61F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8433,7 +8420,7 @@ msgctxt ""
"WORRIED_FACE\n"
"LngText.text"
msgid "worried"
-msgstr ""
+msgstr "bekymret"
#. 😠 (U+1F620), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8442,7 +8429,7 @@ msgctxt ""
"ANGRY_FACE\n"
"LngText.text"
msgid "angry"
-msgstr ""
+msgstr "sint"
#. 😡 (U+1F621), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8451,7 +8438,7 @@ msgctxt ""
"POUTING_FACE\n"
"LngText.text"
msgid "rage"
-msgstr ""
+msgstr "sint"
#. 😢 (U+1F622), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8460,7 +8447,7 @@ msgctxt ""
"CRYING_FACE\n"
"LngText.text"
msgid "cry"
-msgstr ""
+msgstr "gråt"
#. 😣 (U+1F623), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8469,7 +8456,7 @@ msgctxt ""
"PERSEVERING_FACE\n"
"LngText.text"
msgid "persevere"
-msgstr ""
+msgstr "standhaftig"
#. 😤 (U+1F624), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8478,7 +8465,7 @@ msgctxt ""
"FACE_WITH_LOOK_OF_TRIUMPH\n"
"LngText.text"
msgid "triumph"
-msgstr ""
+msgstr "triumferende"
#. 😥 (U+1F625), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8487,7 +8474,7 @@ msgctxt ""
"DISAPPOINTED_BUT_RELIEVED_FACE\n"
"LngText.text"
msgid "disappointed relieved"
-msgstr ""
+msgstr "skuffet men lettet"
#. 😦 (U+1F626), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8496,7 +8483,7 @@ msgctxt ""
"FROWNING_FACE_WITH_OPEN_MOUTH\n"
"LngText.text"
msgid "frowning"
-msgstr ""
+msgstr "skulende"
#. 😧 (U+1F627), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8505,7 +8492,7 @@ msgctxt ""
"ANGUISHED_FACE\n"
"LngText.text"
msgid "anguished"
-msgstr ""
+msgstr "forpint"
#. 😨 (U+1F628), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8514,7 +8501,7 @@ msgctxt ""
"FEARFUL_FACE\n"
"LngText.text"
msgid "fearful"
-msgstr ""
+msgstr "engstelig"
#. 😩 (U+1F629), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8523,7 +8510,7 @@ msgctxt ""
"WEARY_FACE\n"
"LngText.text"
msgid "weary"
-msgstr ""
+msgstr "sliten"
#. 😪 (U+1F62A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8532,7 +8519,7 @@ msgctxt ""
"SLEEPY_FACE\n"
"LngText.text"
msgid "sleepy"
-msgstr ""
+msgstr "søvnig"
#. 😫 (U+1F62B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8541,7 +8528,7 @@ msgctxt ""
"TIRED_FACE\n"
"LngText.text"
msgid "tired face"
-msgstr ""
+msgstr "trøtt ansikte"
#. 😬 (U+1F62C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8550,7 +8537,7 @@ msgctxt ""
"GRIMACING_FACE\n"
"LngText.text"
msgid "grimacing"
-msgstr ""
+msgstr "grimase"
#. 😭 (U+1F62D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8559,7 +8546,7 @@ msgctxt ""
"LOUDLY_CRYING_FACE\n"
"LngText.text"
msgid "sob"
-msgstr ""
+msgstr "hulk"
#. 😮 (U+1F62E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8568,7 +8555,7 @@ msgctxt ""
"FACE_WITH_OPEN_MOUTH\n"
"LngText.text"
msgid "open mouth"
-msgstr ""
+msgstr "åpen munn"
#. 😯 (U+1F62F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8577,7 +8564,7 @@ msgctxt ""
"HUSHED_FACE\n"
"LngText.text"
msgid "hushed"
-msgstr ""
+msgstr "hysj"
#. 😰 (U+1F630), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8586,7 +8573,7 @@ msgctxt ""
"FACE_WITH_OPEN_MOUTH_AND_COLD_SWEAT\n"
"LngText.text"
msgid "cold sweat"
-msgstr ""
+msgstr "kaldsvette"
#. 😱 (U+1F631), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8595,7 +8582,7 @@ msgctxt ""
"FACE_SCREAMING_IN_FEAR\n"
"LngText.text"
msgid "scream"
-msgstr ""
+msgstr "skrik"
#. 😲 (U+1F632), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8604,7 +8591,7 @@ msgctxt ""
"ASTONISHED_FACE\n"
"LngText.text"
msgid "astonished"
-msgstr ""
+msgstr "forbausa"
#. 😳 (U+1F633), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8613,7 +8600,7 @@ msgctxt ""
"FLUSHED_FACE\n"
"LngText.text"
msgid "flushed"
-msgstr ""
+msgstr "rødmende"
#. 😴 (U+1F634), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8622,7 +8609,7 @@ msgctxt ""
"SLEEPING_FACE\n"
"LngText.text"
msgid "sleeping"
-msgstr ""
+msgstr "sovende"
#. 😵 (U+1F635), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8631,7 +8618,7 @@ msgctxt ""
"DIZZY_FACE\n"
"LngText.text"
msgid "dizzy face"
-msgstr ""
+msgstr "svimmelt ansikt"
#. 😶 (U+1F636), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8640,7 +8627,7 @@ msgctxt ""
"FACE_WITHOUT_MOUTH\n"
"LngText.text"
msgid "no mouth"
-msgstr ""
+msgstr "uten munn"
#. 😷 (U+1F637), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8649,7 +8636,7 @@ msgctxt ""
"FACE_WITH_MEDICAL_MASK\n"
"LngText.text"
msgid "mask"
-msgstr ""
+msgstr "maske"
#. 😸 (U+1F638), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8658,7 +8645,7 @@ msgctxt ""
"GRINNING_CAT_FACE_WITH_SMILING_EYES\n"
"LngText.text"
msgid "smile cat"
-msgstr ""
+msgstr "flirende katt"
#. 😹 (U+1F639), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8667,7 +8654,7 @@ msgctxt ""
"CAT_FACE_WITH_TEARS_OF_JOY\n"
"LngText.text"
msgid "joy cat"
-msgstr ""
+msgstr "glad katt"
#. 😺 (U+1F63A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8676,7 +8663,7 @@ msgctxt ""
"SMILING_CAT_FACE_WITH_OPEN_MOUTH\n"
"LngText.text"
msgid "smiley cat"
-msgstr ""
+msgstr "smilende katt"
#. 😻 (U+1F63B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8685,7 +8672,7 @@ msgctxt ""
"SMILING_CAT_FACE_WITH_HEART-SHAPED_EYES\n"
"LngText.text"
msgid "heart eyes cat"
-msgstr ""
+msgstr "katt med hjerteformede øyne"
#. 😼 (U+1F63C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8694,7 +8681,7 @@ msgctxt ""
"CAT_FACE_WITH_WRY_SMILE\n"
"LngText.text"
msgid "smirk cat"
-msgstr ""
+msgstr "glisende katt"
#. 😽 (U+1F63D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8703,7 +8690,7 @@ msgctxt ""
"KISSING_CAT_FACE_WITH_CLOSED_EYES\n"
"LngText.text"
msgid "kissing cat"
-msgstr ""
+msgstr "kyssende katt"
#. 😾 (U+1F63E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8712,7 +8699,7 @@ msgctxt ""
"POUTING_CAT_FACE\n"
"LngText.text"
msgid "pouting cat"
-msgstr ""
+msgstr "katt med trutmunn"
#. 😿 (U+1F63F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8721,7 +8708,7 @@ msgctxt ""
"CRYING_CAT_FACE\n"
"LngText.text"
msgid "crying cat"
-msgstr ""
+msgstr "gråtende katt"
#. 🙀 (U+1F640), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8730,7 +8717,7 @@ msgctxt ""
"WEARY_CAT_FACE\n"
"LngText.text"
msgid "scream cat"
-msgstr ""
+msgstr "skrikende katt"
#. 🙅 (U+1F645), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8739,7 +8726,7 @@ msgctxt ""
"FACE_WITH_NO_GOOD_GESTURE\n"
"LngText.text"
msgid "no good"
-msgstr ""
+msgstr "avvisende"
#. 🙆 (U+1F646), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8748,7 +8735,7 @@ msgctxt ""
"FACE_WITH_OK_GESTURE\n"
"LngText.text"
msgid "ok2"
-msgstr ""
+msgstr "ok"
#. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8757,7 +8744,7 @@ msgctxt ""
"PERSON_BOWING_DEEPLY\n"
"LngText.text"
msgid "bow"
-msgstr ""
+msgstr "bukke dypt"
#. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8766,7 +8753,7 @@ msgctxt ""
"SEE-NO-EVIL_MONKEY\n"
"LngText.text"
msgid "see no evil"
-msgstr ""
+msgstr "ape som dekker øynene"
#. 🙉 (U+1F649), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8775,7 +8762,7 @@ msgctxt ""
"HEAR-NO-EVIL_MONKEY\n"
"LngText.text"
msgid "hear no evil"
-msgstr ""
+msgstr "ape som dekker ørene"
#. 🙊 (U+1F64A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8784,7 +8771,7 @@ msgctxt ""
"SPEAK-NO-EVIL_MONKEY\n"
"LngText.text"
msgid "speak no evil"
-msgstr ""
+msgstr "ape som dekker munnen"
#. 🙋 (U+1F64B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8793,7 +8780,7 @@ msgctxt ""
"HAPPY_PERSON_RAISING_ONE_HAND\n"
"LngText.text"
msgid "happiness"
-msgstr ""
+msgstr "glede"
#. 🙌 (U+1F64C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8802,7 +8789,7 @@ msgctxt ""
"PERSON_RAISING_BOTH_HANDS_IN_CELEBRATION\n"
"LngText.text"
msgid "celebration"
-msgstr ""
+msgstr "feirer"
#. 🙍 (U+1F64D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8811,7 +8798,7 @@ msgctxt ""
"PERSON_FROWNING\n"
"LngText.text"
msgid "person frowning"
-msgstr ""
+msgstr "skulende person"
#. 🙎 (U+1F64E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8820,7 +8807,7 @@ msgctxt ""
"PERSON_WITH_POUTING_FACE\n"
"LngText.text"
msgid "person pouting"
-msgstr ""
+msgstr "person med trutmunn"
#. 🙏 (U+1F64F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8829,7 +8816,7 @@ msgctxt ""
"PERSON_WITH_FOLDED_HANDS\n"
"LngText.text"
msgid "pray"
-msgstr ""
+msgstr "ber"
#. 🚀 (U+1F680), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8838,7 +8825,7 @@ msgctxt ""
"ROCKET\n"
"LngText.text"
msgid "rocket"
-msgstr ""
+msgstr "rakett"
#. 🚁 (U+1F681), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8847,7 +8834,7 @@ msgctxt ""
"HELICOPTER\n"
"LngText.text"
msgid "helicopter"
-msgstr ""
+msgstr "helikopter"
#. 🚂 (U+1F682), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8856,7 +8843,7 @@ msgctxt ""
"STEAM_LOCOMOTIVE\n"
"LngText.text"
msgid "steam locomotive"
-msgstr ""
+msgstr "damplokomotiv"
#. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8865,7 +8852,7 @@ msgctxt ""
"RAILWAY_CAR\n"
"LngText.text"
msgid "railway car"
-msgstr ""
+msgstr "jernbanevogn"
#. 🚄 (U+1F684), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8874,7 +8861,7 @@ msgctxt ""
"HIGH-SPEED_TRAIN\n"
"LngText.text"
msgid "train2"
-msgstr ""
+msgstr "hurtigtog"
#. 🚅 (U+1F685), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8883,7 +8870,7 @@ msgctxt ""
"HIGH-SPEED_TRAIN_WITH_BULLET_NOSE\n"
"LngText.text"
msgid "train3"
-msgstr ""
+msgstr "japansk hurtigtog"
#. 🚆 (U+1F686), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8892,7 +8879,7 @@ msgctxt ""
"TRAIN\n"
"LngText.text"
msgid "train"
-msgstr ""
+msgstr "tog"
#. 🚇 (U+1F687), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8901,7 +8888,7 @@ msgctxt ""
"METRO\n"
"LngText.text"
msgid "metro"
-msgstr ""
+msgstr "undergrunnsbane"
#. 🚈 (U+1F688), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8910,7 +8897,7 @@ msgctxt ""
"LIGHT_RAIL\n"
"LngText.text"
msgid "light rail"
-msgstr ""
+msgstr "s-bane"
#. 🚉 (U+1F689), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8919,7 +8906,7 @@ msgctxt ""
"STATION\n"
"LngText.text"
msgid "station"
-msgstr ""
+msgstr "stasjon"
#. 🚊 (U+1F68A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8928,7 +8915,7 @@ msgctxt ""
"TRAM\n"
"LngText.text"
msgid "tram"
-msgstr ""
+msgstr "trikk"
#. 🚋 (U+1F68B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8937,7 +8924,7 @@ msgctxt ""
"TRAM_CAR\n"
"LngText.text"
msgid "tram2"
-msgstr ""
+msgstr "trikk"
#. 🚌 (U+1F68C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8946,7 +8933,7 @@ msgctxt ""
"BUS\n"
"LngText.text"
msgid "bus"
-msgstr ""
+msgstr "buss"
#. 🚍 (U+1F68D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8955,7 +8942,7 @@ msgctxt ""
"ONCOMING_BUS\n"
"LngText.text"
msgid "bus2"
-msgstr ""
+msgstr "buss"
#. 🚎 (U+1F68E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8964,7 +8951,7 @@ msgctxt ""
"TROLLEYBUS\n"
"LngText.text"
msgid "trolleybus"
-msgstr ""
+msgstr "buss"
#. 🚏 (U+1F68F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8973,7 +8960,7 @@ msgctxt ""
"BUS_STOP\n"
"LngText.text"
msgid "busstop"
-msgstr ""
+msgstr "busstopp"
#. 🚐 (U+1F690), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8982,7 +8969,7 @@ msgctxt ""
"MINIBUS\n"
"LngText.text"
msgid "minibus"
-msgstr ""
+msgstr "minibuss"
#. 🚑 (U+1F691), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -8991,7 +8978,7 @@ msgctxt ""
"AMBULANCE\n"
"LngText.text"
msgid "ambulance"
-msgstr ""
+msgstr "ambulanse"
#. 🚒 (U+1F692), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9000,7 +8987,7 @@ msgctxt ""
"FIRE_ENGINE\n"
"LngText.text"
msgid "fire engine"
-msgstr ""
+msgstr "brannbil"
#. 🚓 (U+1F693), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9009,7 +8996,7 @@ msgctxt ""
"POLICE_CAR\n"
"LngText.text"
msgid "police car"
-msgstr ""
+msgstr "politibil"
#. 🚔 (U+1F694), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9018,7 +9005,7 @@ msgctxt ""
"ONCOMING_POLICE_CAR\n"
"LngText.text"
msgid "police car2"
-msgstr ""
+msgstr "politibil"
#. 🚕 (U+1F695), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9027,7 +9014,7 @@ msgctxt ""
"TAXI\n"
"LngText.text"
msgid "taxi"
-msgstr ""
+msgstr "taxi"
#. 🚖 (U+1F696), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9036,7 +9023,7 @@ msgctxt ""
"ONCOMING_TAXI\n"
"LngText.text"
msgid "taxi2"
-msgstr ""
+msgstr "taxi"
#. 🚗 (U+1F697), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9045,7 +9032,7 @@ msgctxt ""
"AUTOMOBILE\n"
"LngText.text"
msgid "car"
-msgstr ""
+msgstr "bil"
#. 🚘 (U+1F698), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9054,7 +9041,7 @@ msgctxt ""
"ONCOMING_AUTOMOBILE\n"
"LngText.text"
msgid "car2"
-msgstr ""
+msgstr "bil"
#. 🚙 (U+1F699), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9063,7 +9050,7 @@ msgctxt ""
"RECREATIONAL_VEHICLE\n"
"LngText.text"
msgid "car3"
-msgstr ""
+msgstr "bobil"
#. 🚚 (U+1F69A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9072,7 +9059,7 @@ msgctxt ""
"DELIVERY_TRUCK\n"
"LngText.text"
msgid "truck2"
-msgstr ""
+msgstr "lastebil"
#. 🚛 (U+1F69B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9081,7 +9068,7 @@ msgctxt ""
"ARTICULATED_LORRY\n"
"LngText.text"
msgid "lorry"
-msgstr ""
+msgstr "lastebil"
#. 🚜 (U+1F69C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9090,7 +9077,7 @@ msgctxt ""
"TRACTOR\n"
"LngText.text"
msgid "tractor"
-msgstr ""
+msgstr "traktor"
#. 🚝 (U+1F69D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9099,7 +9086,7 @@ msgctxt ""
"MONORAIL\n"
"LngText.text"
msgid "monorail"
-msgstr ""
+msgstr "enskinnebane"
#. 🚞 (U+1F69E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9108,7 +9095,7 @@ msgctxt ""
"MOUNTAIN_RAILWAY\n"
"LngText.text"
msgid "mountain railway"
-msgstr ""
+msgstr "fjell jernbane"
#. 🚟 (U+1F69F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9117,7 +9104,7 @@ msgctxt ""
"SUSPENSION_RAILWAY\n"
"LngText.text"
msgid "suspension railway"
-msgstr ""
+msgstr "svevebane"
#. 🚠 (U+1F6A0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9126,7 +9113,7 @@ msgctxt ""
"MOUNTAIN_CABLEWAY\n"
"LngText.text"
msgid "mountain cableway"
-msgstr ""
+msgstr "kabelbane"
#. 🚡 (U+1F6A1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9135,7 +9122,7 @@ msgctxt ""
"AERIAL_TRAMWAY\n"
"LngText.text"
msgid "aerial tramway"
-msgstr ""
+msgstr "kabelbane"
#. 🚢 (U+1F6A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9144,7 +9131,7 @@ msgctxt ""
"SHIP\n"
"LngText.text"
msgid "ship"
-msgstr ""
+msgstr "skip"
#. 🚣 (U+1F6A3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9153,7 +9140,7 @@ msgctxt ""
"ROWBOAT\n"
"LngText.text"
msgid "rowboat"
-msgstr ""
+msgstr "robåt"
#. 🚤 (U+1F6A4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9162,7 +9149,7 @@ msgctxt ""
"SPEEDBOAT\n"
"LngText.text"
msgid "speedboat"
-msgstr ""
+msgstr "speedbåt"
#. 🚥 (U+1F6A5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9171,7 +9158,7 @@ msgctxt ""
"HORIZONTAL_TRAFFIC_LIGHT\n"
"LngText.text"
msgid "traffic light"
-msgstr ""
+msgstr "trafikklys"
#. 🚦 (U+1F6A6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9180,7 +9167,7 @@ msgctxt ""
"VERTICAL_TRAFFIC_LIGHT\n"
"LngText.text"
msgid "traffic light2"
-msgstr ""
+msgstr "trafikklys"
#. 🚧 (U+1F6A7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9189,7 +9176,7 @@ msgctxt ""
"CONSTRUCTION_SIGN\n"
"LngText.text"
msgid "construction"
-msgstr ""
+msgstr "veisperre"
#. 🚨 (U+1F6A8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9198,7 +9185,7 @@ msgctxt ""
"POLICE_CARS_REVOLVING_LIGHT\n"
"LngText.text"
msgid "rotating light"
-msgstr ""
+msgstr "blålys"
#. 🚩 (U+1F6A9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9207,7 +9194,7 @@ msgctxt ""
"TRIANGULAR_FLAG_ON_POST\n"
"LngText.text"
msgid "triangular flag"
-msgstr ""
+msgstr "trekantet flagg"
#. 🚪 (U+1F6AA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9216,7 +9203,7 @@ msgctxt ""
"DOOR\n"
"LngText.text"
msgid "door"
-msgstr ""
+msgstr "dør"
#. 🚫 (U+1F6AB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9225,7 +9212,7 @@ msgctxt ""
"NO_ENTRY_SIGN\n"
"LngText.text"
msgid "no entry sign"
-msgstr ""
+msgstr "ingen adgang"
#. 🚬 (U+1F6AC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9234,7 +9221,7 @@ msgctxt ""
"SMOKING_SYMBOL\n"
"LngText.text"
msgid "smoking"
-msgstr ""
+msgstr "røyking"
#. 🚭 (U+1F6AD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9243,7 +9230,7 @@ msgctxt ""
"NO_SMOKING_SYMBOL\n"
"LngText.text"
msgid "no smoking"
-msgstr ""
+msgstr "røyking forbudt"
#. 🚮 (U+1F6AE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9252,7 +9239,7 @@ msgctxt ""
"PUT_LITTER_IN_ITS_PLACE_SYMBOL\n"
"LngText.text"
msgid "litter"
-msgstr ""
+msgstr "søppelsortering"
#. 🚯 (U+1F6AF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9261,7 +9248,7 @@ msgctxt ""
"DO_NOT_LITTER_SYMBOL\n"
"LngText.text"
msgid "do not litter"
-msgstr ""
+msgstr "ikke kast avfall her"
#. 🚰 (U+1F6B0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9270,7 +9257,7 @@ msgctxt ""
"POTABLE_WATER_SYMBOL\n"
"LngText.text"
msgid "potable water"
-msgstr ""
+msgstr "drikkevann"
#. 🚱 (U+1F6B1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9279,7 +9266,7 @@ msgctxt ""
"NON-POTABLE_WATER_SYMBOL\n"
"LngText.text"
msgid "non-potable water"
-msgstr ""
+msgstr "ikke drikkevann"
#. 🚲 (U+1F6B2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9288,7 +9275,7 @@ msgctxt ""
"BICYCLE\n"
"LngText.text"
msgid "bike"
-msgstr ""
+msgstr "sykkel"
#. 🚳 (U+1F6B3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9297,7 +9284,7 @@ msgctxt ""
"NO_BICYCLES\n"
"LngText.text"
msgid "no bicycles"
-msgstr ""
+msgstr "sykling forbudt"
#. 🚴 (U+1F6B4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9306,7 +9293,7 @@ msgctxt ""
"BICYCLIST\n"
"LngText.text"
msgid "bicyclist"
-msgstr ""
+msgstr "syklist"
#. 🚵 (U+1F6B5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9315,7 +9302,7 @@ msgctxt ""
"MOUNTAIN_BICYCLIST\n"
"LngText.text"
msgid "bicyclist2"
-msgstr ""
+msgstr "mountainbiker"
#. 🚶 (U+1F6B6), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9324,7 +9311,7 @@ msgctxt ""
"PEDESTRIAN\n"
"LngText.text"
msgid "walking"
-msgstr ""
+msgstr "fotgjenger"
#. 🚷 (U+1F6B7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9333,7 +9320,7 @@ msgctxt ""
"NO_PEDESTRIANS\n"
"LngText.text"
msgid "no pedestrians"
-msgstr ""
+msgstr "forbudt for fotgjengere"
#. 🚸 (U+1F6B8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9342,7 +9329,7 @@ msgctxt ""
"CHILDREN_CROSSING\n"
"LngText.text"
msgid "children crossing"
-msgstr ""
+msgstr "barn i veien"
#. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9351,7 +9338,7 @@ msgctxt ""
"MENS_SYMBOL\n"
"LngText.text"
msgid "mens"
-msgstr ""
+msgstr "herretoalett"
#. 🚺 (U+1F6BA), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9360,7 +9347,7 @@ msgctxt ""
"WOMENS_SYMBOL\n"
"LngText.text"
msgid "womens"
-msgstr ""
+msgstr "dametoalett"
#. 🚻 (U+1F6BB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9369,7 +9356,7 @@ msgctxt ""
"RESTROOM\n"
"LngText.text"
msgid "restroom"
-msgstr ""
+msgstr "toalett"
#. 🚼 (U+1F6BC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9378,7 +9365,7 @@ msgctxt ""
"BABY_SYMBOL\n"
"LngText.text"
msgid "baby2"
-msgstr ""
+msgstr "stellerom"
#. 🚽 (U+1F6BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9387,7 +9374,7 @@ msgctxt ""
"TOILET\n"
"LngText.text"
msgid "toilet"
-msgstr ""
+msgstr "toalett"
#. 🚾 (U+1F6BE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9396,7 +9383,7 @@ msgctxt ""
"WATER_CLOSET\n"
"LngText.text"
msgid "toilet2"
-msgstr ""
+msgstr "WC"
#. 🚿 (U+1F6BF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9405,7 +9392,7 @@ msgctxt ""
"SHOWER\n"
"LngText.text"
msgid "shower"
-msgstr ""
+msgstr "dusj"
#. 🛀 (U+1F6C0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9414,7 +9401,7 @@ msgctxt ""
"BATH\n"
"LngText.text"
msgid "bath"
-msgstr ""
+msgstr "bad"
#. 🛁 (U+1F6C1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9423,7 +9410,7 @@ msgctxt ""
"BATHTUB\n"
"LngText.text"
msgid "bathtub"
-msgstr ""
+msgstr "badekar"
#. 🛂 (U+1F6C2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9432,7 +9419,7 @@ msgctxt ""
"PASSPORT_CONTROL\n"
"LngText.text"
msgid "passport"
-msgstr ""
+msgstr "passkontroll"
#. 🛃 (U+1F6C3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9441,7 +9428,7 @@ msgctxt ""
"CUSTOMS\n"
"LngText.text"
msgid "customs"
-msgstr ""
+msgstr "toll"
#. 🛄 (U+1F6C4), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9450,7 +9437,7 @@ msgctxt ""
"BAGGAGE_CLAIM\n"
"LngText.text"
msgid "baggage"
-msgstr ""
+msgstr "bagasje"
#. 🛅 (U+1F6C5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9459,7 +9446,7 @@ msgctxt ""
"LEFT_LUGGAGE\n"
"LngText.text"
msgid "left luggage"
-msgstr ""
+msgstr "etterlatt bagasje"
#. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9468,7 +9455,7 @@ msgctxt ""
"VULGAR_FRACTION_ONE_HALF\n"
"LngText.text"
msgid "1/2"
-msgstr ""
+msgstr "1/2"
#. ⅓ (U+02153), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9477,7 +9464,7 @@ msgctxt ""
"VULGAR_FRACTION_ONE_THIRD\n"
"LngText.text"
msgid "1/3"
-msgstr ""
+msgstr "1/3"
#. ¼ (U+000BC), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9486,7 +9473,7 @@ msgctxt ""
"VULGAR_FRACTION_ONE_QUARTER\n"
"LngText.text"
msgid "1/4"
-msgstr ""
+msgstr "1/4"
#. ⅔ (U+02154), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9495,7 +9482,7 @@ msgctxt ""
"VULGAR_FRACTION_TWO_THIRDS\n"
"LngText.text"
msgid "2/3"
-msgstr ""
+msgstr "2/3"
#. ¾ (U+000BE), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9504,7 +9491,7 @@ msgctxt ""
"VULGAR_FRACTION_THREE_QUARTERS\n"
"LngText.text"
msgid "3/4"
-msgstr ""
+msgstr "3/4"
#. ⅛ (U+0215B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9513,7 +9500,7 @@ msgctxt ""
"VULGAR_FRACTION_ONE_EIGHTH\n"
"LngText.text"
msgid "1/8"
-msgstr ""
+msgstr "1/8"
#. ⅜ (U+0215C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9522,7 +9509,7 @@ msgctxt ""
"VULGAR_FRACTION_THREE_EIGHTHS\n"
"LngText.text"
msgid "3/8"
-msgstr ""
+msgstr "3/8"
#. ⅝ (U+0215D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9531,7 +9518,7 @@ msgctxt ""
"VULGAR_FRACTION_FIVE_EIGHTHS\n"
"LngText.text"
msgid "5/8"
-msgstr ""
+msgstr "5/8"
#. ⅞ (U+0215E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9540,7 +9527,7 @@ msgctxt ""
"VULGAR_FRACTION_SEVEN_EIGHTHS\n"
"LngText.text"
msgid "7/8"
-msgstr ""
+msgstr "7/8"
#. ¹ (U+000B9), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9549,7 +9536,7 @@ msgctxt ""
"SUPERSCRIPT_ONE\n"
"LngText.text"
msgid "^1"
-msgstr ""
+msgstr "^1"
#. ² (U+000B2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9558,7 +9545,7 @@ msgctxt ""
"SUPERSCRIPT_TWO\n"
"LngText.text"
msgid "^2"
-msgstr ""
+msgstr "^2"
#. ³ (U+000B3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9567,7 +9554,7 @@ msgctxt ""
"SUPERSCRIPT_THREE\n"
"LngText.text"
msgid "^3"
-msgstr ""
+msgstr "^3"
#. ⁴ (U+02074), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9576,7 +9563,7 @@ msgctxt ""
"SUPERSCRIPT_FOUR\n"
"LngText.text"
msgid "^4"
-msgstr ""
+msgstr "^4"
#. ⁵ (U+02075), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9585,7 +9572,7 @@ msgctxt ""
"SUPERSCRIPT_FIVE\n"
"LngText.text"
msgid "^5"
-msgstr ""
+msgstr "^5"
#. ⁶ (U+02076), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9594,7 +9581,7 @@ msgctxt ""
"SUPERSCRIPT_SIX\n"
"LngText.text"
msgid "^6"
-msgstr ""
+msgstr "^6"
#. ⁷ (U+02077), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9603,7 +9590,7 @@ msgctxt ""
"SUPERSCRIPT_SEVEN\n"
"LngText.text"
msgid "^7"
-msgstr ""
+msgstr "^7"
#. ⁸ (U+02078), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9612,7 +9599,7 @@ msgctxt ""
"SUPERSCRIPT_EIGHT\n"
"LngText.text"
msgid "^8"
-msgstr ""
+msgstr "^8"
#. ⁹ (U+02079), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9621,7 +9608,7 @@ msgctxt ""
"SUPERSCRIPT_NINE\n"
"LngText.text"
msgid "^9"
-msgstr ""
+msgstr "^9"
#. ⁰ (U+02070), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9630,7 +9617,7 @@ msgctxt ""
"SUPERSCRIPT_ZERO\n"
"LngText.text"
msgid "^0"
-msgstr ""
+msgstr "^0"
#. ⁺ (U+0207A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9639,11 +9626,10 @@ msgctxt ""
"SUPERSCRIPT_PLUS_SIGN\n"
"LngText.text"
msgid "^+"
-msgstr ""
+msgstr "^+"
#. ⁻ (U+0207B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"SUPERSCRIPT_MINUS\n"
@@ -9658,11 +9644,10 @@ msgctxt ""
"SUPERSCRIPT_EQUALS_SIGN\n"
"LngText.text"
msgid "^="
-msgstr ""
+msgstr "^="
#. ⁽ (U+0207D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"SUPERSCRIPT_LEFT_PARENTHESIS\n"
@@ -9672,7 +9657,6 @@ msgstr "^("
#. ⁾ (U+0207E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"SUPERSCRIPT_RIGHT_PARENTHESIS\n"
@@ -9687,7 +9671,7 @@ msgctxt ""
"SUBSCRIPT_ONE\n"
"LngText.text"
msgid "_1"
-msgstr ""
+msgstr "_1"
#. ₂ (U+02082), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9696,7 +9680,7 @@ msgctxt ""
"SUBSCRIPT_TWO\n"
"LngText.text"
msgid "_2"
-msgstr ""
+msgstr "_2"
#. ₃ (U+02083), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9705,7 +9689,7 @@ msgctxt ""
"SUBSCRIPT_THREE\n"
"LngText.text"
msgid "_3"
-msgstr ""
+msgstr "_3"
#. ₄ (U+02084), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9714,7 +9698,7 @@ msgctxt ""
"SUBSCRIPT_FOUR\n"
"LngText.text"
msgid "_4"
-msgstr ""
+msgstr "_4"
#. ₅ (U+02085), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9723,7 +9707,7 @@ msgctxt ""
"SUBSCRIPT_FIVE\n"
"LngText.text"
msgid "_5"
-msgstr ""
+msgstr "_5"
#. ₆ (U+02086), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9732,7 +9716,7 @@ msgctxt ""
"SUBSCRIPT_SIX\n"
"LngText.text"
msgid "_6"
-msgstr ""
+msgstr "_6"
#. ₇ (U+02087), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9741,7 +9725,7 @@ msgctxt ""
"SUBSCRIPT_SEVEN\n"
"LngText.text"
msgid "_7"
-msgstr ""
+msgstr "_7"
#. ₈ (U+02088), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9750,7 +9734,7 @@ msgctxt ""
"SUBSCRIPT_EIGHT\n"
"LngText.text"
msgid "_8"
-msgstr ""
+msgstr "_8"
#. ₉ (U+02089), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9759,7 +9743,7 @@ msgctxt ""
"SUBSCRIPT_NINE\n"
"LngText.text"
msgid "_9"
-msgstr ""
+msgstr "_9"
#. ₀ (U+02080), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9768,7 +9752,7 @@ msgctxt ""
"SUBSCRIPT_ZERO\n"
"LngText.text"
msgid "_0"
-msgstr ""
+msgstr "_0"
#. ₊ (U+0208A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9777,11 +9761,10 @@ msgctxt ""
"SUBSCRIPT_PLUS_SIGN\n"
"LngText.text"
msgid "_+"
-msgstr ""
+msgstr "_+"
#. ₋ (U+0208B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"SUBSCRIPT_MINUS\n"
@@ -9796,11 +9779,10 @@ msgctxt ""
"SUBSCRIPT_EQUALS_SIGN\n"
"LngText.text"
msgid "_="
-msgstr ""
+msgstr "_="
#. ₍ (U+0208D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"SUBSCRIPT_LEFT_PARENTHESIS\n"
@@ -9810,7 +9792,6 @@ msgstr "_("
#. ₎ (U+0208E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
-#, fuzzy
msgctxt ""
"emoji.ulf\n"
"SUBSCRIPT_RIGHT_PARENTHESIS\n"
@@ -9825,7 +9806,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_A\n"
"LngText.text"
msgid "^a"
-msgstr ""
+msgstr "^a"
#. ᵇ (U+01D47), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9834,7 +9815,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_B\n"
"LngText.text"
msgid "^b"
-msgstr ""
+msgstr "^b"
#. ᶜ (U+01D9C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9843,7 +9824,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_C\n"
"LngText.text"
msgid "^c"
-msgstr ""
+msgstr "^c"
#. ᵈ (U+01D48), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9852,7 +9833,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_D\n"
"LngText.text"
msgid "^d"
-msgstr ""
+msgstr "^d"
#. ᵉ (U+01D49), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9861,7 +9842,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_E\n"
"LngText.text"
msgid "^e"
-msgstr ""
+msgstr "^e"
#. ᶠ (U+01DA0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9870,7 +9851,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_F\n"
"LngText.text"
msgid "^f"
-msgstr ""
+msgstr "^f"
#. ᵍ (U+01D4D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9879,7 +9860,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_G\n"
"LngText.text"
msgid "^g"
-msgstr ""
+msgstr "^g"
#. ʰ (U+002B0), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9888,7 +9869,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_H\n"
"LngText.text"
msgid "^h"
-msgstr ""
+msgstr "^h"
#. ⁱ (U+02071), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9897,7 +9878,7 @@ msgctxt ""
"SUPERSCRIPT_LATIN_SMALL_LETTER_I\n"
"LngText.text"
msgid "^i"
-msgstr ""
+msgstr "^i"
#. ʲ (U+002B2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9906,7 +9887,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_J\n"
"LngText.text"
msgid "^j"
-msgstr ""
+msgstr "^j"
#. ᵏ (U+01D4F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9915,7 +9896,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_K\n"
"LngText.text"
msgid "^k"
-msgstr ""
+msgstr "^k"
#. ˡ (U+002E1), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9924,7 +9905,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_L\n"
"LngText.text"
msgid "^l"
-msgstr ""
+msgstr "^l"
#. ᵐ (U+01D50), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9933,7 +9914,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_M\n"
"LngText.text"
msgid "^m"
-msgstr ""
+msgstr "^m"
#. ⁿ (U+0207F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9942,7 +9923,7 @@ msgctxt ""
"SUPERSCRIPT_LATIN_SMALL_LETTER_N\n"
"LngText.text"
msgid "^n"
-msgstr ""
+msgstr "^n"
#. ᵒ (U+01D52), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9951,7 +9932,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_O\n"
"LngText.text"
msgid "^o"
-msgstr ""
+msgstr "^o"
#. ᵖ (U+01D56), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9960,7 +9941,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_P\n"
"LngText.text"
msgid "^p"
-msgstr ""
+msgstr "^p"
#. ʳ (U+002B3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9969,7 +9950,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_R\n"
"LngText.text"
msgid "^r"
-msgstr ""
+msgstr "^r"
#. ˢ (U+002E2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9978,7 +9959,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_S\n"
"LngText.text"
msgid "^s"
-msgstr ""
+msgstr "^s"
#. ᵗ (U+01D57), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9987,7 +9968,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_T\n"
"LngText.text"
msgid "^t"
-msgstr ""
+msgstr "^t"
#. ᵘ (U+01D58), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -9996,7 +9977,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_U\n"
"LngText.text"
msgid "^u"
-msgstr ""
+msgstr "^u"
#. ᵛ (U+01D5B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10005,7 +9986,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_V\n"
"LngText.text"
msgid "^v"
-msgstr ""
+msgstr "^v"
#. ʷ (U+002B7), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10014,7 +9995,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_W\n"
"LngText.text"
msgid "^w"
-msgstr ""
+msgstr "^w"
#. ˣ (U+002E3), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10023,7 +10004,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_X\n"
"LngText.text"
msgid "^x"
-msgstr ""
+msgstr "^x"
#. ʸ (U+002B8), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10032,7 +10013,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_Y\n"
"LngText.text"
msgid "^y"
-msgstr ""
+msgstr "^y"
#. ᶻ (U+01DBB), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10041,7 +10022,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_Z\n"
"LngText.text"
msgid "^z"
-msgstr ""
+msgstr "^z"
#. ᴬ (U+01D2C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10050,7 +10031,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_A\n"
"LngText.text"
msgid "^A"
-msgstr ""
+msgstr "^A"
#. ᴮ (U+01D2E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10059,7 +10040,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_B\n"
"LngText.text"
msgid "^B"
-msgstr ""
+msgstr "^B"
#. ᴰ (U+01D30), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10068,7 +10049,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_D\n"
"LngText.text"
msgid "^C"
-msgstr ""
+msgstr "^C"
#. ᴱ (U+01D31), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10077,7 +10058,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_E\n"
"LngText.text"
msgid "^E"
-msgstr ""
+msgstr "^E"
#. ᴳ (U+01D33), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10086,7 +10067,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_G\n"
"LngText.text"
msgid "^G"
-msgstr ""
+msgstr "^G"
#. ᴴ (U+01D34), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10095,7 +10076,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_H\n"
"LngText.text"
msgid "^H"
-msgstr ""
+msgstr "^H"
#. ᴵ (U+01D35), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10104,7 +10085,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_I\n"
"LngText.text"
msgid "^I"
-msgstr ""
+msgstr "^I"
#. ᴶ (U+01D36), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10113,7 +10094,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_J\n"
"LngText.text"
msgid "^J"
-msgstr ""
+msgstr "^J"
#. ᴷ (U+01D37), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10122,7 +10103,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_K\n"
"LngText.text"
msgid "^K"
-msgstr ""
+msgstr "^K"
#. ᴸ (U+01D38), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10131,7 +10112,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_L\n"
"LngText.text"
msgid "^L"
-msgstr ""
+msgstr "^L"
#. ᴹ (U+01D39), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10140,7 +10121,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_M\n"
"LngText.text"
msgid "^M"
-msgstr ""
+msgstr "^M"
#. ᴺ (U+01D3A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10149,7 +10130,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_N\n"
"LngText.text"
msgid "^N"
-msgstr ""
+msgstr "^N"
#. ᴼ (U+01D3C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10158,7 +10139,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_O\n"
"LngText.text"
msgid "^O"
-msgstr ""
+msgstr "^O"
#. ᴾ (U+01D3E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10167,7 +10148,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_P\n"
"LngText.text"
msgid "^P"
-msgstr ""
+msgstr "^P"
#. ᴿ (U+01D3F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10176,7 +10157,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_R\n"
"LngText.text"
msgid "^R"
-msgstr ""
+msgstr "^R"
#. ᵀ (U+01D40), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10185,7 +10166,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_T\n"
"LngText.text"
msgid "^T"
-msgstr ""
+msgstr "^T"
#. ᵁ (U+01D41), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10194,7 +10175,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_U\n"
"LngText.text"
msgid "^U"
-msgstr ""
+msgstr "^U"
#. ⱽ (U+02C7D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10203,7 +10184,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_V\n"
"LngText.text"
msgid "^V"
-msgstr ""
+msgstr "^V"
#. ᵂ (U+01D42), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10212,7 +10193,7 @@ msgctxt ""
"MODIFIER_LETTER_CAPITAL_W\n"
"LngText.text"
msgid "^W"
-msgstr ""
+msgstr "^W"
#. ₐ (U+02090), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10221,7 +10202,7 @@ msgctxt ""
"LATIN_SUBSCRIPT_SMALL_LETTER_A\n"
"LngText.text"
msgid "_a"
-msgstr ""
+msgstr "_a"
#. ₑ (U+02091), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10230,7 +10211,7 @@ msgctxt ""
"LATIN_SUBSCRIPT_SMALL_LETTER_E\n"
"LngText.text"
msgid "_e"
-msgstr ""
+msgstr "_e"
#. ₕ (U+02095), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10239,7 +10220,7 @@ msgctxt ""
"LATIN_SUBSCRIPT_SMALL_LETTER_H\n"
"LngText.text"
msgid "_h"
-msgstr ""
+msgstr "_h"
#. ᵢ (U+01D62), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10248,7 +10229,7 @@ msgctxt ""
"LATIN_SUBSCRIPT_SMALL_LETTER_I\n"
"LngText.text"
msgid "_i"
-msgstr ""
+msgstr "_i"
#. ⱼ (U+02C7C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10257,7 +10238,7 @@ msgctxt ""
"LATIN_SUBSCRIPT_SMALL_LETTER_J\n"
"LngText.text"
msgid "_j"
-msgstr ""
+msgstr "_j"
#. ₖ (U+02096), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10266,7 +10247,7 @@ msgctxt ""
"LATIN_SUBSCRIPT_SMALL_LETTER_K\n"
"LngText.text"
msgid "_k"
-msgstr ""
+msgstr "_k"
#. ₗ (U+02097), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10275,7 +10256,7 @@ msgctxt ""
"LATIN_SUBSCRIPT_SMALL_LETTER_L\n"
"LngText.text"
msgid "_l"
-msgstr ""
+msgstr "_l"
#. ₘ (U+02098), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10284,7 +10265,7 @@ msgctxt ""
"LATIN_SUBSCRIPT_SMALL_LETTER_M\n"
"LngText.text"
msgid "_m"
-msgstr ""
+msgstr "_m"
#. ₙ (U+02099), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10293,7 +10274,7 @@ msgctxt ""
"LATIN_SUBSCRIPT_SMALL_LETTER_N\n"
"LngText.text"
msgid "_n"
-msgstr ""
+msgstr "_n"
#. ₒ (U+02092), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10302,7 +10283,7 @@ msgctxt ""
"LATIN_SUBSCRIPT_SMALL_LETTER_O\n"
"LngText.text"
msgid "_o"
-msgstr ""
+msgstr "_o"
#. ₚ (U+0209A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10311,7 +10292,7 @@ msgctxt ""
"LATIN_SUBSCRIPT_SMALL_LETTER_P\n"
"LngText.text"
msgid "_p"
-msgstr ""
+msgstr "_p"
#. ᵣ (U+01D63), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10320,7 +10301,7 @@ msgctxt ""
"LATIN_SUBSCRIPT_SMALL_LETTER_R\n"
"LngText.text"
msgid "_r"
-msgstr ""
+msgstr "_r"
#. ₛ (U+0209B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10329,7 +10310,7 @@ msgctxt ""
"LATIN_SUBSCRIPT_SMALL_LETTER_S\n"
"LngText.text"
msgid "_s"
-msgstr ""
+msgstr "_s"
#. ₜ (U+0209C), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10338,7 +10319,7 @@ msgctxt ""
"LATIN_SUBSCRIPT_SMALL_LETTER_T\n"
"LngText.text"
msgid "_t"
-msgstr ""
+msgstr "_t"
#. ᵤ (U+01D64), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10347,7 +10328,7 @@ msgctxt ""
"LATIN_SUBSCRIPT_SMALL_LETTER_U\n"
"LngText.text"
msgid "_u"
-msgstr ""
+msgstr "_u"
#. ᵥ (U+01D65), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10356,7 +10337,7 @@ msgctxt ""
"LATIN_SUBSCRIPT_SMALL_LETTER_V\n"
"LngText.text"
msgid "_v"
-msgstr ""
+msgstr "_v"
#. ₓ (U+02093), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10365,7 +10346,7 @@ msgctxt ""
"LATIN_SUBSCRIPT_SMALL_LETTER_X\n"
"LngText.text"
msgid "_x"
-msgstr ""
+msgstr "_x"
#. ᵅ (U+01D45), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10374,7 +10355,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_ALPHA\n"
"LngText.text"
msgid "^alpha"
-msgstr ""
+msgstr "^alpha"
#. ᵝ (U+01D5D), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10383,7 +10364,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_BETA\n"
"LngText.text"
msgid "^beta"
-msgstr ""
+msgstr "^beta"
#. ᵞ (U+01D5E), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10392,7 +10373,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_GREEK_GAMMA\n"
"LngText.text"
msgid "^gamma"
-msgstr ""
+msgstr "^gamma"
#. ᵟ (U+01D5F), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10401,7 +10382,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_DELTA\n"
"LngText.text"
msgid "^delta"
-msgstr ""
+msgstr "^delta"
#. ᵋ (U+01D4B), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10410,7 +10391,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_OPEN_E\n"
"LngText.text"
msgid "^epsilon"
-msgstr ""
+msgstr "^epsilon"
#. ᶿ (U+01DBF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10419,7 +10400,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_THETA\n"
"LngText.text"
msgid "^theta"
-msgstr ""
+msgstr "^theta"
#. ᶥ (U+01DA5), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10428,7 +10409,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_IOTA\n"
"LngText.text"
msgid "^iota"
-msgstr ""
+msgstr "^iota"
#. ᶲ (U+01DB2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10437,7 +10418,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_PHI\n"
"LngText.text"
msgid "^Phi"
-msgstr ""
+msgstr "^Phi"
#. ᵠ (U+01D60), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10446,7 +10427,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_GREEK_PHI\n"
"LngText.text"
msgid "^phi"
-msgstr ""
+msgstr "^phi"
#. ᵡ (U+01D61), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10455,7 +10436,7 @@ msgctxt ""
"MODIFIER_LETTER_SMALL_CHI\n"
"LngText.text"
msgid "^chi"
-msgstr ""
+msgstr "^chi"
#. ᵦ (U+01D66), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10464,7 +10445,7 @@ msgctxt ""
"GREEK_SUBSCRIPT_SMALL_LETTER_BETA\n"
"LngText.text"
msgid "_beta"
-msgstr ""
+msgstr "_beta"
#. ᵧ (U+01D67), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10473,7 +10454,7 @@ msgctxt ""
"GREEK_SUBSCRIPT_SMALL_LETTER_GAMMA\n"
"LngText.text"
msgid "_gamma"
-msgstr ""
+msgstr "_gamma"
#. ᵨ (U+01D68), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10482,7 +10463,7 @@ msgctxt ""
"GREEK_SUBSCRIPT_SMALL_LETTER_RHO\n"
"LngText.text"
msgid "_rho"
-msgstr ""
+msgstr "_rho"
#. ᵩ (U+01D69), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10491,7 +10472,7 @@ msgctxt ""
"GREEK_SUBSCRIPT_SMALL_LETTER_PHI\n"
"LngText.text"
msgid "_phi"
-msgstr ""
+msgstr "_phi"
#. ᵪ (U+01D6A), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10500,4 +10481,4 @@ msgctxt ""
"GREEK_SUBSCRIPT_SMALL_LETTER_CHI\n"
"LngText.text"
msgid "_chi"
-msgstr ""
+msgstr "_chi"
diff --git a/source/nb/filter/source/config/fragments/filters.po b/source/nb/filter/source/config/fragments/filters.po
index 89f662eee54..4ff728f3925 100644
--- a/source/nb/filter/source/config/fragments/filters.po
+++ b/source/nb/filter/source/config/fragments/filters.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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 18:24+0000\n"
+"PO-Revision-Date: 2016-03-08 21:54+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449858266.000000\n"
+"X-POOTLE-MTIME: 1457474043.000000\n"
#: AbiWord.xcu
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Apple Numbers 2"
-msgstr ""
+msgstr "Apple Numbers 2"
#: ApplePages.xcu
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Apple Pages 4"
-msgstr ""
+msgstr "Apple Pages 4"
#: BMP___MS_Windows.xcu
msgctxt ""
@@ -347,40 +347,36 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 97-2003"
-msgstr ""
+msgstr "Microsoft Excel 97-2003"
#: 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-mal"
+msgstr "Microsoft Excel 97-2003-mal"
#: MS_PowerPoint_97.xcu
-#, fuzzy
msgctxt ""
"MS_PowerPoint_97.xcu\n"
"MS PowerPoint 97\n"
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 97-2003"
-msgstr "Microsoft PowerPoint 97/2000/XP/2003"
+msgstr "Microsoft PowerPoint 97-2003"
#: MS_PowerPoint_97_AutoPlay.xcu
-#, fuzzy
msgctxt ""
"MS_PowerPoint_97_AutoPlay.xcu\n"
"MS PowerPoint 97 AutoPlay\n"
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 97-2003 AutoPlay"
-msgstr "Microsoft PowerPoint 97/2000/XP/2003 automatisk avspilling"
+msgstr "Microsoft PowerPoint 97-2003 automatisk avspilling"
#: MS_PowerPoint_97_Vorlage.xcu
-#, fuzzy
msgctxt ""
"MS_PowerPoint_97_Vorlage.xcu\n"
"MS PowerPoint 97 Vorlage\n"
@@ -417,24 +413,22 @@ msgid "Microsoft Word 2003 XML"
msgstr "Microsoft Word 2003 XML"
#: MS_Word_2007_XML.xcu
-#, fuzzy
msgctxt ""
"MS_Word_2007_XML.xcu\n"
"MS Word 2007 XML\n"
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML"
-msgstr "Microsoft Word 2003 XML"
+msgstr "Microsoft Word 2007-2013 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 2007/2010/2013 XML-mal"
+msgstr "Microsoft Word 2007-2013 XML-mal"
#: MS_Word_95.xcu
msgctxt ""
@@ -461,17 +455,16 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 97-2003"
-msgstr ""
+msgstr "Microsoft Word 97-2003"
#: 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-mal"
+msgstr "Microsoft Word 97-2003-mal"
#: MS_Works.xcu
msgctxt ""
@@ -498,7 +491,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Write"
-msgstr ""
+msgstr "Microsoft Write"
#: MWAW_Bitmap.xcu
msgctxt ""
@@ -507,7 +500,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy Mac Bitmap"
-msgstr ""
+msgstr "Eldre Mac punktbilde"
#: MWAW_Database.xcu
msgctxt ""
@@ -516,7 +509,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy Mac Database"
-msgstr ""
+msgstr "Eldre Mac database"
#: MWAW_Drawing.xcu
msgctxt ""
@@ -525,7 +518,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy Mac Drawing"
-msgstr ""
+msgstr "Eldre Mac tegning"
#: MWAW_Presentation.xcu
msgctxt ""
@@ -534,7 +527,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy Mac Presentation"
-msgstr ""
+msgstr "Eldre Mac Presentasjon"
#: MWAW_Spreadsheet.xcu
msgctxt ""
@@ -543,7 +536,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy Mac Spreadsheet"
-msgstr ""
+msgstr "Eldre Mac Regneark"
#: MWAW_Text_Document.xcu
msgctxt ""
@@ -552,7 +545,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy Mac Text Document"
-msgstr ""
+msgstr "Eldre Mac Tekstdokument"
#: MacWrite.xcu
msgctxt ""
@@ -717,14 +710,13 @@ msgid "PalmDoc eBook"
msgstr "PalmDoc eBook"
#: Palm_Text_Document.xcu
-#, fuzzy
msgctxt ""
"Palm_Text_Document.xcu\n"
"Palm_Text_Document\n"
"UIName\n"
"value.text"
msgid "Palm Text Document"
-msgstr "ODF-tekstdokument"
+msgstr "ODF-Tekstdokument"
#: Plucker_eBook.xcu
msgctxt ""
@@ -1039,7 +1031,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Lotus Document"
-msgstr ""
+msgstr "Lotus Dokument"
#: WPS_QPro_Calc.xcu
msgctxt ""
@@ -1048,7 +1040,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "QuattroPro Document"
-msgstr ""
+msgstr "QuattroPro Dokument"
#: WordPerfect.xcu
msgctxt ""
@@ -1120,7 +1112,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Gnumeric Spreadsheet"
-msgstr ""
+msgstr "Gnumeric Regneark"
#: calc_HTML_WebQuery.xcu
msgctxt ""
@@ -1147,27 +1139,25 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr ""
+msgstr "Microsoft Excel 2007-2016 XML (makro slått på)"
#: calc_MS_Excel_2007_XML.xcu
-#, fuzzy
msgctxt ""
"calc_MS_Excel_2007_XML.xcu\n"
"Calc MS Excel 2007 XML\n"
"UIName\n"
"value.text"
msgid "Microsoft Excel 2007-2013 XML"
-msgstr "Microsoft Excel 2003 XML"
+msgstr "Microsoft Excel 2007-2013 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 2007/2010/2013 XML-mal"
+msgstr "Microsoft Excel 2007-2013 XML-mal"
#: calc_OOXML.xcu
msgctxt ""
@@ -1206,7 +1196,6 @@ msgid "PDF - Portable Document Format"
msgstr "PDF - Portable Document Format"
#: calc_png_Export.xcu
-#, fuzzy
msgctxt ""
"calc_png_Export.xcu\n"
"calc_png_Export\n"
@@ -1495,34 +1484,31 @@ msgid "ODF Presentation Template"
msgstr "ODF-presentasjonsmal"
#: impress_MS_PowerPoint_2007_XML.xcu
-#, fuzzy
msgctxt ""
"impress_MS_PowerPoint_2007_XML.xcu\n"
"Impress MS PowerPoint 2007 XML\n"
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 2007-2013 XML"
-msgstr "Microsoft PowerPoint 2007/2010/2013 XML"
+msgstr "Microsoft PowerPoint 2007-2013 XML"
#: impress_MS_PowerPoint_2007_XML_AutoPlay.xcu
-#, fuzzy
msgctxt ""
"impress_MS_PowerPoint_2007_XML_AutoPlay.xcu\n"
"Impress MS PowerPoint 2007 XML AutoPlay\n"
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 2007-2013 XML AutoPlay"
-msgstr "Microsoft PowerPoint 2007/2010/2013 XML-automatisk avspilling"
+msgstr "Microsoft PowerPoint 2007-2013 XML-automatisk avspilling"
#: impress_MS_PowerPoint_2007_XML_Template.xcu
-#, fuzzy
msgctxt ""
"impress_MS_PowerPoint_2007_XML_Template.xcu\n"
"Impress MS PowerPoint 2007 XML Template\n"
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 2007-2013 XML Template"
-msgstr "Microsoft PowerPoint 2007/2010/2013 XML-mal"
+msgstr "Microsoft PowerPoint 2007-2013 XML-mal"
#: impress_OOXML.xcu
msgctxt ""
@@ -1912,7 +1898,6 @@ msgid "OpenOffice.org 1.0 HTML Template"
msgstr "OpenOffice.org 1.0 HTML-mal"
#: writer_web_jpg_Export.xcu
-#, fuzzy
msgctxt ""
"writer_web_jpg_Export.xcu\n"
"writer_web_jpg_Export\n"
@@ -1931,7 +1916,6 @@ msgid "PDF - Portable Document Format"
msgstr "PDF - Portable Document Format"
#: writer_web_png_Export.xcu
-#, fuzzy
msgctxt ""
"writer_web_png_Export.xcu\n"
"writer_web_png_Export\n"
diff --git a/source/nb/filter/source/config/fragments/types.po b/source/nb/filter/source/config/fragments/types.po
index a949bc429d1..82c08570789 100644
--- a/source/nb/filter/source/config/fragments/types.po
+++ b/source/nb/filter/source/config/fragments/types.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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-13 03:17+0000\n"
+"PO-Revision-Date: 2016-03-08 21:54+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431487049.000000\n"
+"X-POOTLE-MTIME: 1457474078.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -26,64 +26,58 @@ msgid "Microsoft Excel 2007 Binary"
msgstr "Microsoft Excel 2007-binærfil"
#: MS_Excel_2007_VBA_XML.xcu
-#, fuzzy
msgctxt ""
"MS_Excel_2007_VBA_XML.xcu\n"
"MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
msgid "Microsoft Excel 2007-2016 VBA XML"
-msgstr "Microsoft Excel 2003 XML"
+msgstr "Microsoft Excel 2007-2016 VBA XML"
#: MS_Excel_2007_XML.xcu
-#, fuzzy
msgctxt ""
"MS_Excel_2007_XML.xcu\n"
"MS Excel 2007 XML\n"
"UIName\n"
"value.text"
msgid "Microsoft Excel 2007-2013 XML"
-msgstr "Microsoft Excel 2003 XML"
+msgstr "Microsoft Excel 2007-2013 XML"
#: MS_Excel_2007_XML_Template.xcu
-#, fuzzy
msgctxt ""
"MS_Excel_2007_XML_Template.xcu\n"
"MS Excel 2007 XML Template\n"
"UIName\n"
"value.text"
msgid "Microsoft Excel 2007-2013 XML Template"
-msgstr "Microsoft Excel 2007/2010/2013 XML-mal"
+msgstr "Microsoft Excel 2007-2013 XML-mal"
#: MS_PowerPoint_2007_XML.xcu
-#, fuzzy
msgctxt ""
"MS_PowerPoint_2007_XML.xcu\n"
"MS PowerPoint 2007 XML\n"
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 2007-2013 XML"
-msgstr "Microsoft PowerPoint 2007/2010/2013 XML"
+msgstr "Microsoft PowerPoint 2007-2013 XML"
#: MS_PowerPoint_2007_XML_AutoPlay.xcu
-#, fuzzy
msgctxt ""
"MS_PowerPoint_2007_XML_AutoPlay.xcu\n"
"MS PowerPoint 2007 XML AutoPlay\n"
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 2007-2013 XML"
-msgstr "Microsoft PowerPoint 2007/2010/2013 XML"
+msgstr "Microsoft PowerPoint 2007-2013 XML"
#: MS_PowerPoint_2007_XML_Template.xcu
-#, fuzzy
msgctxt ""
"MS_PowerPoint_2007_XML_Template.xcu\n"
"MS PowerPoint 2007 XML Template\n"
"UIName\n"
"value.text"
msgid "Microsoft PowerPoint 2007-2013 XML Template"
-msgstr "Microsoft PowerPoint 2007/2010/2013 XML-mal"
+msgstr "Microsoft PowerPoint 2007-2013 XML-mal"
#: StarBase.xcu
msgctxt ""
@@ -137,7 +131,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Gnumeric Spreadsheet"
-msgstr ""
+msgstr "Gnumeric-regneark"
#: calc_MS_Excel_2003_XML.xcu
msgctxt ""
@@ -284,24 +278,22 @@ msgid "Microsoft Word 2003 XML"
msgstr "Microsoft Word 2003 XML"
#: writer_MS_Word_2007_XML.xcu
-#, fuzzy
msgctxt ""
"writer_MS_Word_2007_XML.xcu\n"
"writer_MS_Word_2007\n"
"UIName\n"
"value.text"
msgid "Microsoft Word 2007-2013 XML"
-msgstr "Microsoft Word 2003 XML"
+msgstr "Microsoft Word 2007-2013 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 2007/2010/2013 XML-mal"
+msgstr "Microsoft Word 2007-2013 XML-mal"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/nb/filter/uiconfig/ui.po b/source/nb/filter/uiconfig/ui.po
index 012691a98dd..97cf230a2b8 100644
--- a/source/nb/filter/uiconfig/ui.po
+++ b/source/nb/filter/uiconfig/ui.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-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-02-18 23:24+0000\n"
-"Last-Translator: Olav <odahlum@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 21:56+0000\n"
+"Last-Translator: system user <>\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1424301857.000000\n"
+"X-POOTLE-MTIME: 1457474207.000000\n"
#: impswfdialog.ui
msgctxt ""
@@ -864,7 +864,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: pdfsignpage.ui
msgctxt ""
@@ -909,7 +909,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Time Stamp Authority:"
-msgstr ""
+msgstr "Time Stamp Authority:"
#: pdfsignpage.ui
msgctxt ""
diff --git a/source/nb/formula/source/core/resource.po b/source/nb/formula/source/core/resource.po
index 8ace4b7f1e5..3fdc76023a9 100644
--- a/source/nb/formula/source/core/resource.po
+++ b/source/nb/formula/source/core/resource.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2016-01-13 00:13+0100\n"
+"POT-Creation-Date: 2016-03-15 11:20+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -932,14 +932,13 @@ msgid "ERRORTYPE"
msgstr "FEILTYPE"
#: core_resource.src
-#, fuzzy
msgctxt ""
"core_resource.src\n"
"RID_STRLIST_FUNCTION_NAMES\n"
"SC_OPCODE_ERROR_TYPE_ODF\n"
"string.text"
msgid "ERROR.TYPE"
-msgstr "FEILTYPE"
+msgstr "FEIL.TYPE"
#: core_resource.src
msgctxt ""
@@ -1038,10 +1037,9 @@ msgctxt ""
"SC_OPCODE_FLOOR_MATH\n"
"string.text"
msgid "FLOOR.MATH"
-msgstr ""
+msgstr "AVRUND.GJELDENDE.MULTIPLUM.NED.MATTEMATIKK"
#: core_resource.src
-#, fuzzy
msgctxt ""
"core_resource.src\n"
"RID_STRLIST_FUNCTION_NAMES\n"
@@ -2515,7 +2513,7 @@ msgctxt ""
"SC_OPCODE_AGGREGATE\n"
"string.text"
msgid "AGGREGATE"
-msgstr ""
+msgstr "SAMMENDRAG"
#: core_resource.src
msgctxt ""
@@ -3037,7 +3035,7 @@ msgctxt ""
"SC_OPCODE_ISOWEEKNUM\n"
"string.text"
msgid "ISOWEEKNUM"
-msgstr ""
+msgstr "ISOVEKENR"
#: core_resource.src
msgctxt ""
@@ -3046,7 +3044,7 @@ msgctxt ""
"SC_OPCODE_WEEKNUM_OOO\n"
"string.text"
msgid "WEEKNUM_OOO"
-msgstr ""
+msgstr "UKENR_OOO"
#: core_resource.src
msgctxt ""
diff --git a/source/nb/formula/uiconfig/ui.po b/source/nb/formula/uiconfig/ui.po
index dfbacb30132..c51fa656d09 100644
--- a/source/nb/formula/uiconfig/ui.po
+++ b/source/nb/formula/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: 2015-04-22 23:40+0200\n"
-"PO-Revision-Date: 2015-08-22 07:21+0000\n"
-"Last-Translator: Klaus Ade Johnstad <klausade@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 22:00+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440228117.000000\n"
+"X-POOTLE-MTIME: 1457474456.000000\n"
#: formuladialog.ui
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Maximize"
-msgstr ""
+msgstr "Maksimer"
#: functionpage.ui
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Function not known"
-msgstr ""
+msgstr "Ukjent funksjon"
#: parameter.ui
msgctxt ""
@@ -185,4 +185,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Structure"
-msgstr ""
+msgstr "_Struktur"
diff --git a/source/nb/fpicker/source/office.po b/source/nb/fpicker/source/office.po
index 184f1f20b2b..c4313151cca 100644
--- a/source/nb/fpicker/source/office.po
+++ b/source/nb/fpicker/source/office.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: 2015-05-13 03:18+0000\n"
+"PO-Revision-Date: 2016-03-08 22:01+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431487111.000000\n"
+"X-POOTLE-MTIME: 1457474476.000000\n"
#: OfficeFilePicker.src
msgctxt ""
@@ -251,6 +251,8 @@ msgid ""
"Are you sure you want to delete the service?\n"
"\"$servicename$\""
msgstr ""
+"Er du sikker på at du vil fjerne tjenesten\n"
+"\"$servicename$\""
#: iodlg.src
msgctxt ""
@@ -258,7 +260,7 @@ msgctxt ""
"STR_SVT_ROOTLABEL\n"
"string.text"
msgid "Root"
-msgstr ""
+msgstr "Rot"
#: iodlg.src
msgctxt ""
diff --git a/source/nb/fpicker/uiconfig/ui.po b/source/nb/fpicker/uiconfig/ui.po
index 1596b63696c..8a3f7286b5a 100644
--- a/source/nb/fpicker/uiconfig/ui.po
+++ b/source/nb/fpicker/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: 2015-08-25 12:34+0200\n"
-"PO-Revision-Date: 2015-04-25 00:46+0000\n"
+"PO-Revision-Date: 2016-03-08 22:01+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429922804.000000\n"
+"X-POOTLE-MTIME: 1457474492.000000\n"
#: explorerfiledialog.ui
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Remote Files"
-msgstr ""
+msgstr "Eksterne filer"
#: remotefilesdialog.ui
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Service:"
-msgstr ""
+msgstr "Tjeneste"
#: remotefilesdialog.ui
msgctxt ""
@@ -167,10 +167,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add service"
-msgstr ""
+msgstr "Legg til tjeneste"
#: remotefilesdialog.ui
-#, fuzzy
msgctxt ""
"remotefilesdialog.ui\n"
"new_folder\n"
@@ -180,7 +179,6 @@ msgid "Create New Folder"
msgstr "Lag ny mappe"
#: remotefilesdialog.ui
-#, fuzzy
msgctxt ""
"remotefilesdialog.ui\n"
"new_folder\n"
@@ -196,17 +194,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "Filter"
-msgstr ""
+msgstr "Filter"
#: remotefilesdialog.ui
-#, fuzzy
msgctxt ""
"remotefilesdialog.ui\n"
"nameLabel\n"
"label\n"
"string.text"
msgid "File name"
-msgstr "Fil_navn:"
+msgstr "Filnavn:"
#: remotefilesdialog.ui
msgctxt ""
@@ -215,7 +212,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Edit service"
-msgstr ""
+msgstr "_Rediger tjeneste"
#: remotefilesdialog.ui
msgctxt ""
@@ -224,7 +221,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Delete service"
-msgstr ""
+msgstr "_Slett tjeneste"
#: remotefilesdialog.ui
msgctxt ""
@@ -233,4 +230,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Change password"
-msgstr ""
+msgstr "Endre _passord"
diff --git a/source/nb/framework/source/classes.po b/source/nb/framework/source/classes.po
index fd8a44baafd..62eaaff95f9 100644
--- a/source/nb/framework/source/classes.po
+++ b/source/nb/framework/source/classes.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-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-02-02 00:56+0000\n"
+"PO-Revision-Date: 2016-03-08 22:01+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1422838595.000000\n"
+"X-POOTLE-MTIME: 1457474515.000000\n"
#: resource.src
msgctxt ""
@@ -148,7 +148,7 @@ msgctxt ""
"STR_OPEN_REMOTE\n"
"string.text"
msgid "Open remote file"
-msgstr ""
+msgstr "Åpne ekstern fil"
#: resource.src
msgctxt ""
@@ -156,7 +156,7 @@ msgctxt ""
"STR_REMOTE_TITLE\n"
"string.text"
msgid " (Remote)"
-msgstr ""
+msgstr " (Ekstern)"
#: resource.src
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/scalc/01.po b/source/nb/helpcontent2/source/text/scalc/01.po
index 090ac4cf48c..ccda5afedb4 100644
--- a/source/nb/helpcontent2/source/text/scalc/01.po
+++ b/source/nb/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 20:13+0000\n"
+"PO-Revision-Date: 2016-03-04 00:45+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431375209.000000\n"
+"X-POOTLE-MTIME: 1457052306.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -59919,13 +59919,14 @@ msgid "equal"
msgstr "lik"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -59937,13 +59938,14 @@ msgid "less than"
msgstr "mindre enn"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/sdraw.po b/source/nb/helpcontent2/source/text/sdraw.po
index b40a4cf07f3..8973dac53fc 100644
--- a/source/nb/helpcontent2/source/text/sdraw.po
+++ b/source/nb/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2013-05-24 10:26+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2016-03-04 01:37+0000\n"
+"Last-Translator: Olav Dahlum <olav.dahlum@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1369391163.000000\n"
+"X-POOTLE-MTIME: 1457055438.000000\n"
#: main0000.xhp
msgctxt ""
@@ -318,7 +318,6 @@ msgid "View"
msgstr "Vis"
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id3152576\n"
@@ -368,7 +367,6 @@ msgid "Switch to the master page view."
msgstr "Bytt til bakgrunnsvisning."
#: main0103.xhp
-#, fuzzy
msgctxt ""
"main0103.xhp\n"
"hd_id3149666\n"
diff --git a/source/nb/helpcontent2/source/text/shared/00.po b/source/nb/helpcontent2/source/text/shared/00.po
index 93ff21e50ec..9a708b04398 100644
--- a/source/nb/helpcontent2/source/text/shared/00.po
+++ b/source/nb/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-09-01 18:03+0000\n"
-"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
+"PO-Revision-Date: 2016-03-04 01:09+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1441130587.000000\n"
+"X-POOTLE-MTIME: 1457053774.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3972,12 +3972,13 @@ msgid "ODF 1.2 (Extended)"
msgstr "ODF 1.2 (utvidet)"
#: 00000021.xhp
+#, fuzzy
msgctxt ""
"00000021.xhp\n"
"par_id100120091238112\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 00000021.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/shared/01.po b/source/nb/helpcontent2/source/text/shared/01.po
index 94d1ef9e488..42e8e1dcb68 100644
--- a/source/nb/helpcontent2/source/text/shared/01.po
+++ b/source/nb/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-12 13:14+0000\n"
+"PO-Revision-Date: 2016-03-04 01:37+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452604440.000000\n"
+"X-POOTLE-MTIME: 1457055437.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7488,13 +7488,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr "Representerer et hvilket som helst enkelttegn med mindre annet er angitt."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7506,13 +7507,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr "Representerer et hvilket som helst enkelttegn utenom linje- eller avsnittskift. For eksempel vil søkeuttrykket «K.rt» gi treff på både «Kart» og «Kort»."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7524,13 +7526,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr "Søkeuttrykket blir bare funnet hvis det er i starten av et avsnitt. Spesielle objekter i starten av avsnittet, som tomme felter eller tegnforankrede rammer, blir ikke tatt med. Eksempel: «^Peter»."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7550,13 +7553,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7595,13 +7599,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr "Den lengste mulige strengen i et avsnitt som passer dette søket, vil alltid bli funnet. Hvis avsnittet inneholder strengen «AX 4 AX4», vil hele avsnittet bli markert."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7613,13 +7618,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr "Gir treff på forekomster med null eller ett av tegnene foran «?». For eksempel vil «Tester?» gi treff på «Teste» og «Tester», og «x(ab|c)?y» vil gi treff på «xy», «xaby» eller «xcy»."
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -15822,13 +15828,14 @@ msgid "Explanation"
msgstr "Forklaring"
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/shared/02.po b/source/nb/helpcontent2/source/text/shared/02.po
index cbecbb4a72a..e1f05de5564 100644
--- a/source/nb/helpcontent2/source/text/shared/02.po
+++ b/source/nb/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-11 20:15+0000\n"
+"PO-Revision-Date: 2016-03-04 01:49+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431375351.000000\n"
+"X-POOTLE-MTIME: 1457056185.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -13864,13 +13864,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Flytt alle databasefeltene i lista inn i listeboksen for <emph>tabellkolonner</emph>.</ahelp> Alle felter som er listet opp i listeboksen blir satt inn i dokumentet."
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13882,13 +13883,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Flytt de valgte databasefeltene inn i listeboksen for <emph>tabellkolonner</emph>.</ahelp> Du kan også dobbeltklikke på en oppføring for å flytte den over i listeboksen. Alle felter som er listet opp i listeboksen for <emph>tabellkolonner</emph> blir satt inn i dokumentet."
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -14177,13 +14179,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr "Lister opp alle kolonnene i databasetabellen som kan settes inn i dokumentet. <ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tabletxtcols\" visibility=\"visible\">Velg hvilke databasekolonner du vil sette inn i dokumentet.</ahelp>"
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15682,13 +15685,14 @@ msgid "Example"
msgstr "Eksempel"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15718,13 +15722,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr "«J?nsen» returnerer for eksempel Jensen og Jansen"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15808,31 +15813,34 @@ msgid "Search with regular expressions"
msgstr "Søk med regulære uttrykk"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/shared/autopi.po b/source/nb/helpcontent2/source/text/shared/autopi.po
index d1d296cb95f..3a0306359ec 100644
--- a/source/nb/helpcontent2/source/text/shared/autopi.po
+++ b/source/nb/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-05-11 20:16+0000\n"
+"PO-Revision-Date: 2016-03-04 01:58+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431375399.000000\n"
+"X-POOTLE-MTIME: 1457056715.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3422,13 +3422,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Viser en liste over navnene til databasefeltene i den valgte tabellen eller spørringa.</ahelp> Trykk for å velge et felt eller hold nede «Shift» eller «<switchinline select=\"sys\"><caseinline select=\"MAC\">Kommando </caseinline><defaultinline>Ctrl</defaultinline></switchinline>»-tasten mens du trykker for å velge mer enn ett felt."
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3459,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Trykk for å flytte alle feltene til boksen pila peker på.</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3496,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Trykk for å flytte alle feltene til boksen pila peker på.</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4524,13 +4527,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Viser alle feltene som skal inkluderes i den nye rapporten.</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4560,13 +4564,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Trykk for å flytte alle feltene til boksen pila peker på.</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4720,13 +4725,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Viser en liste over feltene som rapporten vil grupperes etter. Hvis du vil fjerne et grupperingsnivå, merker du feltets navn og trykker på <emph><</emph>-knappen. Du kan velge opp til fire grupperingsnivåer.</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4738,13 +4744,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Trykk for å flytte det valgte feltet til boksen pila peker på.</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/shared/explorer/database.po b/source/nb/helpcontent2/source/text/shared/explorer/database.po
index 1ae44acc7a6..dba78452c63 100644
--- a/source/nb/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/nb/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-05-11 20:17+0000\n"
+"PO-Revision-Date: 2016-03-04 02:06+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431375431.000000\n"
+"X-POOTLE-MTIME: 1457057165.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1760,13 +1760,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr "… innholdet i feltet ikke er identisk med uttrykket som er oppgitt."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1787,13 +1788,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr "… innholdet i feltet er større enn uttrykket som er oppgitt."
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2793,13 +2795,14 @@ msgid "No"
msgstr "Nei"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6230,13 +6233,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lister opp de tilgjengelige indeksene som du kan bruke på en tabell.</ahelp> Trykk på pila mot venstre for å for å bruke en indeks på den valgte tabellen. Den doble pila mot venstre tar i bruk alle tilgjengelige indekser."
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6266,13 +6270,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Flytt alle ledige indekser til lista over <emph>Tabellindekser</emph>.</ahelp>"
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12420,12 +12425,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr "<ahelp hid=\".\">Legger til en ny rad med kontrollelementer.</ahelp>"
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14444,12 +14450,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr "<ahelp hid=\".\">Velg et felt for å redigere feltinformasjonen.</ahelp>"
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/swriter/01.po b/source/nb/helpcontent2/source/text/swriter/01.po
index ca7bde58793..3fea5b08568 100644
--- a/source/nb/helpcontent2/source/text/swriter/01.po
+++ b/source/nb/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 20:19+0000\n"
+"PO-Revision-Date: 2016-03-04 03:04+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431375573.000000\n"
+"X-POOTLE-MTIME: 1457060682.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -11033,13 +11033,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr ""
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -27772,12 +27773,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">Merk et felt og dra feltet over til lista til høyre.</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27788,12 +27790,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">Legger feltet som er merket i adresseelementlista, til i lista til høyre. Du kan legge til det samme feltet mer enn en gang.</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27980,12 +27983,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">Merk et felt og dra feltet over til lista til høyre.</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27996,12 +28000,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elem
msgstr "<ahelp hid=\".\">Legger feltet som er merket i lista med hilsningselementer, til i lista til høyre. Du kan legge til det samme feltet mer enn en gang.</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28436,12 +28441,13 @@ msgid "<ahelp hid=\".\">Select an address field and drag the field to the other
msgstr "<ahelp hid=\".\">Merk et adressefelt og dra feltet over til lista til høyre.</ahelp>"
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28452,12 +28458,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">Legger feltet som er merket i adresseelementlista, til i lista til høyre.</ahelp> Du kan legge til det samme feltet mer enn en gang."
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/swriter/02.po b/source/nb/helpcontent2/source/text/swriter/02.po
index e08c430780a..492198be7ae 100644
--- a/source/nb/helpcontent2/source/text/swriter/02.po
+++ b/source/nb/helpcontent2/source/text/swriter/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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 16:37+0000\n"
+"PO-Revision-Date: 2016-03-04 03:07+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429807037.000000\n"
+"X-POOTLE-MTIME: 1457060852.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1673,13 +1673,14 @@ msgid "Subtraction"
msgstr "Subtraksjon"
#: 14020000.xhp
+#, fuzzy
msgctxt ""
"14020000.xhp\n"
"par_id3150087\n"
"12\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 14020000.xhp
msgctxt ""
diff --git a/source/nb/officecfg/registry/data/org/openoffice/Office.po b/source/nb/officecfg/registry/data/org/openoffice/Office.po
index bd17301a8ce..ea895008bb9 100644
--- a/source/nb/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/nb/officecfg/registry/data/org/openoffice/Office.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-08-06 23:09+0000\n"
+"PO-Revision-Date: 2016-03-08 22:17+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438902562.000000\n"
+"X-POOTLE-MTIME: 1457475449.000000\n"
#: Addons.xcu
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "FORWARD 10"
-msgstr ""
+msgstr "FRAM 10"
#: Addons.xcu
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "BACK 10"
-msgstr ""
+msgstr "TILBAKE 10"
#: Addons.xcu
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "LEFT 15°"
-msgstr ""
+msgstr "VENSTRE 15°"
#: Addons.xcu
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "RIGHT 15°"
-msgstr ""
+msgstr "HØYRE 15°"
#: Addons.xcu
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "STOP"
-msgstr ""
+msgstr "STOPP"
#: Addons.xcu
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "HOME"
-msgstr ""
+msgstr "HJEM"
#: Addons.xcu
msgctxt ""
@@ -86,10 +86,9 @@ msgctxt ""
"Title\n"
"value.text"
msgid "CLEARSCREEN"
-msgstr ""
+msgstr "TØM SKJERMEN"
#: Addons.xcu
-#, fuzzy
msgctxt ""
"Addons.xcu\n"
".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m10\n"
@@ -99,7 +98,6 @@ msgid "Logo command line (press Enter for command execution or F1 for help)"
msgstr "Logo-kommandolinje (trykk på Enter for å kjøre kommando eller F1 for hjelp)"
#: Addons.xcu
-#, fuzzy
msgctxt ""
"Addons.xcu\n"
".Addons.AddonUI.OfficeToolBar.LibreLogo.OfficeToolBar.m09\n"
@@ -1519,10 +1517,9 @@ msgctxt ""
"Text\n"
"value.text"
msgid "Restart"
-msgstr ""
+msgstr "Omstart"
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.m.Normal\n"
@@ -1532,7 +1529,6 @@ msgid "Exchange"
msgstr "Bytt"
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.ToolBars.ToolBar.Entries.o.Normal\n"
@@ -1866,7 +1862,6 @@ msgid "Shows the Slides Overview"
msgstr "Vis lysbildeoversikten"
#: PresenterScreen.xcu
-#, fuzzy
msgctxt ""
"PresenterScreen.xcu\n"
"..PresenterScreen.PresenterScreenSettings.HelpView.HelpStrings.x\n"
@@ -1882,7 +1877,7 @@ msgctxt ""
"Right\n"
"value.text"
msgid "Switches monitors"
-msgstr ""
+msgstr "Bytter skjermer"
#: PresenterScreen.xcu
msgctxt ""
diff --git a/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po
index bfc96b14640..4063825b058 100644
--- a/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/nb/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-01-08 13:42+0100\n"
-"PO-Revision-Date: 2015-08-22 06:53+0000\n"
-"Last-Translator: Klaus Ade Johnstad <klausade@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 22:38+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440226380.000000\n"
+"X-POOTLE-MTIME: 1457476702.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to Line..."
-msgstr ""
+msgstr "Gå til linje …"
#: BasicIDECommands.xcu
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Freeze ~Rows and Columns"
-msgstr ""
+msgstr "Frys ~rader og kolonner"
#: CalcCommands.xcu
msgctxt ""
@@ -545,7 +545,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Go to Sheet..."
-msgstr ""
+msgstr "~Gå til ark …"
#: CalcCommands.xcu
msgctxt ""
@@ -800,7 +800,6 @@ msgid "Select to Lower Block Margin"
msgstr "Merk til nedre blokkmarg"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:DataDataPilotRun\n"
@@ -816,7 +815,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Pi~vot Table..."
-msgstr ""
+msgstr "Pivottabell..."
#: CalcCommands.xcu
msgctxt ""
@@ -900,7 +899,6 @@ msgid "Ch~art..."
msgstr "~Diagram …"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:InsertObjectChartFromFile\n"
@@ -1270,14 +1268,13 @@ msgid "Repeat Search"
msgstr "Gjenta søk"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:Remove\n"
"Label\n"
"value.text"
msgid "~Delete Sheet..."
-msgstr "~Velg ark …"
+msgstr "~Slett ark …"
#: CalcCommands.xcu
msgctxt ""
@@ -1502,7 +1499,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Regression..."
-msgstr ""
+msgstr "~Regresjon …"
#: CalcCommands.xcu
msgctxt ""
@@ -1541,7 +1538,6 @@ msgid "~Chi-square Test..."
msgstr "~Kjikvadrat-test …"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:EditHeaderAndFooter\n"
@@ -1731,14 +1727,13 @@ msgid "~Normal"
msgstr "~Normal"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:PagebreakMode\n"
"Label\n"
"value.text"
msgid "~Page Break"
-msgstr "Side~skift"
+msgstr "~Sideskift"
#: CalcCommands.xcu
msgctxt ""
@@ -1837,7 +1832,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cle~ar Cells..."
-msgstr ""
+msgstr "~Tøm cellene …"
#: CalcCommands.xcu
msgctxt ""
@@ -1975,7 +1970,6 @@ msgid "Insert ~Cells..."
msgstr "Sett inn ~celler …"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:InsertRowsMenu\n"
@@ -1985,14 +1979,13 @@ msgid "Insert ~Rows"
msgstr "Sett inn ~rader"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:InsertColumnsMenu\n"
"Label\n"
"value.text"
msgid "Insert Co~lumns"
-msgstr "Sett inn ~kolonner"
+msgstr "Sett inn kolonner"
#: CalcCommands.xcu
msgctxt ""
@@ -2001,7 +1994,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~Rows Above"
-msgstr ""
+msgstr "Set inn rader over"
#: CalcCommands.xcu
msgctxt ""
@@ -2010,7 +2003,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Rows ~Above"
-msgstr ""
+msgstr "Rader ~over"
#: CalcCommands.xcu
msgctxt ""
@@ -2019,7 +2012,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~Rows Above"
-msgstr ""
+msgstr "Sett inn rader over"
#: CalcCommands.xcu
msgctxt ""
@@ -2028,17 +2021,16 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Rows ~Above"
-msgstr ""
+msgstr "Rader ~over"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:InsertColumns\n"
"Label\n"
"value.text"
msgid "Insert Co~lumns Left"
-msgstr "Sett inn ~kolonner"
+msgstr "Sett inn kolonner til venstre"
#: CalcCommands.xcu
msgctxt ""
@@ -2047,17 +2039,16 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Columns ~Left"
-msgstr ""
+msgstr "Kolonner ~venstre"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:InsertColumnsBefore\n"
"Label\n"
"value.text"
msgid "Insert Co~lumns Left"
-msgstr "Sett inn ~kolonner"
+msgstr "Sett inn kolonner til venstre"
#: CalcCommands.xcu
msgctxt ""
@@ -2066,7 +2057,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Columns ~Left"
-msgstr ""
+msgstr "Kolonner venstre"
#: CalcCommands.xcu
msgctxt ""
@@ -2075,7 +2066,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~Rows Below"
-msgstr ""
+msgstr "Sett inn rader under"
#: CalcCommands.xcu
msgctxt ""
@@ -2084,10 +2075,9 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Rows ~Below"
-msgstr ""
+msgstr "Rader ~under"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:InsertColumnsAfter\n"
@@ -2103,7 +2093,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Columns ~Right"
-msgstr ""
+msgstr "Kolonner høyre"
#: CalcCommands.xcu
msgctxt ""
@@ -2394,7 +2384,6 @@ msgid "~Hide Sheets"
msgstr "~Skjul ark"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:Show\n"
@@ -2458,7 +2447,6 @@ msgid "Standard Text Attributes"
msgstr "Standard tekstegenskaper"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:TextAttributes\n"
@@ -2510,7 +2498,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Protect ~Spreadsheet..."
-msgstr ""
+msgstr "Vern regneark"
#: CalcCommands.xcu
msgctxt ""
@@ -2798,7 +2786,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sheet ~Tab Color..."
-msgstr ""
+msgstr "Farge for arkfane …"
#: CalcCommands.xcu
msgctxt ""
@@ -2810,7 +2798,6 @@ msgid "Tab Color"
msgstr "Fanefarge"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:Move\n"
@@ -3054,14 +3041,13 @@ msgid "Scientific"
msgstr "Vitenskaplig"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Commands..uno:NumberFormatTime\n"
"Label\n"
"value.text"
msgid "Format as Time"
-msgstr "Formater som dato"
+msgstr "Formater som klokkeslett"
#: CalcCommands.xcu
msgctxt ""
@@ -3196,7 +3182,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "S~hare Spreadsheet..."
-msgstr ""
+msgstr "Del regneark"
#: CalcCommands.xcu
msgctxt ""
@@ -3214,7 +3200,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Grid Lines for Sheet"
-msgstr ""
+msgstr "Rutelinjer for ark"
#: CalcCommands.xcu
msgctxt ""
@@ -3271,14 +3257,13 @@ msgid "~Detective"
msgstr "~Sporing"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:InsertBreakMenu\n"
"Label\n"
"value.text"
msgid "Insert Page ~Break"
-msgstr "Sett inn ~sideskift"
+msgstr "Sett inn sideskift"
#: CalcCommands.xcu
msgctxt ""
@@ -3305,17 +3290,16 @@ msgctxt ""
"Label\n"
"value.text"
msgid "F~ill Cells"
-msgstr ""
+msgstr "Fyll celler"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:CellContentsMenu\n"
"Label\n"
"value.text"
msgid "Ca~lculate"
-msgstr "B~eregn"
+msgstr "Beregn"
#: CalcCommands.xcu
msgctxt ""
@@ -3324,17 +3308,16 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Named Expressions"
-msgstr ""
+msgstr "~Navngitte uttrykk"
#: CalcCommands.xcu
-#, fuzzy
msgctxt ""
"CalcCommands.xcu\n"
"..CalcCommands.UserInterface.Popups..uno:EditAnnotation\n"
"Label\n"
"value.text"
msgid "Edit Comment"
-msgstr "Neste merknad"
+msgstr "Rediger merknad"
#: CalcCommands.xcu
msgctxt ""
@@ -3361,7 +3344,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "More ~Filters"
-msgstr ""
+msgstr "Flere filtre"
#: CalcCommands.xcu
msgctxt ""
@@ -3433,7 +3416,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cell ~Comment"
-msgstr ""
+msgstr "Celle merknad"
#: CalcCommands.xcu
msgctxt ""
@@ -3514,7 +3497,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Export as image"
-msgstr ""
+msgstr "Eksporter som bilde"
#: CalcCommands.xcu
msgctxt ""
@@ -3985,14 +3968,13 @@ msgid "Format Selection..."
msgstr "Formateringsutvalg ..."
#: ChartCommands.xcu
-#, fuzzy
msgctxt ""
"ChartCommands.xcu\n"
"..ChartCommands.UserInterface.Commands..uno:Legend\n"
"Label\n"
"value.text"
msgid "Format Legend"
-msgstr "Formater forklaring …"
+msgstr "Formater forklaring"
#: ChartCommands.xcu
msgctxt ""
@@ -4049,14 +4031,13 @@ msgid "~Data Ranges..."
msgstr "Data~område …"
#: ChartCommands.xcu
-#, fuzzy
msgctxt ""
"ChartCommands.xcu\n"
"..ChartCommands.UserInterface.Commands..uno:DiagramData\n"
"Label\n"
"value.text"
msgid "~Data Table..."
-msgstr "~Dataoverskrifter …"
+msgstr "~Datatabell"
#: ChartCommands.xcu
msgctxt ""
@@ -4725,14 +4706,13 @@ msgid "Select Chart Element"
msgstr "Velg diagramelement"
#: ChartCommands.xcu
-#, fuzzy
msgctxt ""
"ChartCommands.xcu\n"
"..ChartCommands.UserInterface.Commands..uno:ToggleGridHorizontal\n"
"Label\n"
"value.text"
msgid "Horizontal Grids"
-msgstr "Vannrett inn"
+msgstr "Vannrett rutenett"
#: ChartCommands.xcu
msgctxt ""
@@ -4795,7 +4775,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Vertical Grids"
-msgstr ""
+msgstr "Loddrett rutenett"
#: ChartCommands.xcu
msgctxt ""
@@ -5920,10 +5900,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "S~lide"
-msgstr ""
+msgstr "Lysbilde"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideNavigateMenu\n"
@@ -5933,14 +5912,13 @@ msgid "Navigate"
msgstr "Naviger"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideMoveMenu\n"
"Label\n"
"value.text"
msgid "Move"
-msgstr "Bildeeffekter"
+msgstr "Flytt"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -5949,7 +5927,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rename Page/Slide"
-msgstr ""
+msgstr "Gi side nytt navn"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -5985,7 +5963,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Jump to last edited Slide"
-msgstr ""
+msgstr "Gå til siste redigerte lysbilde"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6357,7 +6335,6 @@ msgid "Pre~view"
msgstr "For~håndsvisning"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:CustomAnimation\n"
@@ -6376,7 +6353,6 @@ msgid "Animation Schemes..."
msgstr "Animasjonsoppsett …"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SlideChangeWindow\n"
@@ -6422,14 +6398,13 @@ msgid "Reset Routing"
msgstr "Nullstill ruting"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:DuplicatePage\n"
"Label\n"
"value.text"
msgid "Duplicate Page/~Slide"
-msgstr "L~ag kopi av lysbilde"
+msgstr "Dupliser lysbilde"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6735,7 +6710,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format Page/Slide"
-msgstr ""
+msgstr "Formater side/lysbilde"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6744,7 +6719,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Page/Slide Properties..."
-msgstr ""
+msgstr "Side/lysbilde egenskaper"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6834,7 +6809,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "New Page/Slid~e"
-msgstr ""
+msgstr "Ny side/nytt lysbilde"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6972,7 +6947,6 @@ msgid "~Insert Snap Point/Line..."
msgstr "~Sett inn festepunkt/-linje …"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ShowRuler\n"
@@ -6991,7 +6965,6 @@ msgid "~Layer..."
msgstr "~Lag …"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:ModifyPage\n"
@@ -7142,7 +7115,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notes"
-msgstr ""
+msgstr "Notat"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7151,7 +7124,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Display Mode"
-msgstr ""
+msgstr "Visingsmodus"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7160,7 +7133,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Tab Bar Visibility"
-msgstr ""
+msgstr "Slå av eller på vising av fanelinje"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7169,10 +7142,9 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Modes Tab Bar"
-msgstr ""
+msgstr "Modus Tabulator linje"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:HandoutMode\n"
@@ -7188,7 +7160,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "D~elete Page/Slide"
-msgstr ""
+msgstr "Slett lysbilde/side"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7776,14 +7748,13 @@ msgid "Double-click to edit Text"
msgstr "Dobbeltklikk for å redigere teksten"
#: DrawImpressCommands.xcu
-#, fuzzy
msgctxt ""
"DrawImpressCommands.xcu\n"
"..DrawImpressCommands.UserInterface.Commands..uno:SaveGraphic\n"
"Label\n"
"value.text"
msgid "~Save..."
-msgstr "Si~de …"
+msgstr "Lagre..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7792,7 +7763,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Original Size"
-msgstr ""
+msgstr "~Orginal størrelse"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7801,7 +7772,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Replace..."
-msgstr ""
+msgstr "~Bytt ut …"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7810,7 +7781,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Co~mpress..."
-msgstr ""
+msgstr "Komprimer …"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7819,7 +7790,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Set Background Image..."
-msgstr ""
+msgstr "Sett bakgrunnsbilde …"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7828,7 +7799,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Save Background Image..."
-msgstr ""
+msgstr "Lagra bakgrunnsbilde …"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7837,7 +7808,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Display Master Background"
-msgstr ""
+msgstr "Vis bakgrunnen til hovedutforming"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7846,7 +7817,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Display Master Objects"
-msgstr ""
+msgstr "hovedutformingsobjekt"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7855,7 +7826,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~dit Style..."
-msgstr ""
+msgstr "Rediger ~stil …"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8548,7 +8519,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to First Page/Slide"
-msgstr ""
+msgstr "Gå til første side/lysbilde"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8557,7 +8528,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "To First Page/Slide"
-msgstr ""
+msgstr "Gå til første side/lysbilde"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8566,7 +8537,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to Previous Page/Slide"
-msgstr ""
+msgstr "Gå til førrige side/lysbilde"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8575,7 +8546,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "To Previous Page/Slide"
-msgstr ""
+msgstr "Gå til forrige side/lysbilde"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8584,7 +8555,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to Next Page/Slide"
-msgstr ""
+msgstr "Gå til neste side/lysbilde"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8593,7 +8564,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "To Next Page/Slide"
-msgstr ""
+msgstr "Gå til neste side/lysbilde"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8602,7 +8573,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go to Last Page"
-msgstr ""
+msgstr "Gå til siste side"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8611,7 +8582,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "To Last Page/Slide"
-msgstr ""
+msgstr "Gå til siste side/lysbilde"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8620,7 +8591,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Page/Slide to Start"
-msgstr ""
+msgstr "Flytt side/lysbilde til start"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8629,7 +8600,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Page/Slide to Start"
-msgstr ""
+msgstr "Flytt side/lysbilde til start"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8638,7 +8609,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Page/Slide Up"
-msgstr ""
+msgstr "Flytt side/lysbilde opp"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8647,7 +8618,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Page/Slide Up"
-msgstr ""
+msgstr "Side/lysbilde opp"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8656,7 +8627,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Page/Slide Down"
-msgstr ""
+msgstr "Flytt side/lysbilde ned"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8665,7 +8636,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Page/Slide Down"
-msgstr ""
+msgstr "Flytt side/lysbilde ned"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8674,7 +8645,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Move Page/Slide to End"
-msgstr ""
+msgstr "Flytt side/lysbilde til slutten"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8683,7 +8654,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Page/Slide to End"
-msgstr ""
+msgstr "Side/lysbilde til slutten"
#: DrawWindowState.xcu
msgctxt ""
@@ -8809,7 +8780,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy Circles and Ovals"
-msgstr ""
+msgstr "Sirkler og ellipser (klassisk)"
#: DrawWindowState.xcu
msgctxt ""
@@ -8884,14 +8855,13 @@ msgid "Form Design"
msgstr "Skjemautforming"
#: DrawWindowState.xcu
-#, fuzzy
msgctxt ""
"DrawWindowState.xcu\n"
"..DrawWindowState.UIElements.States.private:resource/toolbar/gluepointsobjectbar\n"
"UIName\n"
"value.text"
msgid "Glue Points"
-msgstr "~Festepunkter"
+msgstr "Festepunkter"
#: DrawWindowState.xcu
msgctxt ""
@@ -8936,7 +8906,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy Rectangles"
-msgstr ""
+msgstr "Rektangel (klassisk)"
#: DrawWindowState.xcu
msgctxt ""
@@ -11414,7 +11384,6 @@ msgid "From right to top"
msgstr "Fra høyre til toppen"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionGroups.subtle\n"
@@ -11424,7 +11393,6 @@ msgid "Subtle"
msgstr "Avdempede"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionGroups.exciting\n"
@@ -11440,7 +11408,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Venetian"
-msgstr ""
+msgstr "Venetiansk"
#: Effects.xcu
msgctxt ""
@@ -11449,10 +11417,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "3D Venetian"
-msgstr ""
+msgstr "3D Venetiansk"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.box\n"
@@ -11468,7 +11435,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Checkers"
-msgstr ""
+msgstr "Sjakkbrett"
#: Effects.xcu
msgctxt ""
@@ -11477,10 +11444,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Comb"
-msgstr ""
+msgstr "Kam"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.cover\n"
@@ -11496,10 +11462,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Uncover"
-msgstr ""
+msgstr "Avdekk"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.wipe\n"
@@ -11509,7 +11474,6 @@ msgid "Wipe"
msgstr "Tørk"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.wedge\n"
@@ -11519,7 +11483,6 @@ msgid "Wedge"
msgstr "Kile"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.wheel\n"
@@ -11535,10 +11498,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Push"
-msgstr ""
+msgstr "Skyv"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.cut\n"
@@ -11554,10 +11516,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fade"
-msgstr ""
+msgstr "Ton ut"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.random-bars\n"
@@ -11567,17 +11528,15 @@ msgid "Random Bars"
msgstr "Tilfeldige linjer"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.shape\n"
"Label\n"
"value.text"
msgid "Shape"
-msgstr "~Former"
+msgstr "Former"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.split\n"
@@ -11593,7 +11552,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Diagonal"
-msgstr ""
+msgstr "Diagonal"
#: Effects.xcu
msgctxt ""
@@ -11602,10 +11561,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Random"
-msgstr ""
+msgstr "Tilfeldig"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.dissolve\n"
@@ -11615,7 +11573,6 @@ msgid "Dissolve"
msgstr "Oppløs"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.finedissolve\n"
@@ -11625,7 +11582,6 @@ msgid "Fine Dissolve"
msgstr "Pulverisering"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.newsflash\n"
@@ -11641,10 +11597,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tiles"
-msgstr ""
+msgstr "Fliser"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.cube-turning\n"
@@ -11654,7 +11609,6 @@ msgid "Cube"
msgstr "Kube"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.revolving-circles\n"
@@ -11670,10 +11624,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Helix"
-msgstr ""
+msgstr "Heliks"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.fall\n"
@@ -11683,27 +11636,24 @@ msgid "Fall"
msgstr "Fall ned"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.turn-around\n"
"Label\n"
"value.text"
msgid "Turn Around"
-msgstr "Vend om"
+msgstr "Snu"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.turn-down\n"
"Label\n"
"value.text"
msgid "Turn Down"
-msgstr "Sving ned"
+msgstr "Snu ned"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.iris\n"
@@ -11713,7 +11663,6 @@ msgid "Iris"
msgstr "Iris"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.rochade\n"
@@ -11723,7 +11672,6 @@ msgid "Rochade"
msgstr "Omrokkering"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionSets.static\n"
@@ -11739,7 +11687,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Vortex"
-msgstr ""
+msgstr "Vortex"
#: Effects.xcu
msgctxt ""
@@ -11748,7 +11696,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ripple"
-msgstr ""
+msgstr "Krusing"
#: Effects.xcu
msgctxt ""
@@ -11757,7 +11705,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Glitter"
-msgstr ""
+msgstr "Glitter"
#: Effects.xcu
msgctxt ""
@@ -11766,7 +11714,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Honeycomb"
-msgstr ""
+msgstr "Vokskake"
#: Effects.xcu
msgctxt ""
@@ -11775,30 +11723,27 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Plain"
-msgstr ""
+msgstr "Enkel"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.smoothly\n"
"Label\n"
"value.text"
msgid "Smoothly"
-msgstr "Gjør jevnere"
+msgstr "Utgjevn"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.through-black\n"
"Label\n"
"value.text"
msgid "Through Black"
-msgstr "Kutt gjennom svart"
+msgstr "Gjennom svart"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.left-right\n"
@@ -11814,7 +11759,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Top Left to Bottom Right"
-msgstr ""
+msgstr "Fra venstre oppe til høyre nede"
#: Effects.xcu
msgctxt ""
@@ -11823,7 +11768,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Top to Bottom"
-msgstr ""
+msgstr "Ovenfra og ned"
#: Effects.xcu
msgctxt ""
@@ -11832,10 +11777,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Top Right to Bottom Left"
-msgstr ""
+msgstr "Fra høyre oppe til venstre nede"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.right-left\n"
@@ -11851,7 +11795,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bottom Right to Top Left"
-msgstr ""
+msgstr "Fra høyre nede til venstre oppe"
#: Effects.xcu
msgctxt ""
@@ -11860,7 +11804,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bottom to Top"
-msgstr ""
+msgstr "Nedanfra og opp"
#: Effects.xcu
msgctxt ""
@@ -11869,10 +11813,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bottom Left to Top Right"
-msgstr ""
+msgstr "Fra venstre nede til høyre oppe"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.vertical\n"
@@ -11882,7 +11825,6 @@ msgid "Vertical"
msgstr "Loddrett"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.horizontal\n"
@@ -11892,47 +11834,42 @@ msgid "Horizontal"
msgstr "Vannrett"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.in\n"
"Label\n"
"value.text"
msgid "In"
-msgstr "Opp"
+msgstr "Inn"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.out\n"
"Label\n"
"value.text"
msgid "Out"
-msgstr "Ned"
+msgstr "Ut"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.across\n"
"Label\n"
"value.text"
msgid "Across"
-msgstr "Over"
+msgstr "Tvers over"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.down\n"
"Label\n"
"value.text"
msgid "Down"
-msgstr "Nedover"
+msgstr "Ned"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.up\n"
@@ -11942,7 +11879,6 @@ msgid "Up"
msgstr "Opp"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.right\n"
@@ -11952,7 +11888,6 @@ msgid "Right"
msgstr "Høyre"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.left\n"
@@ -11962,7 +11897,6 @@ msgid "Left"
msgstr "Venstre"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.circle\n"
@@ -11972,7 +11906,6 @@ msgid "Circle"
msgstr "Sirkel"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.diamond\n"
@@ -11982,7 +11915,6 @@ msgid "Diamond"
msgstr "Rombe"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.plus\n"
@@ -11992,7 +11924,6 @@ msgid "Plus"
msgstr "Pluss"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.horizontal-in\n"
@@ -12002,7 +11933,6 @@ msgid "Horizontal In"
msgstr "Vannrett inn"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.horizontal-out\n"
@@ -12012,7 +11942,6 @@ msgid "Horizontal Out"
msgstr "Vannrett ut"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.vertical-in\n"
@@ -12022,7 +11951,6 @@ msgid "Vertical In"
msgstr "Loddrett inn"
#: Effects.xcu
-#, fuzzy
msgctxt ""
"Effects.xcu\n"
"..Effects.UserInterface.TransitionVariants.vertical-out\n"
@@ -12038,7 +11966,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clockwise 1 Spoke"
-msgstr ""
+msgstr "Med klokka 1 spile"
#: Effects.xcu
msgctxt ""
@@ -12047,7 +11975,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clockwise 2 Spokes"
-msgstr ""
+msgstr "Med klokka 2 spiler"
#: Effects.xcu
msgctxt ""
@@ -12056,7 +11984,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clockwise 3 Spokes"
-msgstr ""
+msgstr "Med klokka 3 spiler"
#: Effects.xcu
msgctxt ""
@@ -12065,7 +11993,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clockwise 4 Spokes"
-msgstr ""
+msgstr "Med klokka 4 spiler"
#: Effects.xcu
msgctxt ""
@@ -12074,7 +12002,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clockwise 8 Spokes"
-msgstr ""
+msgstr "Med klokka 8 spiler"
#: Effects.xcu
msgctxt ""
@@ -12083,7 +12011,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Counterclockwise 1 Spoke"
-msgstr ""
+msgstr "Mot klokka 1 spile"
#: Effects.xcu
msgctxt ""
@@ -12092,7 +12020,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Counterclockwise 2 Spokes"
-msgstr ""
+msgstr "Mot klokka 2 spiler"
#: Effects.xcu
msgctxt ""
@@ -12101,7 +12029,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Counterclockwise 3 Spokes"
-msgstr ""
+msgstr "Mot klokka 3 spiler"
#: Effects.xcu
msgctxt ""
@@ -12110,7 +12038,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Counterclockwise 4 Spokes"
-msgstr ""
+msgstr "Mot klokka 4 spiler"
#: Effects.xcu
msgctxt ""
@@ -12119,7 +12047,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Counterclockwise 8 Spokes"
-msgstr ""
+msgstr "Mot klokka 8 spiler"
#: Effects.xcu
msgctxt ""
@@ -12128,7 +12056,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Inside"
-msgstr ""
+msgstr "Innside"
#: Effects.xcu
msgctxt ""
@@ -12137,7 +12065,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Outside"
-msgstr ""
+msgstr "Utside"
#: Effects.xcu
msgctxt ""
@@ -12518,7 +12446,6 @@ msgid "Controls"
msgstr "Kontrollelementer"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertFormMenu\n"
@@ -12552,7 +12479,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Unicode Notation"
-msgstr ""
+msgstr "Bytt om Unicode-notasjonen"
#: GenericCommands.xcu
msgctxt ""
@@ -12624,7 +12551,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Increase Paragraph Spacing"
-msgstr ""
+msgstr "Øk avstanden mellom avsnitt"
#: GenericCommands.xcu
msgctxt ""
@@ -12633,7 +12560,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Decrease Paragraph Spacing"
-msgstr ""
+msgstr "Reduser avstanden mellom avsnitt"
#: GenericCommands.xcu
msgctxt ""
@@ -14127,7 +14054,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Increase Font Size"
-msgstr ""
+msgstr "Større skrift"
#: GenericCommands.xcu
msgctxt ""
@@ -14136,7 +14063,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Increase Size"
-msgstr ""
+msgstr "Øk størrelsen"
#: GenericCommands.xcu
msgctxt ""
@@ -14145,7 +14072,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Decrease Font Size"
-msgstr ""
+msgstr "Mindre skrift"
#: GenericCommands.xcu
msgctxt ""
@@ -14154,7 +14081,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Decrease Size"
-msgstr ""
+msgstr "Reduser størrelsen"
#: GenericCommands.xcu
msgctxt ""
@@ -14289,7 +14216,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Search Formatted Display String"
-msgstr ""
+msgstr "Søk etter formatert visingsstreng"
#: GenericCommands.xcu
msgctxt ""
@@ -14316,7 +14243,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "[placeholder for message]"
-msgstr ""
+msgstr "[Plassholder for melding]"
#: GenericCommands.xcu
msgctxt ""
@@ -14811,7 +14738,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Crop"
-msgstr ""
+msgstr "Beskjær"
#: GenericCommands.xcu
msgctxt ""
@@ -14820,7 +14747,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Replace Image"
-msgstr ""
+msgstr "Bytt ut bilde"
#: GenericCommands.xcu
msgctxt ""
@@ -14829,7 +14756,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Replace..."
-msgstr ""
+msgstr "~Bytt ut …"
#: GenericCommands.xcu
msgctxt ""
@@ -14838,7 +14765,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Compress Image"
-msgstr ""
+msgstr "Komprimer bilde"
#: GenericCommands.xcu
msgctxt ""
@@ -14847,17 +14774,16 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Co~mpress..."
-msgstr ""
+msgstr "Komprimer …"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:SaveGraphic\n"
"Label\n"
"value.text"
msgid "Save Image"
-msgstr "Lagre bilder …"
+msgstr "Lagre bilde …"
#: GenericCommands.xcu
msgctxt ""
@@ -14866,7 +14792,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Save..."
-msgstr ""
+msgstr "Lagre..."
#: GenericCommands.xcu
msgctxt ""
@@ -14875,10 +14801,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Gr~id and Helplines"
-msgstr ""
+msgstr "Rutenett og hjelpelinjer"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ToolsFormsMenu\n"
@@ -14894,7 +14819,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Manage Templates"
-msgstr ""
+msgstr "Malbehandler"
#: GenericCommands.xcu
msgctxt ""
@@ -14930,7 +14855,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Open Remote ~File..."
-msgstr ""
+msgstr "Åpne ekstern fil..."
#: GenericCommands.xcu
msgctxt ""
@@ -14939,7 +14864,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Save to Remote Ser~ver"
-msgstr ""
+msgstr "Lagre til fjerntjener"
#: GenericCommands.xcu
msgctxt ""
@@ -14948,7 +14873,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Save Remote File..."
-msgstr ""
+msgstr "Lagre ekstern fil..."
#: GenericCommands.xcu
msgctxt ""
@@ -15070,7 +14995,6 @@ msgid "Move Points"
msgstr "Flytt punkter"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:Reload\n"
@@ -15095,7 +15019,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Print Directly"
-msgstr ""
+msgstr "Direkte utskrift"
#: GenericCommands.xcu
msgctxt ""
@@ -15107,7 +15031,6 @@ msgid "Smooth Transition"
msgstr "Jevn overgang"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ToggleObjectBezierMode\n"
@@ -15117,14 +15040,13 @@ msgid "Edit Points"
msgstr "Rediger punkter"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ToggleObjectBezierMode\n"
"ContextLabel\n"
"value.text"
msgid "Poi~nts"
-msgstr "~Punkter"
+msgstr "Punkter"
#: GenericCommands.xcu
msgctxt ""
@@ -15421,7 +15343,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Outline Presets"
-msgstr ""
+msgstr "Forhåndsinnstillinger for omriss"
#: GenericCommands.xcu
msgctxt ""
@@ -15568,7 +15490,6 @@ msgid "Demote"
msgstr "Ett nivå ned"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:OutlineFormat\n"
@@ -15584,7 +15505,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show Only First Level"
-msgstr ""
+msgstr "Vis bare første nivå"
#: GenericCommands.xcu
msgctxt ""
@@ -15596,14 +15517,13 @@ msgid "~Bullets and Numbering..."
msgstr "~Punkter og nummerering …"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:EditDoc\n"
"Label\n"
"value.text"
msgid "E~dit Mode"
-msgstr "~Redigeringsmodus"
+msgstr "Redigeringsmodus"
#: GenericCommands.xcu
msgctxt ""
@@ -15621,7 +15541,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Web View"
-msgstr ""
+msgstr "~Nettsidevising"
#: GenericCommands.xcu
msgctxt ""
@@ -15630,7 +15550,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Web"
-msgstr ""
+msgstr "~Nett"
#: GenericCommands.xcu
msgctxt ""
@@ -15756,7 +15676,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Edit Style..."
-msgstr ""
+msgstr "~Rediger stil …"
#: GenericCommands.xcu
msgctxt ""
@@ -15765,7 +15685,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~New Style..."
-msgstr ""
+msgstr "~Ny stil …"
#: GenericCommands.xcu
msgctxt ""
@@ -15786,14 +15706,13 @@ msgid "Numeric Field"
msgstr "Tallfelt"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:StyleUpdateByExample\n"
"Label\n"
"value.text"
msgid "~Update Style"
-msgstr "Oppdater stil"
+msgstr "~Oppdater stil"
#: GenericCommands.xcu
msgctxt ""
@@ -16012,7 +15931,6 @@ msgid "Background Color"
msgstr "Bakgrunnsfarge"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:CharBackColor\n"
@@ -16064,7 +15982,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Borders (Shift to overwrite)"
-msgstr ""
+msgstr "Kantlinjer (Shift for å overskrive)"
#: GenericCommands.xcu
msgctxt ""
@@ -16253,7 +16171,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Border Style"
-msgstr ""
+msgstr "Kantlinjestil"
#: GenericCommands.xcu
msgctxt ""
@@ -16262,7 +16180,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Border Color"
-msgstr ""
+msgstr "Kantlinjefarge"
#: GenericCommands.xcu
msgctxt ""
@@ -16343,7 +16261,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Show All Levels"
-msgstr ""
+msgstr "Vis alle nivå"
#: GenericCommands.xcu
msgctxt ""
@@ -16370,7 +16288,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Remove Outline"
-msgstr ""
+msgstr "~Fjern omriss"
#: GenericCommands.xcu
msgctxt ""
@@ -16418,24 +16336,22 @@ msgid "F~ull Screen"
msgstr "~Fullskjerm"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertFrameMenu\n"
"Label\n"
"value.text"
msgid "~Frame"
-msgstr "Ramme"
+msgstr "~Ramme"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:InsertFootnotesMenu\n"
"Label\n"
"value.text"
msgid "Footnote and En~dnote"
-msgstr "~Fotnote/sluttnote …"
+msgstr "Fotnote og sluttnote"
#: GenericCommands.xcu
msgctxt ""
@@ -16453,10 +16369,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Object and Shape"
-msgstr ""
+msgstr "~Objekt og form"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FormatImageFiltersMenu\n"
@@ -16466,24 +16381,22 @@ msgid "~Filter"
msgstr "~Filter"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FormatImageModeMenu\n"
"Label\n"
"value.text"
msgid "Mo~de"
-msgstr "Bildeeffekter"
+msgstr "Modus"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FormatTextMenu\n"
"Label\n"
"value.text"
msgid "~Text"
-msgstr "Tekst"
+msgstr "~Tekst"
#: GenericCommands.xcu
msgctxt ""
@@ -16492,7 +16405,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Spacing"
-msgstr ""
+msgstr "~Mellomrom"
#: GenericCommands.xcu
msgctxt ""
@@ -16501,17 +16414,16 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Lis~ts"
-msgstr ""
+msgstr "Lister"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FormatStylesMenu\n"
"Label\n"
"value.text"
msgid "~Styles"
-msgstr "Sti~ler"
+msgstr "~Stiler"
#: GenericCommands.xcu
msgctxt ""
@@ -16520,17 +16432,16 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Frame and Ob~ject"
-msgstr ""
+msgstr "Ramme og objekt"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FormatFormMenu\n"
"Label\n"
"value.text"
msgid "~Form"
-msgstr "Skjema"
+msgstr "~Skjema"
#: GenericCommands.xcu
msgctxt ""
@@ -16548,7 +16459,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "AutoFormat Table Styles"
-msgstr ""
+msgstr "Autoformater tabellstiler"
#: GenericCommands.xcu
msgctxt ""
@@ -16557,7 +16468,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Auto~Format Styles..."
-msgstr ""
+msgstr "Autoformater tabellstiler"
#: GenericCommands.xcu
msgctxt ""
@@ -16623,47 +16534,42 @@ msgid "Show Draw Functions"
msgstr "Vis tegnefunksjoner"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShapesMenu\n"
"Label\n"
"value.text"
msgid "~Shape"
-msgstr "~Former"
+msgstr "~Form"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShapesLineMenu\n"
"Label\n"
"value.text"
msgid "~Line"
-msgstr "Linje"
+msgstr "~Linje"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShapesBasicMenu\n"
"Label\n"
"value.text"
msgid "~Basic"
-msgstr "Enkle"
+msgstr "~Basis"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ShapesSymbolMenu\n"
"Label\n"
"value.text"
msgid "~Symbol"
-msgstr "Symboler"
+msgstr "~Symboler"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:RulerMenu\n"
@@ -16673,24 +16579,22 @@ msgid "~Rulers"
msgstr "~Linjaler"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ScrollBarMenu\n"
"Label\n"
"value.text"
msgid "~Scrollbars"
-msgstr "Rullefelt"
+msgstr "~Rullefelt"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:SidebarMenu\n"
"Label\n"
"value.text"
msgid "~Sidebar"
-msgstr "Sidestolpe"
+msgstr "~Sidestolpe"
#: GenericCommands.xcu
msgctxt ""
@@ -16918,7 +16822,6 @@ msgid "~Video..."
msgstr "~Video …"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:HyperlinkDialog\n"
@@ -16952,7 +16855,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Equalize ~Width"
-msgstr ""
+msgstr "Samme bredde"
#: GenericCommands.xcu
msgctxt ""
@@ -16961,7 +16864,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Equalize ~Height"
-msgstr ""
+msgstr "Samme høyde"
#: GenericCommands.xcu
msgctxt ""
@@ -17045,17 +16948,15 @@ msgid "Undo"
msgstr "Angre"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FormatPaintbrush\n"
"Label\n"
"value.text"
msgid "Clone Formatting"
-msgstr "Sideformatering"
+msgstr "Klon formatering"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:FormatPaintbrush\n"
@@ -18208,17 +18109,15 @@ msgid "~Customize..."
msgstr "~Tilpass …"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportDirectToPDF\n"
"Label\n"
"value.text"
msgid "Export as PDF"
-msgstr "Lagre som ~PDF …"
+msgstr "Eksporter som PDF"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Commands..uno:ExportDirectToPDF\n"
@@ -18639,7 +18538,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Con~trol Properties..."
-msgstr ""
+msgstr "Egenskaper for kontrollelement"
#: GenericCommands.xcu
msgctxt ""
@@ -18648,7 +18547,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "For~m Properties..."
-msgstr ""
+msgstr "Egenskaper for skjema"
#: GenericCommands.xcu
msgctxt ""
@@ -18774,7 +18673,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Design Mode"
-msgstr ""
+msgstr "Slå av/på utformingsmodus"
#: GenericCommands.xcu
msgctxt ""
@@ -18783,7 +18682,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Design Mode"
-msgstr ""
+msgstr "Utformingsmodus"
#: GenericCommands.xcu
msgctxt ""
@@ -19746,7 +19645,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Synony~ms"
-msgstr ""
+msgstr "Synonym"
#: GenericCommands.xcu
msgctxt ""
@@ -19767,7 +19666,6 @@ msgid "~File"
msgstr "~Fil"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:ObjectAlign\n"
@@ -19777,7 +19675,6 @@ msgid "Alig~n"
msgstr "Juster"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:TextAlign\n"
@@ -19910,20 +19807,18 @@ msgctxt ""
"Label\n"
"value.text"
msgid "R~eference"
-msgstr ""
+msgstr "Referanse"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:EditCommentsMenu\n"
"Label\n"
"value.text"
msgid "C~omment"
-msgstr "~Merknad"
+msgstr "Merknad"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:FormatImageFilterMenu\n"
@@ -19978,14 +19873,13 @@ msgid "~Toolbars"
msgstr "~Verktøylinjer"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:FieldMenu\n"
"Label\n"
"value.text"
msgid "Fiel~d"
-msgstr "Felte~r"
+msgstr "Felt"
#: GenericCommands.xcu
msgctxt ""
@@ -20051,14 +19945,13 @@ msgid "A~nchor"
msgstr "~Forankring"
#: GenericCommands.xcu
-#, fuzzy
msgctxt ""
"GenericCommands.xcu\n"
"..GenericCommands.UserInterface.Popups..uno:AVMediaPlayer\n"
"Label\n"
"value.text"
msgid "Me~dia Player"
-msgstr "~Medieavspiller"
+msgstr "Medieavspiller"
#: GenericCommands.xcu
msgctxt ""
@@ -20364,7 +20257,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy Circles and Ovals"
-msgstr ""
+msgstr "Sirkler og ellipser (klassisk)"
#: ImpressWindowState.xcu
msgctxt ""
@@ -20553,7 +20446,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Legacy Rectangles"
-msgstr ""
+msgstr "Rektangel (klassisk)"
#: ImpressWindowState.xcu
msgctxt ""
@@ -20796,7 +20689,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Import MathML from Clipboard"
-msgstr ""
+msgstr "Importer MathML fra utklippstavla"
#: MathCommands.xcu
msgctxt ""
@@ -20880,14 +20773,13 @@ msgid "Previous ~Marker"
msgstr "~Forrige merke"
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Commands..uno:SymbolCatalogue\n"
"Label\n"
"value.text"
msgid "~Symbols…"
-msgstr "Symboler"
+msgstr "~Symboler..."
#: MathCommands.xcu
msgctxt ""
@@ -20962,7 +20854,6 @@ msgid "Sho~w All"
msgstr "Vis a~lt"
#: MathCommands.xcu
-#, fuzzy
msgctxt ""
"MathCommands.xcu\n"
"..MathCommands.UserInterface.Commands..uno:ElementsDockingWindow\n"
@@ -21548,7 +21439,6 @@ msgid "Gallery"
msgstr "Galleri"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.SdMasterPagesDeck\n"
@@ -21558,7 +21448,6 @@ msgid "Master Pages"
msgstr "Hovedsider"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.SdCustomAnimationDeck\n"
@@ -21568,7 +21457,6 @@ msgid "Custom Animation"
msgstr "Tilpasset animasjon"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.SdSlideTransitionDeck\n"
@@ -21596,7 +21484,6 @@ msgid "Styles and Formatting"
msgstr "Stilbehandler"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.ScFunctionsDeck\n"
@@ -21606,17 +21493,15 @@ msgid "Functions"
msgstr "Funksjoner"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.SwManageChangesDeck\n"
"Title\n"
"value.text"
msgid "Manage Changes"
-msgstr "~Behandle endringer …"
+msgstr "Behandle endringer"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.SwDesignDeck\n"
@@ -21626,7 +21511,6 @@ msgid "Design"
msgstr "Utforming"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.DeckList.ChartDeck\n"
@@ -21636,14 +21520,13 @@ msgid "Properties"
msgstr "Egenskaper"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.StylesPropertyPanel\n"
"Title\n"
"value.text"
msgid "Styles"
-msgstr "Sti~ler"
+msgstr "Stiler"
#: Sidebar.xcu
msgctxt ""
@@ -21673,7 +21556,6 @@ msgid "Area"
msgstr "Område"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ShadowPropertyPanel\n"
@@ -21719,7 +21601,6 @@ msgid "Graphic"
msgstr "Bilde"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SdLayoutsPanel\n"
@@ -21729,7 +21610,6 @@ msgid "Layouts"
msgstr "Sideoppsett"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SdUsedMasterPagesPanel\n"
@@ -21739,7 +21619,6 @@ msgid "Used in This Presentation"
msgstr "Brukt i denne presentasjonen"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SdRecentMasterPagesPanel\n"
@@ -21749,7 +21628,6 @@ msgid "Recently Used"
msgstr "Nylig brukt"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SdAllMasterPagesPanel\n"
@@ -21759,7 +21637,6 @@ msgid "Available for Use"
msgstr "Tilgjengelige for bruk"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SdCustomAnimationPanel\n"
@@ -21769,7 +21646,6 @@ msgid "Custom Animation"
msgstr "Tilpasset animasjon"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SdSlideTransitionPanel\n"
@@ -21779,7 +21655,6 @@ msgid "Slide Transition"
msgstr "Lysbildeovergang"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SdTableDesignPanel\n"
@@ -21798,7 +21673,6 @@ msgid "Empty"
msgstr "Tom"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ScAlignmentPropertyPanel\n"
@@ -21808,7 +21682,6 @@ msgid "Alignment"
msgstr "Justering"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ScCellAppearancePropertyPanel\n"
@@ -21818,7 +21691,6 @@ msgid "Cell Appearance"
msgstr "Celleutseende"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ScNumberFormatPropertyPanel\n"
@@ -21837,7 +21709,6 @@ msgid "Paragraph"
msgstr "Avsnitt"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SwWrapPropertyPanel\n"
@@ -21874,14 +21745,13 @@ msgid "Navigator"
msgstr "Dokumentstruktur"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.SwManageChangesPanel\n"
"Title\n"
"value.text"
msgid "Manage Changes"
-msgstr "~Behandle endringer …"
+msgstr "Behandle endringer"
#: Sidebar.xcu
msgctxt ""
@@ -21893,7 +21763,6 @@ msgid "Styles and Formatting"
msgstr "Stilbehandler"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ScFunctionsPanel\n"
@@ -21909,7 +21778,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Style Presets"
-msgstr ""
+msgstr "Forhåndsdefinerte stiler"
#: Sidebar.xcu
msgctxt ""
@@ -21918,10 +21787,9 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Themes"
-msgstr ""
+msgstr "Tema"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ChartElementsPanel\n"
@@ -21937,7 +21805,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Data Series"
-msgstr ""
+msgstr "Dataserier"
#: Sidebar.xcu
msgctxt ""
@@ -21946,7 +21814,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Trendline"
-msgstr ""
+msgstr "Trendlinje"
#: Sidebar.xcu
msgctxt ""
@@ -21955,20 +21823,18 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Error Bar"
-msgstr ""
+msgstr "Feilstolpe"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ChartAxisPanel\n"
"Title\n"
"value.text"
msgid "Axis"
-msgstr "~Akse"
+msgstr "Akse"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ChartAreaPanel\n"
@@ -21978,7 +21844,6 @@ msgid "Area"
msgstr "Område"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ChartLinePanel\n"
@@ -21988,7 +21853,6 @@ msgid "Line"
msgstr "Linje"
#: Sidebar.xcu
-#, fuzzy
msgctxt ""
"Sidebar.xcu\n"
"..Sidebar.Content.PanelList.ChartCharacterPanel\n"
@@ -22250,7 +22114,6 @@ msgid "AutoTe~xt..."
msgstr "~Autotekst …"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:PrintLayout\n"
@@ -22260,7 +22123,6 @@ msgid "~Normal View"
msgstr "~Normalvisning"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:PrintLayout\n"
@@ -22351,14 +22213,13 @@ msgid "Page Number"
msgstr "Sidetall"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertHeaderFooterMenu\n"
"Label\n"
"value.text"
msgid "He~ader and Footer"
-msgstr "~Topptekst og bunntekst …"
+msgstr "Topptekst og bunntekst …"
#: WriterCommands.xcu
msgctxt ""
@@ -22403,7 +22264,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Endnote"
-msgstr ""
+msgstr "~Sluttnote"
#: WriterCommands.xcu
msgctxt ""
@@ -22430,7 +22291,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Table of Contents, Index or Bibliography"
-msgstr ""
+msgstr "Sett inn register, innholdsliste eller bibliografi"
#: WriterCommands.xcu
msgctxt ""
@@ -22439,7 +22300,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Table of Contents, ~Index or Bibliography..."
-msgstr ""
+msgstr "Innholdsliste, register eller bibliografi …"
#: WriterCommands.xcu
msgctxt ""
@@ -22457,7 +22318,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Direct Cursor Mode"
-msgstr ""
+msgstr "Bytt modus for direkte skrivemerke"
#: WriterCommands.xcu
msgctxt ""
@@ -22466,7 +22327,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Direct Cursor Mode"
-msgstr ""
+msgstr "Modus for direkte skrivemerke"
#: WriterCommands.xcu
msgctxt ""
@@ -22487,14 +22348,13 @@ msgid "Font Color"
msgstr "Skriftfarge"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:UpdateAllIndexes\n"
"Label\n"
"value.text"
msgid "Indexes and ~Tables"
-msgstr "~Register/innholdsliste"
+msgstr "Register og innholdsliste"
#: WriterCommands.xcu
msgctxt ""
@@ -22593,7 +22453,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go t~o Page"
-msgstr ""
+msgstr "Gå til side"
#: WriterCommands.xcu
msgctxt ""
@@ -22656,7 +22516,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Charts"
-msgstr ""
+msgstr "~Diagram"
#: WriterCommands.xcu
msgctxt ""
@@ -22749,14 +22609,13 @@ msgid "Caption..."
msgstr "Bildetekst …"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertFootnoteDialog\n"
"Label\n"
"value.text"
msgid "F~ootnote or Endnote..."
-msgstr "~Fotnote/sluttnote …"
+msgstr "Fotnote eller sluttnote …"
#: WriterCommands.xcu
msgctxt ""
@@ -22804,14 +22663,13 @@ msgid "Insert Page Break"
msgstr "Sett inn ~sideskift"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertPagebreak\n"
"ContextLabel\n"
"value.text"
msgid "~Page Break"
-msgstr "Side~skift"
+msgstr "~Sideskift"
#: WriterCommands.xcu
msgctxt ""
@@ -22823,7 +22681,6 @@ msgid "Comme~nt"
msgstr "~Merknad"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertTable\n"
@@ -22839,7 +22696,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Frame Interactively"
-msgstr ""
+msgstr "Sett inn ramme interaktivt"
#: WriterCommands.xcu
msgctxt ""
@@ -22848,7 +22705,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Frame Interactively"
-msgstr ""
+msgstr "~Ramme interaktivt"
#: WriterCommands.xcu
msgctxt ""
@@ -22857,17 +22714,16 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Frame"
-msgstr ""
+msgstr "Sett inn ramme"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertFrame\n"
"ContextLabel\n"
"value.text"
msgid "F~rame..."
-msgstr "~Ramme …"
+msgstr "Ramme …"
#: WriterCommands.xcu
msgctxt ""
@@ -23038,7 +22894,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Text Box and Shape"
-msgstr ""
+msgstr "~Tekstboks og form"
#: WriterCommands.xcu
msgctxt ""
@@ -23137,7 +22993,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Footnote"
-msgstr ""
+msgstr "~Fotnote"
#: WriterCommands.xcu
msgctxt ""
@@ -23500,14 +23356,13 @@ msgid "Number Format..."
msgstr "Tallformat …"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:LoadStyles\n"
"Label\n"
"value.text"
msgid "~Load Styles..."
-msgstr "Last inn stiler …"
+msgstr "~Last inn stiler …"
#: WriterCommands.xcu
msgctxt ""
@@ -23627,44 +23482,40 @@ msgid "Drop Caps"
msgstr "Innfelt forbokstav"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
"Label\n"
"value.text"
msgid "Frame or Object Properties"
-msgstr "Egenskaper for tegneobjekter"
+msgstr "Egenskaper for ramme eller objekter"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:FrameDialog\n"
"ContextLabel\n"
"value.text"
msgid "~Properties..."
-msgstr "Egenskaper …"
+msgstr "~Egenskaper …"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"Label\n"
"value.text"
msgid "Image Properties"
-msgstr "Tabell~egenskaper …"
+msgstr "Bilde egenskaper"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n"
"ContextLabel\n"
"value.text"
msgid "~Properties..."
-msgstr "Egenskaper …"
+msgstr "~Egenskaper …"
#: WriterCommands.xcu
msgctxt ""
@@ -23676,24 +23527,22 @@ msgid "Ta~ble Properties..."
msgstr "Tabell~egenskaper …"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:TableDialog\n"
"ContextLabel\n"
"value.text"
msgid "~Properties..."
-msgstr "Egenskaper …"
+msgstr "~Egenskaper …"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:FootnoteDialog\n"
"Label\n"
"value.text"
msgid "~Footnotes and Endnotes..."
-msgstr "~Fotnote/sluttnote …"
+msgstr "~Fotnote og sluttnote …"
#: WriterCommands.xcu
msgctxt ""
@@ -23810,7 +23659,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Align Top to Anchor"
-msgstr ""
+msgstr "Juster toppen til anker"
#: WriterCommands.xcu
msgctxt ""
@@ -23819,7 +23668,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Align Bottom to Anchor"
-msgstr ""
+msgstr "Juster bunnen til anker"
#: WriterCommands.xcu
msgctxt ""
@@ -23828,7 +23677,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Align Middle to Anchor"
-msgstr ""
+msgstr "Juster midten til anker"
#: WriterCommands.xcu
msgctxt ""
@@ -23891,7 +23740,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Repeat Heading Rows"
-msgstr ""
+msgstr "Gjenta topptekstrader"
#: WriterCommands.xcu
msgctxt ""
@@ -23918,7 +23767,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Rows Above"
-msgstr ""
+msgstr "Sett inn rader over"
#: WriterCommands.xcu
msgctxt ""
@@ -23927,7 +23776,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Rows ~Above"
-msgstr ""
+msgstr "Rader ~over"
#: WriterCommands.xcu
msgctxt ""
@@ -23945,7 +23794,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Rows Below"
-msgstr ""
+msgstr "Sett inn rader under"
#: WriterCommands.xcu
msgctxt ""
@@ -23954,7 +23803,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Rows ~Below"
-msgstr ""
+msgstr "Rader ~under"
#: WriterCommands.xcu
msgctxt ""
@@ -23966,14 +23815,13 @@ msgid "~Columns..."
msgstr "~Kolonner …"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertColumnsBefore\n"
"Label\n"
"value.text"
msgid "Insert Columns Left"
-msgstr "Sett inn ~kolonner"
+msgstr "Sett inn kolonner venstre"
#: WriterCommands.xcu
msgctxt ""
@@ -23982,7 +23830,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Columns ~Left"
-msgstr ""
+msgstr "Kolonner ~venstre"
#: WriterCommands.xcu
msgctxt ""
@@ -23994,7 +23842,6 @@ msgid "Insert Column"
msgstr "Sett inn kolonne"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:InsertColumnsAfter\n"
@@ -24010,7 +23857,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Columns R~ight"
-msgstr ""
+msgstr "Kolonner høyre"
#: WriterCommands.xcu
msgctxt ""
@@ -24058,14 +23905,13 @@ msgid "~Columns"
msgstr "~Kolonner"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:DeleteTable\n"
"Label\n"
"value.text"
msgid "Delete Table"
-msgstr "Velg tabell"
+msgstr "Slett tabell"
#: WriterCommands.xcu
msgctxt ""
@@ -24119,7 +23965,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Optimize Size"
-msgstr ""
+msgstr "Optimer størrelse"
#: WriterCommands.xcu
msgctxt ""
@@ -24140,14 +23986,13 @@ msgid "To Character Left"
msgstr "Tegn til venstre"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:IndexEntryDialog\n"
"Label\n"
"value.text"
msgid "~Index Entry..."
-msgstr "Indeksoppf~øring …"
+msgstr "~Indeksoppføring …"
#: WriterCommands.xcu
msgctxt ""
@@ -24177,24 +24022,22 @@ msgid "~Row"
msgstr "~Rad"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:EntireCell\n"
"Label\n"
"value.text"
msgid "Select Cell"
-msgstr "Merk alt"
+msgstr "Merk celle"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:EntireCell\n"
"ContextLabel\n"
"value.text"
msgid "C~ell"
-msgstr "~Celler"
+msgstr "Celle"
#: WriterCommands.xcu
msgctxt ""
@@ -24215,7 +24058,6 @@ msgid "Select Column"
msgstr "Velg kolonne"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:EntireColumn\n"
@@ -24324,7 +24166,6 @@ msgid "Calculate Table"
msgstr "Beregne tabell"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:UnsetCellsReadOnly\n"
@@ -24745,7 +24586,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Jump To Specific Page"
-msgstr ""
+msgstr "Gå til spesifik side"
#: WriterCommands.xcu
msgctxt ""
@@ -24784,14 +24625,13 @@ msgid "Extended Selection On"
msgstr "Utvidet merking på"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:EditFootnote\n"
"Label\n"
"value.text"
msgid "~Footnote or Endnote..."
-msgstr "~Fotnote/sluttnote …"
+msgstr "~Fotnote eller sluttnote …"
#: WriterCommands.xcu
msgctxt ""
@@ -24893,7 +24733,6 @@ msgid "To Next Bookmark"
msgstr "Til neste bokmerke"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:NumberFormatDate\n"
@@ -25281,14 +25120,13 @@ msgid "Increment Indent Value"
msgstr "Større innrykksverdi"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:DistributeRows\n"
"Label\n"
"value.text"
msgid "Distribute Rows Evenly"
-msgstr "~Fordel kolonner jevnt"
+msgstr "Fordel kolonner jevnt"
#: WriterCommands.xcu
msgctxt ""
@@ -25342,7 +25180,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Break Across Pages"
-msgstr ""
+msgstr "~Del over sider"
#: WriterCommands.xcu
msgctxt ""
@@ -25525,7 +25363,6 @@ msgid "Select Text"
msgstr "Merk tekst"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:Ruler\n"
@@ -25550,7 +25387,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "View Images and Charts"
-msgstr ""
+msgstr "Vis bilede og diagram"
#: WriterCommands.xcu
msgctxt ""
@@ -25559,7 +25396,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Images and Charts"
-msgstr ""
+msgstr "~Bilde og diagram"
#: WriterCommands.xcu
msgctxt ""
@@ -25589,7 +25426,6 @@ msgid "~Thesaurus..."
msgstr "S~ynonymordbok …"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:BackColor\n"
@@ -25653,7 +25489,6 @@ msgid "Add Unknown Words"
msgstr "Legg til ukjente ord"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:HScroll\n"
@@ -25687,7 +25522,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hide Whitespac~e"
-msgstr ""
+msgstr "Gjem blanketegn"
#: WriterCommands.xcu
msgctxt ""
@@ -25834,7 +25669,6 @@ msgid "~Select"
msgstr "~Velg"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:TableAutoFitMenu\n"
@@ -25868,17 +25702,16 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table of Contents and Inde~x"
-msgstr ""
+msgstr "Innholdsliste og register"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:FormatAllNotes\n"
"Label\n"
"value.text"
msgid "Comments..."
-msgstr "~Merknader …"
+msgstr "Merknader …"
#: WriterCommands.xcu
msgctxt ""
@@ -26007,7 +25840,6 @@ msgid "Forward"
msgstr "Framover"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Horizontal Line&amp;FamilyName:string=ParagraphStyles\n"
@@ -26023,10 +25855,9 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default ~Paragraph"
-msgstr ""
+msgstr "Standard paragraf"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Title&amp;FamilyName:string=ParagraphStyles\n"
@@ -26036,14 +25867,13 @@ msgid "~Title"
msgstr "~Tittel"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Subtitle&amp;FamilyName:string=ParagraphStyles\n"
"Label\n"
"value.text"
msgid "Su~btitle"
-msgstr "~Undertittel …"
+msgstr "Undertittel"
#: WriterCommands.xcu
msgctxt ""
@@ -26052,7 +25882,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading ~1"
-msgstr ""
+msgstr "Overskrift ~1"
#: WriterCommands.xcu
msgctxt ""
@@ -26061,7 +25891,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading ~2"
-msgstr ""
+msgstr "Overskrift ~2"
#: WriterCommands.xcu
msgctxt ""
@@ -26070,7 +25900,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading ~3"
-msgstr ""
+msgstr "Overskrift ~3"
#: WriterCommands.xcu
msgctxt ""
@@ -26079,7 +25909,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading ~4"
-msgstr ""
+msgstr "Overskrift ~4"
#: WriterCommands.xcu
msgctxt ""
@@ -26088,7 +25918,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading ~5"
-msgstr ""
+msgstr "Overskrift ~5"
#: WriterCommands.xcu
msgctxt ""
@@ -26097,7 +25927,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading ~6"
-msgstr ""
+msgstr "Overskrift ~6"
#: WriterCommands.xcu
msgctxt ""
@@ -26106,7 +25936,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Quotations"
-msgstr ""
+msgstr "~Sitat"
#: WriterCommands.xcu
msgctxt ""
@@ -26115,17 +25945,16 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Pre~formatted Text"
-msgstr ""
+msgstr "Pre~formatert Tekst"
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Popups..uno:StyleApply?Style:string=Text body&amp;FamilyName:string=ParagraphStyles\n"
"Label\n"
"value.text"
msgid "Text Body"
-msgstr "Tekstfelt"
+msgstr "Brødtekst"
#: WriterCommands.xcu
msgctxt ""
@@ -26134,7 +25963,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default ~Character"
-msgstr ""
+msgstr "Standard tegn"
#: WriterCommands.xcu
msgctxt ""
@@ -26143,7 +25972,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "E~mphasis"
-msgstr ""
+msgstr "Framheving"
#: WriterCommands.xcu
msgctxt ""
@@ -26152,7 +25981,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Strong Emphasis"
-msgstr ""
+msgstr "~Sterk utheving"
#: WriterCommands.xcu
msgctxt ""
@@ -26161,7 +25990,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Qu~otation"
-msgstr ""
+msgstr "Sitat"
#: WriterCommands.xcu
msgctxt ""
@@ -26170,7 +25999,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sou~rce Text"
-msgstr ""
+msgstr "Kildetekst"
#: WriterCommands.xcu
msgctxt ""
@@ -26179,7 +26008,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Apply Paragraph Style"
-msgstr ""
+msgstr "Bruk avsnittsstil"
#: WriterFormWindowState.xcu
msgctxt ""
@@ -27838,14 +27667,13 @@ msgid "Logo"
msgstr "Logo"
#: WriterWindowState.xcu
-#, fuzzy
msgctxt ""
"WriterWindowState.xcu\n"
"..WriterWindowState.UIElements.States.private:resource/toolbar/changes\n"
"UIName\n"
"value.text"
msgid "Track Changes"
-msgstr "~Spor endringer"
+msgstr "Spor endringer"
#: XFormsWindowState.xcu
msgctxt ""
diff --git a/source/nb/readlicense_oo/docs.po b/source/nb/readlicense_oo/docs.po
index 0eb1759303c..7fa6b2a264e 100644
--- a/source/nb/readlicense_oo/docs.po
+++ b/source/nb/readlicense_oo/docs.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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-08-22 06:54+0000\n"
-"Last-Translator: Klaus Ade Johnstad <klausade@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 22:39+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440226460.000000\n"
+"X-POOTLE-MTIME: 1457476760.000000\n"
#: readme.xrm
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"Linuxi3a\n"
"readmeitem.text"
msgid "There is a wide variety of Linux distributions, and there may be different installation options (KDE vs Gnome, etc.) available from the same Linux vendor. Some distributions ship with their own “native” version of ${PRODUCTNAME}, which may have different features from this community-supplied version of ${PRODUCTNAME}. In many cases, you can install the community-supplied ${PRODUCTNAME} alongside a native version. However, you may prefer to remove the “native” version before installing this community-supplied version. For details on how to do that, please consult the user help resources provided by your particular Linux vendor."
-msgstr "Det finnes mange Linux-distribusjoner, og installasjonalternativene kan variere hos de forskjellige leverandørene (KDE kontra GNOME osv). Enkelte distribusjoner kommer med deres «egen versjon» av ${PRODUCTNAME}, som kan være forskjellig fra versjonen miljøet gir ut. I mange tilfeller kan både versjonen av ${PRODUCTNAME} fra miljøet og den fra distribusjonen installeres side om side, men det kan hende at det er ønskelig å fjerne versjonen som fulgte med før installasjon. For detaljert informasjon om hvordan dette gjøres, kontroller brukerveiledningen fra Linux-leverandøren."
+msgstr "Det finnes mange Linux-distribusjoner, og installasjonalternativene kan variere hos de forskjellige leverandørene (KDE kontra GNOME osv). Enkelte distribusjoner kommer med deres «egen versjon» av ${PRODUCTNAME}, som kan være forskjellig fra versjonen miljøet gir ut. I mange tilfeller kan både versjonen av ${PRODUCTNAME} fra miljøet, og den fra distribusjonen installeres side om side, men det kan hende at det er ønskelig å fjerne versjonen som fulgte med før installasjon. For detaljert informasjon om hvordan dette gjøres, kontroller brukerveiledningen fra Linux-leverandøren."
#: readme.xrm
msgctxt ""
@@ -585,7 +585,6 @@ msgid "Shortcut Keys"
msgstr "Hurtigtaster"
#: readme.xrm
-#, fuzzy
msgctxt ""
"readme.xrm\n"
"w32e1\n"
@@ -703,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 "Systemet for rapportering, sporing og løsning av feil er for øyeblikket BugZilla, på <a href=\"https://bugs.freedesktop.org/\">https://bugs.freedesktop.org/</a>. Vi oppfordrer alle brukere som føler seg forpliktet, til å rapportere feil som måtte dukke opp på deres spesifikke plattform. Energisk feilrapportering er et av de mest verdifulle bidragene brukermiljøet kommer med i forhold til den pågående utviklingen og forbedringen av ${PRODUCTNAME}."
+msgstr "Vårt system for rapportering, sporing og retting av feil er for tiden Bugzillapå <a href=\"https://bugs.libreoffice.org/\">https://bugs.libreoffice.org/</a>. Vi oppfordrer alle brukere som føler seg forpliktet, til å rapportere feil som måtte dukke opp på deres spesifikke plattform. Energisk feilrapportering er et av de mest verdifulle bidragene brukermiljøet kommer med i forhold til den pågående utviklingen og forbedringen av ${PRODUCTNAME}."
#: readme.xrm
msgctxt ""
@@ -743,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 "Denne beste måten å bidra på er å abonnere på en eller flere av e-postlistene, følg med en stund og ta gradvis i bruk e-postarkivene for å gjøre deg kjent med mange av temaene dekket siden kildekoden til ${PRODUCTNAME} ble gjort tilgjengelig i oktober 2000. Når du føler deg klar, trenger du kun å sende en e-post der du introduserer deg selv og hoppe i det. Hvis du allerede er kjent med Åpen kildekode-prosjekter, ta en titt på lista over oppgaver på <a href=\"http://www.libreoffice.org/develop/\">http://www.libreoffice.org/develop/</a> og se om det er noe du kan hjelpe til med."
+msgstr "Hvis du ønsker å bidra, anbefaler vi å starte med ett abonnement på en eller flere av e-postlistene. Følg med en stund og ta gradvis i bruk e-postarkivene for å gjøre deg kjent med mange av temaene dekket siden kildekoden til ${PRODUCTNAME} ble gjort tilgjengelig i oktober 2000. Når du føler deg klar, trenger du kun å sende en e-post der du introduserer deg selv og hoppe i det. Hvis du allerede er kjent med Åpen kildekode-prosjekter, kan du ta en titt på lista med oppgaver <a href=\"http://www.libreoffice.org/develop/\">http://www.libreoffice.org/develop/</a> og se om det er noe du kan hjelpe til med."
#: readme.xrm
msgctxt ""
@@ -847,4 +846,4 @@ msgctxt ""
"w32e1\n"
"readmeitem.text"
msgid "Only shortcut keys (key combinations) not used by the operating system can be used in ${PRODUCTNAME}. If a key combination in ${PRODUCTNAME} does not work as described in the ${PRODUCTNAME} Help, check if that shortcut is already used by the operating system. To rectify such conflicts, you can change the keys assigned by your operating system. Alternatively, you can change almost any key assignment in ${PRODUCTNAME}. For more information on this topic, refer to the ${PRODUCTNAME} Help or the Help documention of your operating system."
-msgstr "Bare hurtigtaster (tastekombinasjoner) som ikke blir brukt i operativsystemet kan brukes i ${PRODUCTNAME}. Dersom en tastekombinasjon i ${PRODUCTNAME} ikke virker som det står i hjelpetekstene, se om hurtigtasten allerede er i bruk av operativsystemet. For å løse slike konflikter kan du endre tastetilordningene i operativsystemet ditt. Du kan også endre nesten alle tastekombinasjonene i ${PRODUCTNAME}. For mer informasjon om dette emnet, se hjelpen i ${PRODUCTNAME} eller dokumentasjonen for operativsystemet ditt."
+msgstr "Bare hurtigtaster (tastekombinasjoner) som ikke blir brukt i operativsystemet kan brukes i ${PRODUCTNAME}. Dersom en tastekombinasjon i ${PRODUCTNAME} ikke virker som det står i hjelpetekstene, sjekk om hurtigtasten allerede er i bruk av operativsystemet. For å løse slike konflikter kan du endre tastetilordningene i operativsystemet ditt. Du kan også endre nesten alle tastekombinasjonene i ${PRODUCTNAME}. For mer informasjon om dette emnet, se hjelpen i ${PRODUCTNAME} eller dokumentasjonen for operativsystemet ditt."
diff --git a/source/nb/reportdesign/uiconfig/dbreport/ui.po b/source/nb/reportdesign/uiconfig/dbreport/ui.po
index e558c95a6ae..edb8ac2b232 100644
--- a/source/nb/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/nb/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-19 08:23+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2016-03-09 18:46+0000\n"
+"Last-Translator: Olav Dahlum <olav.dahlum@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416385422.000000\n"
+"X-POOTLE-MTIME: 1457549164.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Highlighting"
-msgstr ""
+msgstr "Utheving"
#: chardialog.ui
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Conditional Formatting"
-msgstr ""
+msgstr "Vilkårsformatering"
#: conditionwin.ui
msgctxt ""
@@ -113,7 +113,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Field Value Is"
-msgstr ""
+msgstr "Feltverdien er"
#: conditionwin.ui
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Expression Is"
-msgstr ""
+msgstr "Utrykket er"
#: conditionwin.ui
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "between"
-msgstr ""
+msgstr "mellom"
#: conditionwin.ui
msgctxt ""
@@ -140,7 +140,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "not between"
-msgstr ""
+msgstr "ikke mellom"
#: conditionwin.ui
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "equal to"
-msgstr ""
+msgstr "lik"
#: conditionwin.ui
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "not equal to"
-msgstr ""
+msgstr "Er ikke lik"
#: conditionwin.ui
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "greater than"
-msgstr ""
+msgstr "større enn"
#: conditionwin.ui
msgctxt ""
@@ -176,7 +176,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "less than"
-msgstr ""
+msgstr "mindre enn"
#: conditionwin.ui
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "greater than or equal to"
-msgstr ""
+msgstr "større enn eller lik "
#: conditionwin.ui
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "less than or equal to"
-msgstr ""
+msgstr "mindre enn eller lik"
#: conditionwin.ui
msgctxt ""
@@ -203,7 +203,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -212,7 +212,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "and"
-msgstr ""
+msgstr "og"
#: conditionwin.ui
msgctxt ""
@@ -221,7 +221,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bold"
-msgstr ""
+msgstr "Fet"
#: conditionwin.ui
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Italic"
-msgstr ""
+msgstr "Kursiv"
#: conditionwin.ui
msgctxt ""
@@ -248,7 +248,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Underline"
-msgstr ""
+msgstr "Understreking"
#: conditionwin.ui
msgctxt ""
@@ -257,7 +257,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Background Color"
-msgstr ""
+msgstr "Bakgrunnsfarge"
#: conditionwin.ui
msgctxt ""
@@ -266,7 +266,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Font Color"
-msgstr ""
+msgstr "Skriftfarge"
#: conditionwin.ui
msgctxt ""
@@ -275,7 +275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Character Formatting"
-msgstr ""
+msgstr "Tegnformatering"
#: conditionwin.ui
msgctxt ""
@@ -284,7 +284,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
@@ -293,7 +293,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "+"
-msgstr ""
+msgstr "+"
#: datetimedialog.ui
msgctxt ""
@@ -347,7 +347,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Report navigator"
-msgstr ""
+msgstr "Rapport navigator"
#: floatingsort.ui
msgctxt ""
@@ -356,7 +356,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Sorting and Grouping"
-msgstr ""
+msgstr "Sortering og gruppering"
#: floatingsort.ui
msgctxt ""
@@ -365,7 +365,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Group actions"
-msgstr ""
+msgstr "Gruppehandlinger"
#: floatingsort.ui
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move up"
-msgstr ""
+msgstr "Flytt opp"
#: floatingsort.ui
msgctxt ""
@@ -383,7 +383,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move down"
-msgstr ""
+msgstr "Flytt ned"
#: floatingsort.ui
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete"
-msgstr ""
+msgstr "Slett"
#: floatingsort.ui
msgctxt ""
@@ -401,7 +401,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Groups"
-msgstr ""
+msgstr "Grupper"
#: floatingsort.ui
msgctxt ""
@@ -410,7 +410,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sorting"
-msgstr ""
+msgstr "Sortering"
#: floatingsort.ui
msgctxt ""
@@ -419,7 +419,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Group Header"
-msgstr ""
+msgstr "Gruppehode"
#: floatingsort.ui
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Group Footer"
-msgstr ""
+msgstr "Bunntekst for gruppa"
#: floatingsort.ui
msgctxt ""
@@ -437,7 +437,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Group On"
-msgstr ""
+msgstr "Gruper etter"
#: floatingsort.ui
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Group Interval"
-msgstr ""
+msgstr "Gruppeintervall"
#: floatingsort.ui
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Keep Together"
-msgstr ""
+msgstr "Hold sammen"
#: floatingsort.ui
msgctxt ""
@@ -464,7 +464,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Ascending"
-msgstr ""
+msgstr "Stigende"
#: floatingsort.ui
msgctxt ""
@@ -473,7 +473,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Descending"
-msgstr ""
+msgstr "Minkende"
#: floatingsort.ui
msgctxt ""
@@ -482,7 +482,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Present"
-msgstr ""
+msgstr "Tilgjengelig"
#: floatingsort.ui
msgctxt ""
@@ -491,7 +491,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Not present"
-msgstr ""
+msgstr "Ikke tilgjengelig"
#: floatingsort.ui
msgctxt ""
@@ -500,7 +500,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "No"
-msgstr ""
+msgstr "Nei"
#: floatingsort.ui
msgctxt ""
@@ -509,7 +509,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Whole Group"
-msgstr ""
+msgstr "Hele gruppa"
#: floatingsort.ui
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "With First Detail"
-msgstr ""
+msgstr "Med første detalj"
#: floatingsort.ui
msgctxt ""
@@ -527,7 +527,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Present"
-msgstr ""
+msgstr "Tilgjengelig"
#: floatingsort.ui
msgctxt ""
@@ -536,7 +536,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Not present"
-msgstr ""
+msgstr "Ikke tilgjengelig"
#: floatingsort.ui
msgctxt ""
@@ -545,7 +545,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Each Value"
-msgstr ""
+msgstr "Hver verdi"
#: floatingsort.ui
msgctxt ""
@@ -554,7 +554,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Properties"
-msgstr ""
+msgstr "Egenskaper"
#: floatingsort.ui
msgctxt ""
@@ -563,7 +563,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Help"
-msgstr ""
+msgstr "Hjelp"
#: pagedialog.ui
msgctxt ""
diff --git a/source/nb/sc/source/ui/StatisticsDialogs.po b/source/nb/sc/source/ui/StatisticsDialogs.po
index 8ab58cfcc3e..fe093c382bf 100644
--- a/source/nb/sc/source/ui/StatisticsDialogs.po
+++ b/source/nb/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: 2015-02-17 07:57+0000\n"
+"PO-Revision-Date: 2016-03-08 23:05+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1424159826.000000\n"
+"X-POOTLE-MTIME: 1457478308.000000\n"
#: StatisticsDialogs.src
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"STR_REGRESSION_UNDO_NAME\n"
"string.text"
msgid "Regression"
-msgstr ""
+msgstr "Regresjon"
#: StatisticsDialogs.src
msgctxt ""
@@ -599,7 +599,7 @@ msgctxt ""
"STR_REGRESSION\n"
"string.text"
msgid "Regression"
-msgstr ""
+msgstr "Regresjon"
#: StatisticsDialogs.src
msgctxt ""
@@ -716,7 +716,7 @@ msgctxt ""
"STR_LABEL_LINEAR\n"
"string.text"
msgid "Linear"
-msgstr ""
+msgstr "Linjær"
#: StatisticsDialogs.src
msgctxt ""
@@ -725,7 +725,7 @@ msgctxt ""
"STR_LABEL_LOGARITHMIC\n"
"string.text"
msgid "Logarithmic"
-msgstr ""
+msgstr "Logaritmisk"
#: StatisticsDialogs.src
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"STR_LABEL_POWER\n"
"string.text"
msgid "Power"
-msgstr ""
+msgstr "Potens"
#: StatisticsDialogs.src
msgctxt ""
@@ -743,7 +743,7 @@ msgctxt ""
"STR_LABEL_REGRESSION_MODEL\n"
"string.text"
msgid "Regression Model"
-msgstr ""
+msgstr "Regresjonsmodell"
#: StatisticsDialogs.src
msgctxt ""
@@ -752,7 +752,7 @@ msgctxt ""
"STR_LABEL_RSQUARED\n"
"string.text"
msgid "R^2"
-msgstr ""
+msgstr "R^2"
#: StatisticsDialogs.src
msgctxt ""
@@ -761,7 +761,7 @@ msgctxt ""
"STR_LABEL_SLOPE\n"
"string.text"
msgid "Slope"
-msgstr ""
+msgstr "Stigningstall"
#: StatisticsDialogs.src
msgctxt ""
@@ -770,7 +770,7 @@ msgctxt ""
"STR_LABEL_INTERCEPT\n"
"string.text"
msgid "Intercept"
-msgstr ""
+msgstr "Avskjær"
#: StatisticsDialogs.src
msgctxt ""
diff --git a/source/nb/sc/source/ui/cctrl.po b/source/nb/sc/source/ui/cctrl.po
index 652636cef54..36a779e5bee 100644
--- a/source/nb/sc/source/ui/cctrl.po
+++ b/source/nb/sc/source/ui/cctrl.po
@@ -4,16 +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: 2011-04-05 11:11+0200\n"
-"Last-Translator: Olav <odahlum@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 22:41+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457476916.000000\n"
#: checklistmenu.src
msgctxt ""
@@ -76,4 +77,4 @@ msgctxt ""
"STR_EDIT_SEARCH_ITEMS\n"
"string.text"
msgid "Search items..."
-msgstr ""
+msgstr "Søkeelement..."
diff --git a/source/nb/sc/source/ui/drawfunc.po b/source/nb/sc/source/ui/drawfunc.po
index f7d88e4335f..1d9f7bebc96 100644
--- a/source/nb/sc/source/ui/drawfunc.po
+++ b/source/nb/sc/source/ui/drawfunc.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: 2015-05-13 03:20+0000\n"
+"PO-Revision-Date: 2016-03-08 22:42+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431487221.000000\n"
+"X-POOTLE-MTIME: 1457476933.000000\n"
#: drformsh.src
msgctxt ""
@@ -282,10 +282,9 @@ msgctxt ""
"RID_IMAGE_SUBMENU\n"
"menuitem.text"
msgid "Image"
-msgstr ""
+msgstr "Bilde"
#: objdraw.src
-#, fuzzy
msgctxt ""
"objdraw.src\n"
"RID_POPUP_GRAPHIC.RID_POPUP_CHART\n"
diff --git a/source/nb/sc/source/ui/sidebar.po b/source/nb/sc/source/ui/sidebar.po
index b44e32ad9b5..3a2084e6f51 100644
--- a/source/nb/sc/source/ui/sidebar.po
+++ b/source/nb/sc/source/ui/sidebar.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-05-11 16:12+0200\n"
-"PO-Revision-Date: 2013-12-12 01:05+0000\n"
-"Last-Translator: Olav <odahlum@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 22:42+0000\n"
+"Last-Translator: system user <>\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1386810323.0\n"
+"X-POOTLE-MTIME: 1457476972.000000\n"
#: CellAppearancePropertyPanel.src
msgctxt ""
@@ -211,7 +211,7 @@ msgctxt ""
"RID_SFX_STR_THOUSAND_SEP\n"
"string.text"
msgid "Thousands separator"
-msgstr ""
+msgstr "Tusenskille"
#: NumberFormatPropertyPanel.src
msgctxt ""
@@ -219,4 +219,4 @@ msgctxt ""
"RID_SFX_STR_ENGINEERING\n"
"string.text"
msgid "Engineering notation"
-msgstr ""
+msgstr "Teknisk notasjon"
diff --git a/source/nb/sc/source/ui/src.po b/source/nb/sc/source/ui/src.po
index 5c9d7430282..df0a39eeb5e 100644
--- a/source/nb/sc/source/ui/src.po
+++ b/source/nb/sc/source/ui/src.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: 2015-12-11 12:57+0100\n"
-"PO-Revision-Date: 2015-08-22 06:56+0000\n"
-"Last-Translator: Klaus Ade Johnstad <klausade@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 23:04+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440226580.000000\n"
+"X-POOTLE-MTIME: 1457478268.000000\n"
#: condformatdlg.src
msgctxt ""
@@ -536,10 +536,9 @@ msgctxt ""
"FT_VAL\n"
"fixedtext.text"
msgid "Enter a value!"
-msgstr ""
+msgstr "Skriv inn en verdi"
#: condformatdlg.src
-#, fuzzy
msgctxt ""
"condformatdlg.src\n"
"RID_COND_ENTRY\n"
@@ -738,14 +737,13 @@ msgid "3 Symbols 2"
msgstr "3 Symboler 2"
#: condformatdlg.src
-#, fuzzy
msgctxt ""
"condformatdlg.src\n"
"RID_COND_ENTRY.LB_ICONSET_TYPE\n"
"3 Smileys\n"
"stringlist.text"
msgid "3 Smileys"
-msgstr "3 smilefjes"
+msgstr "Tre smilefjes"
#: condformatdlg.src
msgctxt ""
@@ -754,7 +752,7 @@ msgctxt ""
"3 Stars\n"
"stringlist.text"
msgid "3 Stars"
-msgstr ""
+msgstr "Tre stjerner"
#: condformatdlg.src
msgctxt ""
@@ -763,17 +761,16 @@ msgctxt ""
"3 Triangles\n"
"stringlist.text"
msgid "3 Triangles"
-msgstr ""
+msgstr "Tre trekanter"
#: condformatdlg.src
-#, fuzzy
msgctxt ""
"condformatdlg.src\n"
"RID_COND_ENTRY.LB_ICONSET_TYPE\n"
"3 Colored Smileys\n"
"stringlist.text"
msgid "3 Colored Smileys"
-msgstr "3 fargede smilefjes"
+msgstr "Tre fargede smilefjes"
#: condformatdlg.src
msgctxt ""
@@ -863,7 +860,7 @@ msgctxt ""
"5 Boxes\n"
"stringlist.text"
msgid "5 Boxes"
-msgstr ""
+msgstr "Fem bokser"
#: condformatdlg.src
msgctxt ""
@@ -2240,7 +2237,7 @@ msgctxt ""
"STR_ROWCOL_SELCOUNT\n"
"string.text"
msgid "$1 rows, $2 columns selected"
-msgstr ""
+msgstr "$1 rader, $2 kolonner valgte"
#: globstr.src
msgctxt ""
@@ -4345,7 +4342,6 @@ msgid "#1 inserted"
msgstr "#1 ble satt inn"
#: globstr.src
-#, fuzzy
msgctxt ""
"globstr.src\n"
"RID_GLOBSTR\n"
@@ -4930,7 +4926,7 @@ msgctxt ""
"STR_HEADER_RANGE_OR_EXPR\n"
"string.text"
msgid "Range or formula expression"
-msgstr ""
+msgstr "Område- eller formeluttrykk"
#: globstr.src
msgctxt ""
@@ -5590,7 +5586,7 @@ msgctxt ""
"STR_CTRLCLICKHYPERLINK\n"
"string.text"
msgid "%s-Click to follow link:"
-msgstr ""
+msgstr "%s-klikk for å følge lenke:"
#: globstr.src
msgctxt ""
@@ -5644,7 +5640,7 @@ msgctxt ""
"STR_UNQUOTED_STRING\n"
"string.text"
msgid "Strings without quotes are interpreted as column/row labels."
-msgstr ""
+msgstr "Strengar uten hermetegn blir tolket som kolonne-/rad-etiketter."
#: globstr.src
msgctxt ""
@@ -5653,7 +5649,7 @@ msgctxt ""
"STR_ENTER_VALUE\n"
"string.text"
msgid "Enter a value!"
-msgstr ""
+msgstr "Skriv inn en verdi!"
#: globstr.src
msgctxt ""
@@ -5662,7 +5658,7 @@ msgctxt ""
"STR_TABLE_COUNT\n"
"string.text"
msgid "Sheet %1 of %2"
-msgstr ""
+msgstr "Ark %1 av %2"
#: hdrcont.src
msgctxt ""
@@ -5710,7 +5706,6 @@ msgid "P~aste Special..."
msgstr "L~im inn utvalg …"
#: hdrcont.src
-#, fuzzy
msgctxt ""
"hdrcont.src\n"
"RID_POPUP_ROWHEADER\n"
@@ -5726,7 +5721,7 @@ msgctxt ""
"FID_INS_ROWS_AFTER\n"
"menuitem.text"
msgid "Insert Rows ~Below"
-msgstr ""
+msgstr "Sett inn rader ~under"
#: hdrcont.src
msgctxt ""
@@ -5735,7 +5730,7 @@ msgctxt ""
"SID_DEL_ROWS\n"
"menuitem.text"
msgid "~Delete Rows"
-msgstr ""
+msgstr "~Slett rader"
#: hdrcont.src
msgctxt ""
@@ -5744,7 +5739,7 @@ msgctxt ""
"SID_DELETE\n"
"menuitem.text"
msgid "Cl~ear Contents..."
-msgstr ""
+msgstr "Slett innholdet …"
#: hdrcont.src
msgctxt ""
@@ -5756,7 +5751,6 @@ msgid "Row Hei~ght..."
msgstr "Rad~høyde …"
#: hdrcont.src
-#, fuzzy
msgctxt ""
"hdrcont.src\n"
"RID_POPUP_ROWHEADER\n"
@@ -5772,7 +5766,7 @@ msgctxt ""
"FID_ROW_HIDE\n"
"menuitem.text"
msgid "~Hide Rows"
-msgstr ""
+msgstr "~Gjem rader"
#: hdrcont.src
msgctxt ""
@@ -5781,37 +5775,34 @@ msgctxt ""
"FID_ROW_SHOW\n"
"menuitem.text"
msgid "~Show Rows"
-msgstr ""
+msgstr "~Vis rader"
#: hdrcont.src
-#, fuzzy
msgctxt ""
"hdrcont.src\n"
"RID_POPUP_COLHEADER\n"
"SID_PASTE_SPECIAL\n"
"menuitem.text"
msgid "P~aste Special..."
-msgstr "L~im inn utvalg …"
+msgstr "Lim inn utvalg …"
#: hdrcont.src
-#, fuzzy
msgctxt ""
"hdrcont.src\n"
"RID_POPUP_COLHEADER\n"
"FID_INS_COLUMNS_BEFORE\n"
"menuitem.text"
msgid "Insert Columns ~Left"
-msgstr "S~ett inn kolonner til venstre"
+msgstr "Sett inn kolonner til venstre"
#: hdrcont.src
-#, fuzzy
msgctxt ""
"hdrcont.src\n"
"RID_POPUP_COLHEADER\n"
"FID_INS_COLUMNS_AFTER\n"
"menuitem.text"
msgid "Insert Columns ~Right"
-msgstr "S~ett inn kolonner til venstre"
+msgstr "Sett inn kolonner til venstre"
#: hdrcont.src
msgctxt ""
@@ -5820,7 +5811,7 @@ msgctxt ""
"SID_DEL_COLS\n"
"menuitem.text"
msgid "~Delete Columns"
-msgstr ""
+msgstr "~Slett kolonner"
#: hdrcont.src
msgctxt ""
@@ -5829,20 +5820,18 @@ msgctxt ""
"SID_DELETE\n"
"menuitem.text"
msgid "Cl~ear Contents..."
-msgstr ""
+msgstr "Slett innholdet …"
#: hdrcont.src
-#, fuzzy
msgctxt ""
"hdrcont.src\n"
"RID_POPUP_COLHEADER\n"
"FID_COL_WIDTH\n"
"menuitem.text"
msgid "Column ~Width..."
-msgstr "K~olonnebredde …"
+msgstr "Kolonnebredde …"
#: hdrcont.src
-#, fuzzy
msgctxt ""
"hdrcont.src\n"
"RID_POPUP_COLHEADER\n"
@@ -5858,7 +5847,7 @@ msgctxt ""
"FID_COL_HIDE\n"
"menuitem.text"
msgid "~Hide Columns"
-msgstr ""
+msgstr "~Gjem kolonner"
#: hdrcont.src
msgctxt ""
@@ -5867,7 +5856,7 @@ msgctxt ""
"FID_COL_SHOW\n"
"menuitem.text"
msgid "~Show Columns"
-msgstr ""
+msgstr "~Vis kolonner"
#: popup.src
msgctxt ""
@@ -5992,7 +5981,7 @@ msgctxt ""
"SID_DELETE\n"
"menuitem.text"
msgid "Cl~ear Contents..."
-msgstr ""
+msgstr "Slett innholdet …"
#: popup.src
msgctxt ""
@@ -6022,7 +6011,6 @@ msgid "Insert Co~mment"
msgstr "S~ett inn merknad"
#: popup.src
-#, fuzzy
msgctxt ""
"popup.src\n"
"RID_POPUP_CELLS\n"
@@ -6136,7 +6124,7 @@ msgctxt ""
"FID_TAB_TOGGLE_GRID\n"
"menuitem.text"
msgid "Sheet ~Gridlines"
-msgstr ""
+msgstr "Rutenettlinjer i ark"
#: popup.src
msgctxt ""
@@ -7811,7 +7799,6 @@ msgid "Method used to form differences: Type = 0 denotes US method (NASD), Type
msgstr "Metoden som brukes for å beregne forskjellene: Type=0 bruker den amerikanske metoden (NASD), Type=1 bruker den europeiske metoden."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_NETWORKDAYS\n"
@@ -7863,7 +7850,7 @@ msgctxt ""
"6\n"
"string.text"
msgid "list of dates"
-msgstr ""
+msgstr "datoliste"
#: scfuncs.src
msgctxt ""
@@ -7875,7 +7862,6 @@ msgid "Optional set of one or more dates to be considered as holiday."
msgstr "Valgfritt sett med en eller flere datoer som skal oppfattes som helgedag(er)."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_NETWORKDAYS\n"
@@ -7891,7 +7877,7 @@ msgctxt ""
"9\n"
"string.text"
msgid "Optional list of numbers to indicate working (0) and weekend (non-zero) days. When omitted, weekend is Saturday and Sunday."
-msgstr ""
+msgstr "Valgfri liste med tall som viser arbeids- (0) og ukesluttdager (ikke null). Dersom denne er sløyfet, er ukeslutt lørdag og søndag."
#: scfuncs.src
msgctxt ""
@@ -8272,7 +8258,6 @@ msgid "Determines the current date of the computer."
msgstr "Gir gjeldende dato for datamaskinen."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_GET_DAY_OF_WEEK\n"
@@ -8495,7 +8480,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "Indicates the first day of the week and when week 1 starts."
-msgstr ""
+msgstr "Bestemmer hva som er første dag i uka og når uke 1 begynner."
#: scfuncs.src
msgctxt ""
@@ -8504,10 +8489,9 @@ msgctxt ""
"1\n"
"string.text"
msgid "Calculates the ISO 8601 calendar week for the given date."
-msgstr ""
+msgstr "Regner ut ukenummeret i ISO 8601-kalenderen for en gitt dato."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_ISOWEEKNUM\n"
@@ -8517,7 +8501,6 @@ msgid "Number"
msgstr "Tall"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_ISOWEEKNUM\n"
@@ -9370,7 +9353,7 @@ msgctxt ""
"8\n"
"string.text"
msgid "S"
-msgstr ""
+msgstr "S"
#: scfuncs.src
msgctxt ""
@@ -10495,7 +10478,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns TRUE if the value is an error value not equal to #N/A."
-msgstr "Gir SANN hvis verdien er en feilverdi som ikke er lik #I/T."
+msgstr "Gir tilbake SANN dersom verdien er en feilverdi som ikke er lik #I/T."
#: scfuncs.src
msgctxt ""
@@ -10801,7 +10784,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the data type of a value (1 = number, 2 = text, 4 = Boolean value, 8 = formula, 16 = error value, 64 = array)."
-msgstr ""
+msgstr "Returnerer datatypen for en verdi (1 = tall, 2 = tekst, 4 = logisk verdi, 8 = formel, 16 = feilverdi, 64 = tabell)."
#: scfuncs.src
msgctxt ""
@@ -13162,7 +13145,6 @@ msgid "The number to whose multiple the value is rounded."
msgstr "Verdien skal rundes av til et multiplum av dette tallet."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_CEIL_PRECISE\n"
@@ -13295,7 +13277,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "If given the number to whose multiple the value is rounded, else -1 or 1 depending on sign of Number."
-msgstr ""
+msgstr "Dersom oppgitt, blir verdien avrundet til multippel av dette tallet, ellers -1 eller 1 avhengig av fortegn til tallet."
#: scfuncs.src
msgctxt ""
@@ -13358,7 +13340,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "If given the number to whose multiple the value is rounded, else 1."
-msgstr ""
+msgstr "Dersom oppgitt, skal verdien rundest av til en multippel av dett tallet, ellers 1."
#: scfuncs.src
msgctxt ""
@@ -13376,7 +13358,7 @@ msgctxt ""
"7\n"
"string.text"
msgid "For negative numbers; if given and not equal to zero then rounds away from zero, else rounds towards zero."
-msgstr ""
+msgstr "For negative tall, hvis oppgitt og ulik null, rund av bort fra null ellers rund av mot null."
#: scfuncs.src
msgctxt ""
@@ -13433,7 +13415,6 @@ msgid "Mode"
msgstr "modus"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR\n"
@@ -13449,7 +13430,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Rounds number towards zero to the nearest multiple of absolute value of significance."
-msgstr ""
+msgstr "Runder av et tall mot null til den nærmeste multippel av absolutt verdi av signifikans"
#: scfuncs.src
msgctxt ""
@@ -13488,7 +13469,6 @@ msgid "The number to whose multiple the value is to be rounded down."
msgstr "Verdien skal rundes av ned til et multiplum av dette tallet."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n"
@@ -13498,7 +13478,6 @@ msgid "Rounds number down to the nearest multiple of significance, regardless of
msgstr "Runder et tall ned til nærmeste multippel av signifikans uavhengig av tegn på signifikans."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n"
@@ -13508,7 +13487,6 @@ msgid "Number"
msgstr "Tall"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n"
@@ -13518,7 +13496,6 @@ msgid "The number to be rounded down."
msgstr "Tallet som skal rundes av nedover."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n"
@@ -13528,7 +13505,6 @@ msgid "Significance"
msgstr "Signifikans"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n"
@@ -13538,14 +13514,13 @@ msgid "The number to whose multiple the value is to be rounded down."
msgstr "Verdien skal rundes av ned til et multiplum av dette tallet."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_MATH\n"
"6\n"
"string.text"
msgid "Mode"
-msgstr "modus"
+msgstr "Modus"
#: scfuncs.src
msgctxt ""
@@ -13554,20 +13529,18 @@ msgctxt ""
"7\n"
"string.text"
msgid "For negative numbers; if given and not equal to or less than zero rounds towards zero."
-msgstr ""
+msgstr "For negative nummer, hvis angitt og ikke lik eller mindre enn null rund av mot null."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_PRECISE\n"
"1\n"
"string.text"
msgid "Rounds number down (towards -∞) to the nearest multiple of significance."
-msgstr "Runder av et tall ned til nærmeste signifikante multiplum."
+msgstr "Runder av et tall ned (til-∞) nærmeste signifikante multiplum."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_PRECISE\n"
@@ -13577,7 +13550,6 @@ msgid "Number"
msgstr "Tall"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_PRECISE\n"
@@ -13587,7 +13559,6 @@ msgid "The number to be rounded down."
msgstr "Tallet som skal rundes av nedover."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS1.SC_OPCODE_FLOOR_PRECISE\n"
@@ -13603,7 +13574,7 @@ msgctxt ""
"5\n"
"string.text"
msgid "The number to whose multiple the value is to be rounded down. Sign has no meaning."
-msgstr ""
+msgstr "Verdien skal avrundes ned til et multiplum av dette tallet. Fortegn betyr ingenting"
#: scfuncs.src
msgctxt ""
@@ -14074,7 +14045,6 @@ msgid "Linear_type"
msgstr "lineær_type"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LINEST\n"
@@ -14156,7 +14126,6 @@ msgid "Function_type"
msgstr "funksjonstype"
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_LOGEST\n"
@@ -16542,7 +16511,6 @@ msgid "0 or FALSE calculates the probability density function. Any other value o
msgstr "0 eller USANN regner ut tetthetsfunksjonen. Alle andre verdier eller SANN, regner ut den kumulative fordelingsfunksjonen."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CRIT_BINOM\n"
@@ -20062,7 +20030,6 @@ msgid "The selection number taken from the elements."
msgstr "Utvalgsnummeret som er hentet fra elementene."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONFIDENCE\n"
@@ -20126,14 +20093,13 @@ msgid "The size of the population."
msgstr "Størrelsen på populasjonen."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONFIDENCE_N\n"
"1\n"
"string.text"
msgid "Returns a (1-alpha) confidence interval for a normal distribution."
-msgstr "Gir konfidensintervallet (1 alfa) for normalfordelinga."
+msgstr "Gir konfidensintervallet (1 alfa) for normalfordelingen."
#: scfuncs.src
msgctxt ""
@@ -20190,7 +20156,6 @@ msgid "The size of the population."
msgstr "Størrelsen på populasjonen."
#: scfuncs.src
-#, fuzzy
msgctxt ""
"scfuncs.src\n"
"RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_CONFIDENCE_T\n"
@@ -22071,7 +22036,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns a number corresponding to one of the error values or #N/A if no error exists"
-msgstr ""
+msgstr "Returnerer et tal som svarer til en av feilverdiene eller, #I/T dersom det ikke er feil"
#: scfuncs.src
msgctxt ""
@@ -22080,7 +22045,7 @@ msgctxt ""
"2\n"
"string.text"
msgid "expression"
-msgstr ""
+msgstr "uttrykk"
#: scfuncs.src
msgctxt ""
@@ -22089,7 +22054,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The error value whose identifying number you want to find. Can be the actual error value or a reference to a cell that you want to test."
-msgstr ""
+msgstr "Feilverdien du ønsker å finne identifiseringsnummeret for. Kan være den aktuelle feilverdien eller en referanse til ei celle som skal testest."
#: scfuncs.src
msgctxt ""
@@ -24457,7 +24422,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Return a URL-encoded string."
-msgstr ""
+msgstr "Returnerer ein nettadresse-koda streng."
#: scfuncs.src
msgctxt ""
@@ -24475,7 +24440,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "A string to be URL-encoded"
-msgstr ""
+msgstr "En streng som skal nettadresse-kodes"
#: scfuncs.src
msgctxt ""
@@ -25964,7 +25929,7 @@ msgctxt ""
"SCSTR_UNDO_PAGE_ANCHOR\n"
"string.text"
msgid "Page Anchor"
-msgstr ""
+msgstr "Sideanker"
#: scstring.src
msgctxt ""
@@ -25972,7 +25937,7 @@ msgctxt ""
"SCSTR_UNDO_CELL_ANCHOR\n"
"string.text"
msgid "Cell Anchor"
-msgstr ""
+msgstr "Celleanker"
#: scwarngs.src
msgctxt ""
diff --git a/source/nb/sc/uiconfig/scalc/ui.po b/source/nb/sc/uiconfig/scalc/ui.po
index 183cad6fd1e..2231b9bce22 100644
--- a/source/nb/sc/uiconfig/scalc/ui.po
+++ b/source/nb/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-08-22 06:56+0000\n"
-"Last-Translator: Klaus Ade Johnstad <klausade@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 23:13+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440226587.000000\n"
+"X-POOTLE-MTIME: 1457478838.000000\n"
#: advancedfilterdialog.ui
msgctxt ""
@@ -767,7 +767,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 "Noen av endringene i dette delte regnearket er i konflikt. Konflikten(e) må løses før regnearket kan lagres. Velg om du vil beholde dine egne eller bruke andre endringer."
#: conflictsdialog.ui
msgctxt ""
@@ -1415,7 +1415,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fill:"
-msgstr ""
+msgstr "Fyll:"
#: databaroptions.ui
msgctxt ""
@@ -1424,7 +1424,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Color"
-msgstr ""
+msgstr "Farge"
#: databaroptions.ui
msgctxt ""
@@ -1433,7 +1433,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Gradient"
-msgstr ""
+msgstr "Fargeovergang"
#: databaroptions.ui
msgctxt ""
@@ -1505,7 +1505,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Minimum bar length (%):"
-msgstr ""
+msgstr "Minste søylelengde (%):"
#: databaroptions.ui
msgctxt ""
@@ -1514,7 +1514,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Maximum bar length (%):"
-msgstr ""
+msgstr "Største søylelengde (%):"
#: databaroptions.ui
msgctxt ""
@@ -1523,7 +1523,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bar Lengths"
-msgstr ""
+msgstr "Søylelengder"
#: databaroptions.ui
msgctxt ""
@@ -1532,7 +1532,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Display bar only"
-msgstr ""
+msgstr "Vis bare søyle"
#: databaroptions.ui
msgctxt ""
@@ -1541,10 +1541,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "The minimum value must be less than the maximum value."
-msgstr ""
+msgstr "Den minste verdien må være mindre enn den største verdien."
#: databaroptions.ui
-#, fuzzy
msgctxt ""
"databaroptions.ui\n"
"custom_color\n"
@@ -1776,7 +1775,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Repeat item labels"
-msgstr ""
+msgstr "_Gjenta elementetiketter"
#: datafieldoptionsdialog.ui
msgctxt ""
@@ -2208,7 +2207,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Contains _totals row"
-msgstr ""
+msgstr "Inneholder _summeringrekke"
#: definedatabaserangedialog.ui
msgctxt ""
@@ -2298,7 +2297,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Range or formula expression:"
-msgstr ""
+msgstr "Område for formeluttrykk:"
#: definename.ui
msgctxt ""
@@ -3102,17 +3101,15 @@ msgid "Detailed Calculation Settings"
msgstr "Detaljerte innstillinger for utregning"
#: formulacalculationoptions.ui
-#, fuzzy
msgctxt ""
"formulacalculationoptions.ui\n"
"labelConvT2N\n"
"label\n"
"string.text"
msgid "Conversion from text to number:"
-msgstr "Konvertering fra tekst til tall"
+msgstr "Konvertering fra tekst til tall:"
#: formulacalculationoptions.ui
-#, fuzzy
msgctxt ""
"formulacalculationoptions.ui\n"
"checkEmptyAsZero\n"
@@ -3122,14 +3119,13 @@ msgid "Treat _empty string as zero"
msgstr "Behandle tomme strenger som null"
#: formulacalculationoptions.ui
-#, fuzzy
msgctxt ""
"formulacalculationoptions.ui\n"
"labelSyntaxRef\n"
"label\n"
"string.text"
msgid "Reference syntax for string reference:"
-msgstr "Referansesyntaks for strengreferanse"
+msgstr "Referansesyntaks for strengreferanse:"
#: formulacalculationoptions.ui
msgctxt ""
@@ -3159,7 +3155,6 @@ msgid "Treat as zero"
msgstr "Håndter som null"
#: formulacalculationoptions.ui
-#, fuzzy
msgctxt ""
"formulacalculationoptions.ui\n"
"comboConversion\n"
@@ -3184,7 +3179,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Apply those settings to current document only"
-msgstr ""
+msgstr "Bruk dsse innstillingene kun i gjeldende dokument"
#: formulacalculationoptions.ui
msgctxt ""
@@ -3193,7 +3188,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Contents to Numbers"
-msgstr ""
+msgstr "Innehold som tall"
#: formulacalculationoptions.ui
msgctxt ""
@@ -3265,20 +3260,18 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Test OpenCL"
-msgstr ""
+msgstr "_Test OpenCL"
#: formulacalculationoptions.ui
-#, fuzzy
msgctxt ""
"formulacalculationoptions.ui\n"
"CBUseOpenCL\n"
"label\n"
"string.text"
msgid "Use Open_CL only for a subset of operations"
-msgstr "Bruk OpenCL kun for del-operasjoner"
+msgstr "Bruk OpenCL kun for deloperasjoner"
#: formulacalculationoptions.ui
-#, fuzzy
msgctxt ""
"formulacalculationoptions.ui\n"
"label5\n"
@@ -3288,7 +3281,6 @@ msgid "Minimum data size for OpenCL use:"
msgstr "Minste datastørrelse for OpenCL-bruk"
#: formulacalculationoptions.ui
-#, fuzzy
msgctxt ""
"formulacalculationoptions.ui\n"
"label7\n"
@@ -3304,7 +3296,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "OpenCL Settings"
-msgstr ""
+msgstr "OpenCL-innstillinger"
#: goalseekdlg.ui
msgctxt ""
@@ -3325,14 +3317,13 @@ msgid "_Formula cell:"
msgstr "_Formelcelle:"
#: goalseekdlg.ui
-#, fuzzy
msgctxt ""
"goalseekdlg.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "Target _value:"
-msgstr "_til verdien:"
+msgstr "Målverdi:"
#: goalseekdlg.ui
msgctxt ""
@@ -4250,7 +4241,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Range or formula expression:"
-msgstr ""
+msgstr "Område for formeluttrykk:"
#: managenamesdialog.ui
msgctxt ""
@@ -4304,7 +4295,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "column"
-msgstr ""
+msgstr "kolonne"
#: movecopysheet.ui
msgctxt ""
@@ -6554,10 +6545,9 @@ msgctxt ""
"title\n"
"string.text"
msgid "Regression"
-msgstr ""
+msgstr "Regresjon"
#: regressiondialog.ui
-#, fuzzy
msgctxt ""
"regressiondialog.ui\n"
"variable1-range-label\n"
@@ -6567,7 +6557,6 @@ msgid "Variable 1 range:"
msgstr "Område for variabel 1:"
#: regressiondialog.ui
-#, fuzzy
msgctxt ""
"regressiondialog.ui\n"
"variable2-range-label\n"
@@ -6577,7 +6566,6 @@ msgid "Variable 2 range:"
msgstr "Område for variabel 2:"
#: regressiondialog.ui
-#, fuzzy
msgctxt ""
"regressiondialog.ui\n"
"output-range-label\n"
@@ -6587,7 +6575,6 @@ msgid "Results to:"
msgstr "Resultatene til:"
#: regressiondialog.ui
-#, fuzzy
msgctxt ""
"regressiondialog.ui\n"
"label1\n"
@@ -6597,7 +6584,6 @@ msgid "Data"
msgstr "Data"
#: regressiondialog.ui
-#, fuzzy
msgctxt ""
"regressiondialog.ui\n"
"groupedby-columns-radio\n"
@@ -6607,7 +6593,6 @@ msgid "Columns"
msgstr "Kolonner"
#: regressiondialog.ui
-#, fuzzy
msgctxt ""
"regressiondialog.ui\n"
"groupedby-rows-radio\n"
@@ -6617,7 +6602,6 @@ msgid "Rows"
msgstr "Rader"
#: regressiondialog.ui
-#, fuzzy
msgctxt ""
"regressiondialog.ui\n"
"label2\n"
@@ -6633,7 +6617,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Linear Regression"
-msgstr ""
+msgstr "Lineær regresjon"
#: regressiondialog.ui
msgctxt ""
@@ -6642,7 +6626,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Logarithmic Regression"
-msgstr ""
+msgstr "Logaritmisk regresjon"
#: regressiondialog.ui
msgctxt ""
@@ -6651,7 +6635,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Power Regression"
-msgstr ""
+msgstr "Potensregresjon"
#: regressiondialog.ui
msgctxt ""
@@ -6660,7 +6644,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Output Regression Types"
-msgstr ""
+msgstr "Regressjonstyper, resultat"
#: retypepassdialog.ui
msgctxt ""
@@ -6678,7 +6662,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "The document you are about to export has one or more protected items with password that cannot be exported. Please re-type your password to be able to export your document."
-msgstr ""
+msgstr "Dokumentet som skal eksporteres har en eller flere passordbeskytta oppføringer, disse kan ikke eksporteres. Skriv inn passordet på nytt for å eksportere dokumentet."
#: retypepassdialog.ui
msgctxt ""
@@ -7263,7 +7247,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Table"
-msgstr ""
+msgstr "Tabell"
#: selectdatasource.ui
msgctxt ""
@@ -7848,7 +7832,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Indent:"
-msgstr ""
+msgstr "_Innrykk:"
#: sidebaralignment.ui
msgctxt ""
@@ -7956,7 +7940,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Text Extension From Lower Cell Border"
-msgstr ""
+msgstr "Tekstutvidelse fra nedre cellekantlinje"
#: sidebaralignment.ui
msgctxt ""
@@ -7965,7 +7949,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Text Extension From Upper Cell Border"
-msgstr ""
+msgstr "Tekstutvidelse fra øvre cellekantlinje"
#: sidebaralignment.ui
msgctxt ""
@@ -7974,10 +7958,9 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Text Extension Inside Cell"
-msgstr ""
+msgstr "Tekstutvidelse inne i celle"
#: sidebaralignment.ui
-#, fuzzy
msgctxt ""
"sidebaralignment.ui\n"
"stacked\n"
@@ -7987,14 +7970,13 @@ msgid "Vertically stacked"
msgstr "Loddrett stablet"
#: sidebarcellappearance.ui
-#, fuzzy
msgctxt ""
"sidebarcellappearance.ui\n"
"cellbackgroundlabel\n"
"label\n"
"string.text"
msgid "_Background:"
-msgstr "Bakgrunn"
+msgstr "_Bakgrunn"
#: sidebarcellappearance.ui
msgctxt ""
@@ -8249,7 +8231,6 @@ msgid "Enter the maximum number of zeroes to display before the decimal point."
msgstr "Angi antallet nuller som skal vises før desimalpunktet."
#: sidebarnumberformat.ui
-#, fuzzy
msgctxt ""
"sidebarnumberformat.ui\n"
"negativenumbersred\n"
@@ -9615,7 +9596,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Number of Formula Groups:"
-msgstr ""
+msgstr "Tallet på formelgrupper:"
#: statisticsinfopage.ui
msgctxt ""
diff --git a/source/nb/scaddins/source/analysis.po b/source/nb/scaddins/source/analysis.po
index 74cdc095675..15200cf07ad 100644
--- a/source/nb/scaddins/source/analysis.po
+++ b/source/nb/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: 2014-05-15 11:49+0000\n"
+"PO-Revision-Date: 2016-03-08 23:20+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1400154577.000000\n"
+"X-POOTLE-MTIME: 1457479227.000000\n"
#: analysis.src
msgctxt ""
@@ -197,6 +197,8 @@ 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 ""
+"Returnerer nummeret på kalenderuka som den oppgjitte datoen finnes i.\n"
+"Denne funksjonen finnes for å kunne samsvare med eldre Microsoft Excel-dokumenter. Bruk UKENR i nyere dokument."
#: analysis.src
msgctxt ""
@@ -214,7 +216,7 @@ msgctxt ""
"3\n"
"string.text"
msgid "The date or date serial number"
-msgstr ""
+msgstr "Datoen eller serienummeret for datoen"
#: analysis.src
msgctxt ""
@@ -226,14 +228,13 @@ msgid "Return type"
msgstr "ukestart"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Weeknum\n"
"5\n"
"string.text"
msgid "Indicates the first day of the week (1 = Sunday, 2 = Monday)"
-msgstr "Bestemmer hva som er første dag i uka. (1 = søndag, andre verdier = mandag)."
+msgstr "Bestemmer hva som er første dag i uka. (1 = søndag, andre verdier = mandag)"
#: analysis.src
msgctxt ""
@@ -290,6 +291,8 @@ 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 ""
+"Returnerer tallet på arbeidsdager mellom to datoer.\n"
+"Denne funksjonen finnes for å kunne samsvare med eldre Microsoft Excel-dokument. Bruk NETTO.ARBEIDSDAGER i nyere dokument. "
#: analysis.src
msgctxt ""
@@ -409,14 +412,13 @@ msgid "Returns the multinomial coefficient of a set of numbers"
msgstr "Gir den multinomiale koeffisienten for et sett med tall"
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Multinomial\n"
"2\n"
"string.text"
msgid "Number"
-msgstr "tall"
+msgstr "Tall"
#: analysis.src
msgctxt ""
@@ -680,16 +682,17 @@ msgid ""
"Returns the greatest common divisor.\n"
"This function exists for interoperability with older Microsoft Excel documents, for new documents use GCD instead."
msgstr ""
+"Returnerer største felles faktor.\n"
+"Denne funksjonen finnes for å kunne samsvare med eldre Microsoft Excel-dokument. Bruk SFF i nyere dokument."
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Gcd\n"
"2\n"
"string.text"
msgid "Number"
-msgstr "tall"
+msgstr "Tall"
#: analysis.src
msgctxt ""
@@ -710,16 +713,17 @@ msgid ""
"Returns the least common multiple.\n"
"This function exists for interoperability with older Microsoft Excel documents, for new documents use LCM instead."
msgstr ""
+"Returnerer minste felles multiplum.\n"
+"Denne funksjonen finnes for å kunne samsvare med eldre Microsoft Excel-dokument. Bruk MFM i nyere dokument."
#: analysis.src
-#, fuzzy
msgctxt ""
"analysis.src\n"
"RID_ANALYSIS_FUNCTION_DESCRIPTIONS.ANALYSIS_Lcm\n"
"2\n"
"string.text"
msgid "Number"
-msgstr "tall"
+msgstr "Tall"
#: analysis.src
msgctxt ""
@@ -4706,7 +4710,7 @@ msgctxt ""
"1\n"
"string.text"
msgid "Returns the price per $100 face value of a security with an odd first period"
-msgstr "Gir prisen per 100 valutaenheter i nominell verdi for et verdipapir med en ulik første periode"
+msgstr "Gir prisen per $100 valutaenheter i nominell verdi for et verdipapir med en oddetall første periode"
#: analysis.src
msgctxt ""
diff --git a/source/nb/scp2/source/accessories.po b/source/nb/scp2/source/accessories.po
index 434408f5cda..5865eeb221c 100644
--- a/source/nb/scp2/source/accessories.po
+++ b/source/nb/scp2/source/accessories.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:41+0200\n"
-"PO-Revision-Date: 2015-05-13 03:25+0000\n"
+"PO-Revision-Date: 2016-03-08 23:25+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431487505.000000\n"
+"X-POOTLE-MTIME: 1457479527.000000\n"
#: module_accessories.ulf
msgctxt ""
@@ -233,13 +233,12 @@ msgid "Portuguese (Brazil)"
msgstr "Portugisisk (Brasil)"
#: module_samples_accessories.ulf
-#, fuzzy
msgctxt ""
"module_samples_accessories.ulf\n"
"STR_DESC_MODULE_LANGPACK_PT_BR\n"
"LngText.text"
msgid "Installs Portuguese (Brazil) support in %PRODUCTNAME %PRODUCTVERSION"
-msgstr "Installerer støtte for portugisisk i %PRODUCTNAME %PRODUCTVERSION"
+msgstr "Installerer støtte for Portugisisk (Brasil) i %PRODUCTNAME %PRODUCTVERSION"
#: module_samples_accessories.ulf
msgctxt ""
@@ -2010,13 +2009,12 @@ msgid "Portuguese (Brazil)"
msgstr "Portugisisk (Brasil)"
#: module_templates_accessories.ulf
-#, fuzzy
msgctxt ""
"module_templates_accessories.ulf\n"
"STR_DESC_MODULE_LANGPACK_PT_BR\n"
"LngText.text"
msgid "Installs Portuguese (Brazil) support in %PRODUCTNAME %PRODUCTVERSION"
-msgstr "Installerer støtte for portugisisk i %PRODUCTNAME %PRODUCTVERSION"
+msgstr "Installerer støtte for Portugisisk (Brasil) i %PRODUCTNAME %PRODUCTVERSION"
#: module_templates_accessories.ulf
msgctxt ""
diff --git a/source/nb/scp2/source/ooo.po b/source/nb/scp2/source/ooo.po
index 1b3bb8b0d4f..87bac42771b 100644
--- a/source/nb/scp2/source/ooo.po
+++ b/source/nb/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: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: 2015-08-22 06:56+0000\n"
-"Last-Translator: Klaus Ade Johnstad <klausade@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 23:30+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440226610.000000\n"
+"X-POOTLE-MTIME: 1457479859.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -177,13 +177,12 @@ msgid "Portuguese (Brazil)"
msgstr "Portugisisk (Brasil)"
#: module_helppack.ulf
-#, fuzzy
msgctxt ""
"module_helppack.ulf\n"
"STR_DESC_MODULE_HELPPACK_PT_BR\n"
"LngText.text"
msgid "Installs Portuguese (Brazil) help in %PRODUCTNAME %PRODUCTVERSION"
-msgstr "Installerer hjelp på portugisisk i %PRODUCTNAME %PRODUCTVERSION"
+msgstr "Installerer hjelp på Portugisisk (Brasil) i %PRODUCTNAME %PRODUCTVERSION"
#: module_helppack.ulf
msgctxt ""
@@ -1386,22 +1385,20 @@ msgid "Installs Gujarati help in %PRODUCTNAME %PRODUCTVERSION"
msgstr "Installerer hjelp på gujarati i %PRODUCTNAME %PRODUCTVERSION"
#: module_helppack.ulf
-#, fuzzy
msgctxt ""
"module_helppack.ulf\n"
"STR_NAME_MODULE_HELPPACK_GUG\n"
"LngText.text"
msgid "Guarani"
-msgstr "Gujarati"
+msgstr "Guarani"
#: module_helppack.ulf
-#, fuzzy
msgctxt ""
"module_helppack.ulf\n"
"STR_DESC_MODULE_HELPPACK_GUG\n"
"LngText.text"
msgid "Installs Guarani help in %PRODUCTNAME %PRODUCTVERSION"
-msgstr "Installerer hjelp på gujarati i %PRODUCTNAME %PRODUCTVERSION"
+msgstr "Installerer hjelp på Guarani i %PRODUCTNAME %PRODUCTVERSION"
#: module_helppack.ulf
msgctxt ""
@@ -3180,22 +3177,20 @@ msgid "Installs the Gujarati user interface"
msgstr "Installerer brukergrensesnittet for gujarati"
#: module_langpack.ulf
-#, fuzzy
msgctxt ""
"module_langpack.ulf\n"
"STR_NAME_MODULE_LANGPACK_GUG\n"
"LngText.text"
msgid "Guarani"
-msgstr "Gujarati"
+msgstr "Guarani"
#: module_langpack.ulf
-#, fuzzy
msgctxt ""
"module_langpack.ulf\n"
"STR_DESC_MODULE_LANGPACK_GUG\n"
"LngText.text"
msgid "Installs the Guarani user interface"
-msgstr "Installerer brukergrensesnittet for gujarati"
+msgstr "Installerer brukergrensesnittet for gujarani"
#: module_langpack.ulf
msgctxt ""
@@ -3235,7 +3230,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_UZ\n"
"LngText.text"
msgid "Uzbek"
-msgstr "Usbek"
+msgstr "Usbekisk"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/nb/sd/source/core.po b/source/nb/sd/source/core.po
index d6ab706ce87..c1922525864 100644
--- a/source/nb/sd/source/core.po
+++ b/source/nb/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-25 00:53+0000\n"
+"PO-Revision-Date: 2016-03-08 23:31+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429923187.000000\n"
+"X-POOTLE-MTIME: 1457479900.000000\n"
#: glob.src
msgctxt ""
@@ -653,4 +653,4 @@ msgctxt ""
"STR_DEAUTHORISE_CLIENT\n"
"string.text"
msgid "Remove client authorisation"
-msgstr ""
+msgstr "Fjern klientautoriasasjonen"
diff --git a/source/nb/sd/source/ui/animations.po b/source/nb/sd/source/ui/animations.po
index 1a479fc4f09..087d9bfadeb 100644
--- a/source/nb/sd/source/ui/animations.po
+++ b/source/nb/sd/source/ui/animations.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-16 19:03+0100\n"
-"PO-Revision-Date: 2013-12-11 18:25+0000\n"
+"PO-Revision-Date: 2016-03-08 23:32+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1386786318.000000\n"
+"X-POOTLE-MTIME: 1457479942.000000\n"
#: CustomAnimation.src
msgctxt ""
@@ -555,10 +555,9 @@ msgid "User paths"
msgstr "Brukerstier"
#: CustomAnimation.src
-#, fuzzy
msgctxt ""
"CustomAnimation.src\n"
"STR_SLIDETRANSITION_NONE\n"
"string.text"
msgid "None"
-msgstr "ingen"
+msgstr "Ingen"
diff --git a/source/nb/sd/source/ui/app.po b/source/nb/sd/source/ui/app.po
index 945d09d6763..f70cec4a13c 100644
--- a/source/nb/sd/source/ui/app.po
+++ b/source/nb/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-08-22 06:57+0000\n"
-"Last-Translator: Klaus Ade Johnstad <klausade@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 23:35+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440226623.000000\n"
+"X-POOTLE-MTIME: 1457480128.000000\n"
#: menuids3_tmpl.src
msgctxt ""
@@ -107,24 +107,22 @@ msgid "~3D Effects"
msgstr "~3D-effekter"
#: menuids3_tmpl.src
-#, fuzzy
msgctxt ""
"menuids3_tmpl.src\n"
"MN_PRESENTATION_LAYOUT\n"
"SID_PRESENTATION_LAYOUT\n"
"menuitem.text"
msgid "~Slide Design..."
-msgstr "~Lysbildeutforming"
+msgstr "~Lysbildeutforming..."
#: menuids3_tmpl.src
-#, fuzzy
msgctxt ""
"menuids3_tmpl.src\n"
"MN_PAGE_DESIGN\n"
"SID_PRESENTATION_LAYOUT\n"
"menuitem.text"
msgid "~Page Design..."
-msgstr "~Lysbildeutforming"
+msgstr "~Lysbildeutforming..."
#: menuids3_tmpl.src
msgctxt ""
@@ -163,7 +161,6 @@ msgid "~Distribution..."
msgstr "For~deling …"
#: menuids_tmpl.src
-#, fuzzy
msgctxt ""
"menuids_tmpl.src\n"
"MN_INSERT_GRAPHIC\n"
@@ -206,7 +203,7 @@ msgctxt ""
"SID_MODIFYPAGE\n"
"menuitem.text"
msgid "Page ~Layout"
-msgstr ""
+msgstr "Side~oppsett"
#: menuids_tmpl.src
msgctxt ""
@@ -224,7 +221,7 @@ msgctxt ""
"SID_PAGESETUP\n"
"menuitem.text"
msgid "Format ~Slide..."
-msgstr ""
+msgstr "Format ~Lysbilde..."
#: menuids_tmpl.src
msgctxt ""
@@ -269,7 +266,7 @@ msgctxt ""
"SID_SELECT_BACKGROUND\n"
"menuitem.text"
msgid "Set Background Image..."
-msgstr ""
+msgstr "Sett bakgrunnsbilde …"
#: menuids_tmpl.src
msgctxt ""
@@ -278,10 +275,9 @@ msgctxt ""
"SID_SAVE_BACKGROUND\n"
"menuitem.text"
msgid "Save Background Image..."
-msgstr ""
+msgstr "Lagre bakgrunnsbilde …"
#: menuids_tmpl.src
-#, fuzzy
msgctxt ""
"menuids_tmpl.src\n"
"MN_INSERT_PAGE.MN_SELECT_BACKGROUND.MN_SAVE_BACKGROUND.MN_DISPLAY_MASTER_BACKGROUND\n"
@@ -291,7 +287,6 @@ msgid "Display Background of Master"
msgstr "Vis bakgrunn til hovedutforming"
#: menuids_tmpl.src
-#, fuzzy
msgctxt ""
"menuids_tmpl.src\n"
"MN_INSERT_PAGE.MN_SELECT_BACKGROUND.MN_SAVE_BACKGROUND.MN_DISPLAY_MASTER_BACKGROUND.MN_DISPLAY_MASTER_OBJECTS\n"
@@ -355,7 +350,6 @@ msgid "D~elete Page"
msgstr "~Slett side"
#: menuids_tmpl.src
-#, fuzzy
msgctxt ""
"menuids_tmpl.src\n"
"MN_RENAME_SLIDE\n"
@@ -374,14 +368,13 @@ msgid "~Rename Master"
msgstr "Endre ~navn på hovedutforming"
#: menuids_tmpl.src
-#, fuzzy
msgctxt ""
"menuids_tmpl.src\n"
"MN_RENAME_PAGE\n"
"SID_RENAMEPAGE\n"
"menuitem.text"
msgid "~Rename Page..."
-msgstr "~Endre navn på lag …"
+msgstr "~Endre navn på side …"
#: menuids_tmpl.src
msgctxt ""
@@ -624,7 +617,7 @@ msgctxt ""
"SID_OBJECT_ALIGN\n"
"menuitem.text"
msgid "Al~ign"
-msgstr ""
+msgstr "Juster"
#: menuids_tmpl.src
msgctxt ""
@@ -840,7 +833,7 @@ msgctxt ""
"SID_SET_DEFAULT\n"
"menuitem.text"
msgid "~Default Formatting"
-msgstr ""
+msgstr "~Standardformatering"
#: menuids_tmpl.src
msgctxt ""
@@ -858,7 +851,7 @@ msgctxt ""
"SID_ORIGINAL_SIZE\n"
"menuitem.text"
msgid "Restore ~Original Size"
-msgstr ""
+msgstr "Tilbakestill til ~opprinnelig størrelse"
#: menuids_tmpl.src
msgctxt ""
@@ -867,7 +860,7 @@ msgctxt ""
"SID_OBJECT_CROP\n"
"menuitem.text"
msgid "Crop I~mage"
-msgstr ""
+msgstr "Beskjær bilde"
#: menuids_tmpl.src
msgctxt ""
@@ -984,7 +977,7 @@ msgctxt ""
"SID_RULER\n"
"menuitem.text"
msgid "View ~Ruler"
-msgstr ""
+msgstr "Vis ~linjal"
#: menuids_tmpl.src
msgctxt ""
@@ -1110,7 +1103,7 @@ msgctxt ""
"SID_HIDE_LAST_LEVEL\n"
"menuitem.text"
msgid "~Hide Last Level"
-msgstr ""
+msgstr "~Skjul siste nivå"
#: popup.src
msgctxt ""
@@ -1119,7 +1112,7 @@ msgctxt ""
"SID_SHOW_NEXT_LEVEL\n"
"menuitem.text"
msgid "~Show Next Level"
-msgstr ""
+msgstr "~Vis neste nivå"
#: popup.src
msgctxt ""
@@ -1559,7 +1552,7 @@ msgctxt ""
"SfxStyleFamiliesRes1\n"
"#define.text"
msgid "Graphic Styles"
-msgstr ""
+msgstr "Grafikkstiler"
#: res_bmp.src
msgctxt ""
@@ -1880,7 +1873,6 @@ msgid "Close Polygon"
msgstr "Lukk mangekant"
#: strings.src
-#, fuzzy
msgctxt ""
"strings.src\n"
"STR_SLIDE_SORTER_MODE\n"
@@ -1889,7 +1881,6 @@ msgid "Slide Sorter"
msgstr "Lysbildesortering"
#: strings.src
-#, fuzzy
msgctxt ""
"strings.src\n"
"STR_NORMAL_MODE\n"
@@ -1898,13 +1889,12 @@ msgid "Normal"
msgstr "Normal"
#: strings.src
-#, fuzzy
msgctxt ""
"strings.src\n"
"STR_SLIDE_MASTER_MODE\n"
"string.text"
msgid "Slide Master"
-msgstr "Lysbildesortering"
+msgstr "Hovedutforming for lysbilde"
#: strings.src
msgctxt ""
@@ -1928,10 +1918,9 @@ msgctxt ""
"STR_NOTES_MASTER_MODE\n"
"string.text"
msgid "Notes Master"
-msgstr ""
+msgstr "Hovedutforming for notat"
#: strings.src
-#, fuzzy
msgctxt ""
"strings.src\n"
"STR_HANDOUT_MASTER_MODE\n"
@@ -2129,10 +2118,9 @@ msgctxt ""
"STR_DISPLAYMODE_EDITMODES\n"
"string.text"
msgid "Edit Modes"
-msgstr ""
+msgstr "Rediger mudus"
#: strings.src
-#, fuzzy
msgctxt ""
"strings.src\n"
"STR_DISPLAYMODE_MASTERMODES\n"
@@ -2354,7 +2342,7 @@ msgctxt ""
"STR_WAV_FILE\n"
"string.text"
msgid "Audio"
-msgstr ""
+msgstr "Lyd"
#: strings.src
msgctxt ""
@@ -2410,7 +2398,7 @@ msgctxt ""
"STR_SD_PAGE_COUNT\n"
"string.text"
msgid "Slide %1 of %2"
-msgstr ""
+msgstr "Lysbilde %1 of %2"
#: strings.src
msgctxt ""
@@ -2418,7 +2406,7 @@ msgctxt ""
"STR_SD_PAGE_COUNT_CUSTOM\n"
"string.text"
msgid "Slide %1 of %2 (%3)"
-msgstr ""
+msgstr "Lysbilde %1 of %2 (%3)"
#: strings.src
msgctxt ""
@@ -2474,6 +2462,9 @@ msgid ""
"\n"
"Do you want to scale the copied objects to fit the new page size?"
msgstr ""
+"Lysbildestørrelsen for måldokumentet er ulik sidestørrelsen for kildedokumentet.\n"
+"\n"
+"Skal de kopierte objektene skalerest for å passe den nye papirstørrelsen?"
#: strings.src
msgctxt ""
@@ -2825,7 +2816,7 @@ msgctxt ""
"STR_CLICK_ACTION_SOUND\n"
"string.text"
msgid "Play audio"
-msgstr ""
+msgstr "Spill av lyd"
#: strings.src
msgctxt ""
@@ -2881,7 +2872,7 @@ msgctxt ""
"STR_EFFECTDLG_SOUND\n"
"string.text"
msgid "Audio"
-msgstr ""
+msgstr "Lyd"
#: strings.src
msgctxt ""
@@ -3536,7 +3527,6 @@ msgid "Graphics filter"
msgstr "Bildefilter"
#: strings.src
-#, fuzzy
msgctxt ""
"strings.src\n"
"STR_WARNING_NOSOUNDFILE\n"
@@ -3610,7 +3600,7 @@ msgctxt ""
"STR_STATUSBAR_MASTERPAGE\n"
"string.text"
msgid "Slide Master name. Right-click for list and double-click for dialog."
-msgstr ""
+msgstr "Navn på hovedutforming for lysbilde. Høyreklikk for liste og dobbelklikk for dialog"
#: strings.src
msgctxt ""
@@ -3730,7 +3720,7 @@ msgctxt ""
"STR_FIELD_PLACEHOLDER_SLIDENAME\n"
"string.text"
msgid "<slide-name>"
-msgstr ""
+msgstr "<lysbildenavn>"
#: strings.src
msgctxt ""
@@ -3738,7 +3728,7 @@ msgctxt ""
"STR_FIELD_PLACEHOLDER_PAGENAME\n"
"string.text"
msgid "<page-name>"
-msgstr ""
+msgstr "<sidenavn>"
#: strings.src
msgctxt ""
@@ -3866,7 +3856,7 @@ msgctxt ""
"STR_GRAPHICS_STYLE_FAMILY\n"
"string.text"
msgid "Graphic Styles"
-msgstr ""
+msgstr "Grafiske stiler"
#: strings.src
msgctxt ""
@@ -3986,7 +3976,7 @@ msgctxt ""
"STR_INSERT_MOVIE\n"
"string.text"
msgid "Insert Audio or Video"
-msgstr ""
+msgstr "Sett inn audio eller video"
#: strings.src
msgctxt ""
diff --git a/source/nb/sd/source/ui/view.po b/source/nb/sd/source/ui/view.po
index e28dfe47440..82efb962f44 100644
--- a/source/nb/sd/source/ui/view.po
+++ b/source/nb/sd/source/ui/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: 2015-08-25 12:34+0200\n"
-"PO-Revision-Date: 2014-06-04 13:24+0000\n"
+"PO-Revision-Date: 2016-03-08 23:36+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1401888252.000000\n"
+"X-POOTLE-MTIME: 1457480165.000000\n"
#: DocumentRenderer.src
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"According to layout\n"
"itemlist.text"
msgid "According to layout"
-msgstr ""
+msgstr "I henhold til utformingen"
#: DocumentRenderer.src
msgctxt ""
diff --git a/source/nb/sd/uiconfig/sdraw/ui.po b/source/nb/sd/uiconfig/sdraw/ui.po
index de3c4c28f4f..4aba84c74e5 100644
--- a/source/nb/sd/uiconfig/sdraw/ui.po
+++ b/source/nb/sd/uiconfig/sdraw/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-13 03:26+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2016-03-10 00:25+0000\n"
+"Last-Translator: Olav Dahlum <olav.dahlum@gmail.com>\n"
"Language-Team: none\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431487609.000000\n"
+"X-POOTLE-MTIME: 1457569503.000000\n"
#: breakdialog.ui
msgctxt ""
@@ -80,7 +80,6 @@ msgid "Bullets"
msgstr "Punkttegn"
#: bulletsandnumbering.ui
-#, fuzzy
msgctxt ""
"bulletsandnumbering.ui\n"
"singlenum\n"
@@ -135,14 +134,13 @@ msgid "_Default"
msgstr "_Standard"
#: copydlg.ui
-#, fuzzy
msgctxt ""
"copydlg.ui\n"
"label4\n"
"label\n"
"string.text"
msgid "Number of _copies:"
-msgstr "_Antall kopier"
+msgstr "Antall kopier:"
#: copydlg.ui
msgctxt ""
@@ -154,34 +152,31 @@ msgid "Values from Selection"
msgstr "Verdier fra utvalg"
#: copydlg.ui
-#, fuzzy
msgctxt ""
"copydlg.ui\n"
"label5\n"
"label\n"
"string.text"
msgid "_X axis:"
-msgstr "_X-akse"
+msgstr "_X-akse:"
#: copydlg.ui
-#, fuzzy
msgctxt ""
"copydlg.ui\n"
"label6\n"
"label\n"
"string.text"
msgid "_Y axis:"
-msgstr "_Y-akse"
+msgstr "_Y-akse:"
#: copydlg.ui
-#, fuzzy
msgctxt ""
"copydlg.ui\n"
"label7\n"
"label\n"
"string.text"
msgid "_Angle:"
-msgstr "_Vinkel"
+msgstr "_Vinkel:"
#: copydlg.ui
msgctxt ""
@@ -193,24 +188,22 @@ msgid "Placement"
msgstr "Plassering"
#: copydlg.ui
-#, fuzzy
msgctxt ""
"copydlg.ui\n"
"label8\n"
"label\n"
"string.text"
msgid "_Width:"
-msgstr "B_redde"
+msgstr "_Bredde:"
#: copydlg.ui
-#, fuzzy
msgctxt ""
"copydlg.ui\n"
"label9\n"
"label\n"
"string.text"
msgid "_Height:"
-msgstr "_Høyde"
+msgstr "_Høyde:"
#: copydlg.ui
msgctxt ""
@@ -222,24 +215,22 @@ msgid "Enlargement"
msgstr "Forstørrelse"
#: copydlg.ui
-#, fuzzy
msgctxt ""
"copydlg.ui\n"
"label10\n"
"label\n"
"string.text"
msgid "_Start:"
-msgstr "_Start"
+msgstr "_Start:"
#: copydlg.ui
-#, fuzzy
msgctxt ""
"copydlg.ui\n"
"endlabel\n"
"label\n"
"string.text"
msgid "_End:"
-msgstr "_Slutt"
+msgstr "_Slutt:"
#: copydlg.ui
msgctxt ""
@@ -278,14 +269,13 @@ msgid "Cross-fade attributes"
msgstr "Egenskaper for overgangstoning"
#: crossfadedialog.ui
-#, fuzzy
msgctxt ""
"crossfadedialog.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "Increments:"
-msgstr "Steg"
+msgstr "Steg:"
#: crossfadedialog.ui
msgctxt ""
@@ -312,7 +302,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_X:"
-msgstr ""
+msgstr "_X:"
#: dlgsnap.ui
msgctxt ""
@@ -321,7 +311,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Y:"
-msgstr ""
+msgstr "_Y:"
#: dlgsnap.ui
msgctxt ""
@@ -411,7 +401,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Highlighting"
-msgstr ""
+msgstr "Utheving"
#: drawpagedialog.ui
msgctxt ""
@@ -585,7 +575,6 @@ msgid "Bullets"
msgstr "Punkttegn"
#: drawprtldialog.ui
-#, fuzzy
msgctxt ""
"drawprtldialog.ui\n"
"RID_SVXPAGE_PICK_SINGLE_NUM\n"
@@ -748,17 +737,15 @@ msgid "R_estart at this paragraph"
msgstr "Start på nytt ved dette _avsnittet"
#: paranumberingtab.ui
-#, fuzzy
msgctxt ""
"paranumberingtab.ui\n"
"checkbuttonCB_NUMBER_NEW_START\n"
"label\n"
"string.text"
msgid "S_tart with:"
-msgstr "S_tart med"
+msgstr "Start med:"
#: paranumberingtab.ui
-#, fuzzy
msgctxt ""
"paranumberingtab.ui\n"
"label1\n"
@@ -894,14 +881,13 @@ msgid "This image is linked to a document."
msgstr "Dette bildet er lenket til et dokument."
#: queryunlinkimagedialog.ui
-#, fuzzy
msgctxt ""
"queryunlinkimagedialog.ui\n"
"QueryUnlinkImageDialog\n"
"secondary_text\n"
"string.text"
msgid "Do you want to unlink the image in order to edit it?"
-msgstr " Vil du fjerne lenken til bildet for å kunne redigere det?"
+msgstr "Vil du fjerne lenken til bildet for å kunne redigere det?"
#: tabledesigndialog.ui
msgctxt ""
@@ -913,7 +899,6 @@ msgid "Table Design"
msgstr "Tabellutforming"
#: tabledesigndialog.ui
-#, fuzzy
msgctxt ""
"tabledesigndialog.ui\n"
"UseFirstRowStyle\n"
@@ -923,17 +908,15 @@ msgid "_Header row"
msgstr "_Overskriftsrad"
#: tabledesigndialog.ui
-#, fuzzy
msgctxt ""
"tabledesigndialog.ui\n"
"UseLastRowStyle\n"
"label\n"
"string.text"
msgid "Tot_al row"
-msgstr "Tot_alrad"
+msgstr "Totalrad"
#: tabledesigndialog.ui
-#, fuzzy
msgctxt ""
"tabledesigndialog.ui\n"
"UseBandingRowStyle\n"
@@ -943,17 +926,15 @@ msgid "_Banded rows"
msgstr "_Radstriper"
#: tabledesigndialog.ui
-#, fuzzy
msgctxt ""
"tabledesigndialog.ui\n"
"UseFirstColumnStyle\n"
"label\n"
"string.text"
msgid "Fi_rst column"
-msgstr "Fø_rste kolonne"
+msgstr "Første kolonne"
#: tabledesigndialog.ui
-#, fuzzy
msgctxt ""
"tabledesigndialog.ui\n"
"UseLastColumnStyle\n"
@@ -963,14 +944,13 @@ msgid "_Last column"
msgstr "_Siste kolonne"
#: tabledesigndialog.ui
-#, fuzzy
msgctxt ""
"tabledesigndialog.ui\n"
"UseBandingColumnStyle\n"
"label\n"
"string.text"
msgid "Ba_nded columns"
-msgstr "_Radstriper"
+msgstr "Kolonnestriper"
#: vectorize.ui
msgctxt ""
@@ -1018,14 +998,13 @@ msgid "Tile size:"
msgstr "Flisstørrelse:"
#: vectorize.ui
-#, fuzzy
msgctxt ""
"vectorize.ui\n"
"fillholes\n"
"label\n"
"string.text"
msgid "_Fill holes"
-msgstr "_Fyll hull:"
+msgstr "_Fyll hull"
#: vectorize.ui
msgctxt ""
diff --git a/source/nb/sd/uiconfig/simpress/ui.po b/source/nb/sd/uiconfig/simpress/ui.po
index 81a88ee0985..10a5e7773d2 100644
--- a/source/nb/sd/uiconfig/simpress/ui.po
+++ b/source/nb/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 02:26+0000\n"
-"Last-Translator: system user <>\n"
+"PO-Revision-Date: 2016-03-10 00:56+0000\n"
+"Last-Translator: Olav Dahlum <olav.dahlum@gmail.com>\n"
"Language-Team: none\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435285608.000000\n"
+"X-POOTLE-MTIME: 1457571373.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Presentation Wizard"
-msgstr ""
+msgstr "Presentasjonsveiviseren"
#: assistentdialog.ui
msgctxt ""
@@ -32,7 +32,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "<< _Back"
-msgstr ""
+msgstr "<< _Tilbake"
#: assistentdialog.ui
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Next >>"
-msgstr ""
+msgstr "_Neste >>"
#: assistentdialog.ui
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Next >>"
-msgstr ""
+msgstr "Neste >>"
#: assistentdialog.ui
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Create"
-msgstr ""
+msgstr "_Lag"
#: assistentdialog.ui
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Empty presentation"
-msgstr ""
+msgstr "_Tom presentasjon"
#: assistentdialog.ui
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_From template"
-msgstr ""
+msgstr "_Fra mal"
#: assistentdialog.ui
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "O_pen existing presentation"
-msgstr ""
+msgstr "Åpne en eksisterende presentasjon"
#: assistentdialog.ui
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Open..."
-msgstr ""
+msgstr "Åpne..."
#: assistentdialog.ui
msgctxt ""
@@ -107,7 +107,6 @@ msgid "Type"
msgstr "Type"
#: assistentdialog.ui
-#, fuzzy
msgctxt ""
"assistentdialog.ui\n"
"layout2Label\n"
@@ -123,7 +122,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Original"
-msgstr ""
+msgstr "_Original"
#: assistentdialog.ui
msgctxt ""
@@ -132,7 +131,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "O_verhead sheet"
-msgstr ""
+msgstr "Lysbildeark"
#: assistentdialog.ui
msgctxt ""
@@ -141,7 +140,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "P_aper"
-msgstr ""
+msgstr "Papir"
#: assistentdialog.ui
msgctxt ""
@@ -150,7 +149,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sc_reen"
-msgstr ""
+msgstr "Skjerm"
#: assistentdialog.ui
msgctxt ""
@@ -159,7 +158,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sli_de"
-msgstr ""
+msgstr "Lysbilde"
#: assistentdialog.ui
msgctxt ""
@@ -168,7 +167,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "W_idescreen"
-msgstr ""
+msgstr "Bredskjerm"
#: assistentdialog.ui
msgctxt ""
@@ -177,17 +176,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select an Output Medium"
-msgstr ""
+msgstr "Velg et presentasjonsmedium"
#: assistentdialog.ui
-#, fuzzy
msgctxt ""
"assistentdialog.ui\n"
"effectLabel\n"
"label\n"
"string.text"
msgid "_Effect:"
-msgstr "Effekt"
+msgstr "_Effekt:"
#: assistentdialog.ui
msgctxt ""
@@ -196,7 +194,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Variant:"
-msgstr ""
+msgstr "Variant:"
#: assistentdialog.ui
msgctxt ""
@@ -214,7 +212,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select a Slide Transition"
-msgstr ""
+msgstr "Velg en lysbildeovergang"
#: assistentdialog.ui
msgctxt ""
@@ -232,10 +230,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Automatic"
-msgstr ""
+msgstr "_Automatisk"
#: assistentdialog.ui
-#, fuzzy
msgctxt ""
"assistentdialog.ui\n"
"breakLabel\n"
@@ -245,24 +242,22 @@ msgid "Du_ration of pause:"
msgstr "Pausetid"
#: assistentdialog.ui
-#, fuzzy
msgctxt ""
"assistentdialog.ui\n"
"presTimeLabel\n"
"label\n"
"string.text"
msgid "D_uration of page:"
-msgstr "Pausetid"
+msgstr "Pausetid:"
#: assistentdialog.ui
-#, fuzzy
msgctxt ""
"assistentdialog.ui\n"
"logoCheckbutton\n"
"label\n"
"string.text"
msgid "Sh_ow logo"
-msgstr "Vis _logo"
+msgstr "Vis logo"
#: assistentdialog.ui
msgctxt ""
@@ -271,7 +266,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select the Presentation Type"
-msgstr ""
+msgstr "Vegl presentasjonstype"
#: assistentdialog.ui
msgctxt ""
@@ -280,7 +275,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ch_oose your pages"
-msgstr ""
+msgstr "Velg dine sider"
#: assistentdialog.ui
msgctxt ""
@@ -289,10 +284,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "C_reate summary"
-msgstr ""
+msgstr "Lag sammendrag"
#: assistentdialog.ui
-#, fuzzy
msgctxt ""
"assistentdialog.ui\n"
"previewCheckbutton\n"
@@ -308,7 +302,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Do not show this wizard again"
-msgstr ""
+msgstr "Ikke vis denne veiviseren igjen"
#: assistentdialog.ui
msgctxt ""
@@ -317,7 +311,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "What is _your name or the name of your company?"
-msgstr ""
+msgstr "Hva er navnet ditt eller firmanavnet?"
#: assistentdialog.ui
msgctxt ""
@@ -326,7 +320,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "What is _the subject of your presentation?"
-msgstr ""
+msgstr "Hva er emnet for din presentasjon"
#: assistentdialog.ui
msgctxt ""
@@ -335,7 +329,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Further ideas to be presented?"
-msgstr ""
+msgstr "Har du flere idéer du vil vise i presentasjonen?"
#: assistentdialog.ui
msgctxt ""
@@ -344,7 +338,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Describe Your Basic Ideas"
-msgstr ""
+msgstr "Beskriv dine grunnleggende ideer"
#: customanimationcreatedialog.ui
msgctxt ""
@@ -671,7 +665,6 @@ msgid "_Direction:"
msgstr "_Retning:"
#: customanimationspanel.ui
-#, fuzzy
msgctxt ""
"customanimationspanel.ui\n"
"effect_speed\n"
@@ -714,7 +707,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Options..."
-msgstr ""
+msgstr "_Valg..."
#: customanimationspanel.ui
msgctxt ""
@@ -915,14 +908,13 @@ msgid "_Animate as part of click sequence"
msgstr "_Animer som en del av en klikksekvens"
#: customanimationtimingtab.ui
-#, fuzzy
msgctxt ""
"customanimationtimingtab.ui\n"
"rb_interactive\n"
"label\n"
"string.text"
msgid "Start _effect on click of:"
-msgstr "Start _effekten ved klikk på"
+msgstr "Start _effekten ved klikk på:"
#: customanimationtimingtab.ui
msgctxt ""
@@ -961,7 +953,6 @@ msgid "_Start"
msgstr "_Start"
#: customslideshows.ui
-#, fuzzy
msgctxt ""
"customslideshows.ui\n"
"usecustomshows\n"
@@ -989,24 +980,22 @@ msgid "_Name:"
msgstr "_Navn:"
#: definecustomslideshow.ui
-#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "_Existing slides:"
-msgstr "_Eksisterende lysbilder"
+msgstr "_Eksisterende lysbilder:"
#: definecustomslideshow.ui
-#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "_Selected slides:"
-msgstr "_Valgte lysbilder"
+msgstr "_Valgte lysbilder:"
#: definecustomslideshow.ui
msgctxt ""
@@ -1054,7 +1043,6 @@ msgid "_Variable"
msgstr "_Variabel"
#: dlgfield.ui
-#, fuzzy
msgctxt ""
"dlgfield.ui\n"
"label1\n"
@@ -1064,14 +1052,13 @@ msgid "Field Type"
msgstr "Felttype"
#: dlgfield.ui
-#, fuzzy
msgctxt ""
"dlgfield.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "_Language:"
-msgstr "_Språk"
+msgstr "_Språk:"
#: dlgfield.ui
msgctxt ""
@@ -1089,7 +1076,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Animation"
-msgstr ""
+msgstr "Animasjon"
#: dockinganimation.ui
msgctxt ""
@@ -1107,7 +1094,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Loop Count"
-msgstr ""
+msgstr "Antall løkker"
#: dockinganimation.ui
msgctxt ""
@@ -1116,7 +1103,7 @@ msgctxt ""
"18\n"
"stringlist.text"
msgid "Max."
-msgstr ""
+msgstr "Maks."
#: dockinganimation.ui
msgctxt ""
@@ -1125,17 +1112,16 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Duration"
-msgstr ""
+msgstr "Lengde"
#: dockinganimation.ui
-#, fuzzy
msgctxt ""
"dockinganimation.ui\n"
"numbitmap\n"
"tooltip_text\n"
"string.text"
msgid "Image Number"
-msgstr "Side_tall"
+msgstr "Bildenummerl"
#: dockinganimation.ui
msgctxt ""
@@ -1144,7 +1130,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "First Image"
-msgstr ""
+msgstr "Første bilde"
#: dockinganimation.ui
msgctxt ""
@@ -1153,7 +1139,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Backwards"
-msgstr ""
+msgstr "Bakover"
#: dockinganimation.ui
msgctxt ""
@@ -1162,7 +1148,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Stop"
-msgstr ""
+msgstr "Stopp"
#: dockinganimation.ui
msgctxt ""
@@ -1180,7 +1166,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Last Image"
-msgstr ""
+msgstr "Siste bilde"
#: dockinganimation.ui
msgctxt ""
@@ -1189,7 +1175,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Group object"
-msgstr ""
+msgstr "Gruppeobjekt"
#: dockinganimation.ui
msgctxt ""
@@ -1198,7 +1184,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bitmap object"
-msgstr ""
+msgstr "Bitmap objekt"
#: dockinganimation.ui
msgctxt ""
@@ -1216,7 +1202,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Top Left"
-msgstr ""
+msgstr "Øverst til venstre"
#: dockinganimation.ui
msgctxt ""
@@ -1225,7 +1211,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Left"
-msgstr ""
+msgstr "Venstre"
#: dockinganimation.ui
msgctxt ""
@@ -1234,7 +1220,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Bottom Left"
-msgstr ""
+msgstr "Nederst til venstre"
#: dockinganimation.ui
msgctxt ""
@@ -1243,7 +1229,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Top"
-msgstr ""
+msgstr "Topp"
#: dockinganimation.ui
msgctxt ""
@@ -1252,7 +1238,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Centered"
-msgstr ""
+msgstr "Midtstilt"
#: dockinganimation.ui
msgctxt ""
@@ -1261,7 +1247,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Bottom"
-msgstr ""
+msgstr "Bunn"
#: dockinganimation.ui
msgctxt ""
@@ -1270,7 +1256,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Top Right"
-msgstr ""
+msgstr "Øverst til høyre"
#: dockinganimation.ui
msgctxt ""
@@ -1279,7 +1265,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Right"
-msgstr ""
+msgstr "Høyre"
#: dockinganimation.ui
msgctxt ""
@@ -1288,7 +1274,7 @@ msgctxt ""
"8\n"
"stringlist.text"
msgid "Bottom Right"
-msgstr ""
+msgstr "Nede til høyre"
#: dockinganimation.ui
msgctxt ""
@@ -1297,7 +1283,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Animation group"
-msgstr ""
+msgstr "Animasjonsgruppe"
#: dockinganimation.ui
msgctxt ""
@@ -1306,7 +1292,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Apply Object"
-msgstr ""
+msgstr "Bruk objekt"
#: dockinganimation.ui
msgctxt ""
@@ -1315,7 +1301,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Apply Objects Individually"
-msgstr ""
+msgstr "Bruk objektene hver for seg"
#: dockinganimation.ui
msgctxt ""
@@ -1324,7 +1310,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Number"
-msgstr ""
+msgstr "Tall"
#: dockinganimation.ui
msgctxt ""
@@ -1333,7 +1319,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Delete Current Image"
-msgstr ""
+msgstr "Slett gjeldende bilde"
#: dockinganimation.ui
msgctxt ""
@@ -1342,7 +1328,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Delete All Images"
-msgstr ""
+msgstr "Slett alle bilder"
#: dockinganimation.ui
msgctxt ""
@@ -1351,7 +1337,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Image"
-msgstr ""
+msgstr "Bilde"
#: dockinganimation.ui
msgctxt ""
@@ -1360,7 +1346,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create"
-msgstr ""
+msgstr "Lag"
#: headerfooterdialog.ui
msgctxt ""
@@ -1369,7 +1355,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Header and Footer"
-msgstr ""
+msgstr "Topp og bunntekst"
#: headerfooterdialog.ui
msgctxt ""
@@ -1444,24 +1430,22 @@ msgid "_Variable"
msgstr "_Variabel"
#: headerfootertab.ui
-#, fuzzy
msgctxt ""
"headerfootertab.ui\n"
"language_label\n"
"label\n"
"string.text"
msgid "_Language:"
-msgstr "_Språk"
+msgstr "_Språk:"
#: headerfootertab.ui
-#, fuzzy
msgctxt ""
"headerfootertab.ui\n"
"language_label1\n"
"label\n"
"string.text"
msgid "_Format:"
-msgstr "_Format"
+msgstr "_Format:"
#: headerfootertab.ui
msgctxt ""
@@ -1491,7 +1475,6 @@ msgid "_Slide number"
msgstr "_Lysbildenummer"
#: headerfootertab.ui
-#, fuzzy
msgctxt ""
"headerfootertab.ui\n"
"include_label\n"
@@ -1573,24 +1556,22 @@ msgid "Interaction"
msgstr "Interaksjon"
#: interactionpage.ui
-#, fuzzy
msgctxt ""
"interactionpage.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "Action at mouse click:"
-msgstr "Handling ved museklikk"
+msgstr "Handling ved museklikk:"
#: interactionpage.ui
-#, fuzzy
msgctxt ""
"interactionpage.ui\n"
"fttree\n"
"label\n"
"string.text"
msgid "Target:"
-msgstr "Mål"
+msgstr "Mål:"
#: interactionpage.ui
msgctxt ""
@@ -1710,7 +1691,6 @@ msgid "Only text area selected"
msgstr "Bare tekstområdet er merket"
#: optimpressgeneralpage.ui
-#, fuzzy
msgctxt ""
"optimpressgeneralpage.ui\n"
"label2\n"
@@ -1729,7 +1709,6 @@ msgid "Start with _wizard"
msgstr "Start med _veiviseren"
#: optimpressgeneralpage.ui
-#, fuzzy
msgctxt ""
"optimpressgeneralpage.ui\n"
"newdoclbl\n"
@@ -1748,24 +1727,22 @@ msgid "Copy when moving"
msgstr "Kopier ved flytting"
#: optimpressgeneralpage.ui
-#, fuzzy
msgctxt ""
"optimpressgeneralpage.ui\n"
"label6\n"
"label\n"
"string.text"
msgid "Unit of _measurement:"
-msgstr "_Måleenhet"
+msgstr "Måleenhet:"
#: optimpressgeneralpage.ui
-#, fuzzy
msgctxt ""
"optimpressgeneralpage.ui\n"
"tapstoplabel\n"
"label\n"
"string.text"
msgid "Ta_b stops:"
-msgstr "Ta_bulatorer"
+msgstr "Tabulatorer:"
#: optimpressgeneralpage.ui
msgctxt ""
@@ -1831,34 +1808,31 @@ msgid "Presentation"
msgstr "Presentasjon"
#: optimpressgeneralpage.ui
-#, fuzzy
msgctxt ""
"optimpressgeneralpage.ui\n"
"label8\n"
"label\n"
"string.text"
msgid "_Drawing scale:"
-msgstr "_Målestokk for tegning"
+msgstr "_Målestokk for tegning:"
#: optimpressgeneralpage.ui
-#, fuzzy
msgctxt ""
"optimpressgeneralpage.ui\n"
"widthlbl\n"
"label\n"
"string.text"
msgid "Page _width:"
-msgstr "Side_bredde"
+msgstr "Sidebredde:"
#: optimpressgeneralpage.ui
-#, fuzzy
msgctxt ""
"optimpressgeneralpage.ui\n"
"heightlbl\n"
"label\n"
"string.text"
msgid "Page _height:"
-msgstr "Side_høyde"
+msgstr "Sidehøyde:"
#: optimpressgeneralpage.ui
msgctxt ""
@@ -1978,14 +1952,13 @@ msgid "Preview"
msgstr "Forhåndsvisning"
#: photoalbum.ui
-#, fuzzy
msgctxt ""
"photoalbum.ui\n"
"label7\n"
"label\n"
"string.text"
msgid "Slide layout:"
-msgstr "Lysbildeoppsett"
+msgstr "Lysbildeoppsett:"
#: photoalbum.ui
msgctxt ""
@@ -1994,10 +1967,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add caption to each slide"
-msgstr ""
+msgstr "Legg tekst til hvert bilde"
#: photoalbum.ui
-#, fuzzy
msgctxt ""
"photoalbum.ui\n"
"asr_check\n"
@@ -2070,7 +2042,6 @@ msgid "All _slides"
msgstr "_Alle lysbilder"
#: presentationdialog.ui
-#, fuzzy
msgctxt ""
"presentationdialog.ui\n"
"customslideshow\n"
@@ -2134,7 +2105,6 @@ msgid "Auto External (Display %1)"
msgstr "Automatisk ekstern (skjerm %1)"
#: presentationdialog.ui
-#, fuzzy
msgctxt ""
"presentationdialog.ui\n"
"label3\n"
@@ -2504,7 +2474,6 @@ msgid "Ba_ck"
msgstr "_Bakside"
#: prntopts.ui
-#, fuzzy
msgctxt ""
"prntopts.ui\n"
"label3\n"
@@ -2601,7 +2570,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "HTML Export"
-msgstr ""
+msgstr "HTML eksport"
#: publishingdialog.ui
msgctxt ""
@@ -2610,7 +2579,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "New _design"
-msgstr ""
+msgstr "Ny utforming"
#: publishingdialog.ui
msgctxt ""
@@ -2619,7 +2588,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Existing design"
-msgstr ""
+msgstr "Eksisterende utforming"
#: publishingdialog.ui
msgctxt ""
@@ -2628,7 +2597,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete Selected Design"
-msgstr ""
+msgstr "Slett valgt utforming"
#: publishingdialog.ui
msgctxt ""
@@ -2637,7 +2606,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select an existing design or create a new one"
-msgstr ""
+msgstr "Velg en eksisterende utforming eller lag en ny"
#: publishingdialog.ui
msgctxt ""
@@ -2646,7 +2615,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Assign Design"
-msgstr ""
+msgstr "Tildel utforming"
#: publishingdialog.ui
msgctxt ""
@@ -2655,7 +2624,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Active Server Pages (ASP)"
-msgstr ""
+msgstr "_Active Server Pages (ASP)"
#: publishingdialog.ui
msgctxt ""
@@ -2664,7 +2633,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Perl"
-msgstr ""
+msgstr "Perl"
#: publishingdialog.ui
msgctxt ""
@@ -2673,7 +2642,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_URL for listeners:"
-msgstr ""
+msgstr "_URL for lyttere_"
#: publishingdialog.ui
msgctxt ""
@@ -2682,7 +2651,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "URL for _presentation:"
-msgstr ""
+msgstr "Nettadresse for presentasjonen:"
#: publishingdialog.ui
msgctxt ""
@@ -2691,7 +2660,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "URL for _Perl scripts:"
-msgstr ""
+msgstr "Nettadresse for Perl-skript:"
#: publishingdialog.ui
msgctxt ""
@@ -2700,7 +2669,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Webcast"
-msgstr ""
+msgstr "Nettpublisering"
#: publishingdialog.ui
msgctxt ""
@@ -2709,7 +2678,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_As stated in document"
-msgstr ""
+msgstr "_Som oppgitt i dokumentet"
#: publishingdialog.ui
msgctxt ""
@@ -2718,7 +2687,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Automatic"
-msgstr ""
+msgstr "_Automatisk"
#: publishingdialog.ui
msgctxt ""
@@ -2727,7 +2696,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Slide view time:"
-msgstr ""
+msgstr "_Visingstid for lysbilde:"
#: publishingdialog.ui
msgctxt ""
@@ -2736,10 +2705,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Endless"
-msgstr ""
+msgstr "_Uendelig"
#: publishingdialog.ui
-#, fuzzy
msgctxt ""
"publishingdialog.ui\n"
"kioskLabel\n"
@@ -2755,7 +2723,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create title page"
-msgstr ""
+msgstr "Lag tittelside"
#: publishingdialog.ui
msgctxt ""
@@ -2764,7 +2732,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Show notes"
-msgstr ""
+msgstr "Vis notat"
#: publishingdialog.ui
msgctxt ""
@@ -2782,7 +2750,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_WebCast"
-msgstr ""
+msgstr "_Nettpublisering"
#: publishingdialog.ui
msgctxt ""
@@ -2791,7 +2759,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Automatic"
-msgstr ""
+msgstr "_Automatisk"
#: publishingdialog.ui
msgctxt ""
@@ -2800,7 +2768,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Single-document HTML"
-msgstr ""
+msgstr "_Enkeltdokument HTML"
#: publishingdialog.ui
msgctxt ""
@@ -2809,7 +2777,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Standard HTML with _frames"
-msgstr ""
+msgstr "Standard HTML med rammer"
#: publishingdialog.ui
msgctxt ""
@@ -2818,7 +2786,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Standard H_TML format"
-msgstr ""
+msgstr "Standard HTML format"
#: publishingdialog.ui
msgctxt ""
@@ -2827,7 +2795,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Publication Type"
-msgstr ""
+msgstr "Publikasjonstype"
#: publishingdialog.ui
msgctxt ""
@@ -2836,7 +2804,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_PNG"
-msgstr ""
+msgstr "_PNG"
#: publishingdialog.ui
msgctxt ""
@@ -2845,7 +2813,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_GIF"
-msgstr ""
+msgstr "_GIF"
#: publishingdialog.ui
msgctxt ""
@@ -2854,17 +2822,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "_JPG"
-msgstr ""
+msgstr "_JPG"
#: publishingdialog.ui
-#, fuzzy
msgctxt ""
"publishingdialog.ui\n"
"qualityTxtLabel\n"
"label\n"
"string.text"
msgid "_Quality:"
-msgstr "Kvalitet"
+msgstr "_Kvalitet:"
#: publishingdialog.ui
msgctxt ""
@@ -2873,7 +2840,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Save Images As"
-msgstr ""
+msgstr "Lagre Bilder Som"
#: publishingdialog.ui
msgctxt ""
@@ -2882,7 +2849,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Low (_640 × 480 pixels)"
-msgstr ""
+msgstr "Lav (_640 × 480 piksler)"
#: publishingdialog.ui
msgctxt ""
@@ -2891,7 +2858,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Medium (_800 × 600 pixels)"
-msgstr ""
+msgstr "Medium (_800 × 600 piksler)"
#: publishingdialog.ui
msgctxt ""
@@ -2900,7 +2867,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "High (_1024 × 768 pixels)"
-msgstr ""
+msgstr "Høy (_1024 × 768 piksler)"
#: publishingdialog.ui
msgctxt ""
@@ -2909,7 +2876,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Monitor Resolution"
-msgstr ""
+msgstr "Skjermoppløsing"
#: publishingdialog.ui
msgctxt ""
@@ -2918,7 +2885,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Export sounds when slide advances"
-msgstr ""
+msgstr "_Ta med lydeffekter ved lysbildeskifte"
#: publishingdialog.ui
msgctxt ""
@@ -2927,17 +2894,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "Export _hidden slides"
-msgstr ""
+msgstr "Eksporter skjulte lysbilder"
#: publishingdialog.ui
-#, fuzzy
msgctxt ""
"publishingdialog.ui\n"
"effectsLabel\n"
"label\n"
"string.text"
msgid "Effects"
-msgstr "Effekt"
+msgstr "Effekter"
#: publishingdialog.ui
msgctxt ""
@@ -2946,7 +2912,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Author:"
-msgstr ""
+msgstr "_Forfatter:"
#: publishingdialog.ui
msgctxt ""
@@ -2955,7 +2921,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "E-_mail address:"
-msgstr ""
+msgstr "E-postadresse:"
#: publishingdialog.ui
msgctxt ""
@@ -2964,7 +2930,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Your hom_epage:"
-msgstr ""
+msgstr "Din hjemmeside:"
#: publishingdialog.ui
msgctxt ""
@@ -2973,7 +2939,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Additional _information:"
-msgstr ""
+msgstr "Tilleggsinformasjon:"
#: publishingdialog.ui
msgctxt ""
@@ -2982,7 +2948,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Link to a copy of the _original presentation"
-msgstr ""
+msgstr "Lenke til en kopi av originalpresentasjonen"
#: publishingdialog.ui
msgctxt ""
@@ -2991,7 +2957,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Information for the Title Page"
-msgstr ""
+msgstr "Informasjon for tittelsiden"
#: publishingdialog.ui
msgctxt ""
@@ -3000,7 +2966,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Text only"
-msgstr ""
+msgstr "_Bare tekst"
#: publishingdialog.ui
msgctxt ""
@@ -3009,7 +2975,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select Button Style"
-msgstr ""
+msgstr "Velg knappestil"
#: publishingdialog.ui
msgctxt ""
@@ -3018,7 +2984,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Apply color scheme from document"
-msgstr ""
+msgstr "_Bruk fargeoppsett fra dokumentet"
#: publishingdialog.ui
msgctxt ""
@@ -3027,7 +2993,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use _browser colors"
-msgstr ""
+msgstr "Bruk nettleserfarger"
#: publishingdialog.ui
msgctxt ""
@@ -3036,7 +3002,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Use custom color scheme"
-msgstr ""
+msgstr "Bruk eget fargeoppsett"
#: publishingdialog.ui
msgctxt ""
@@ -3045,7 +3011,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Visited Link"
-msgstr ""
+msgstr "_Besøkt lenke"
#: publishingdialog.ui
msgctxt ""
@@ -3054,7 +3020,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Active Li_nk"
-msgstr ""
+msgstr "Aktiv lenke"
#: publishingdialog.ui
msgctxt ""
@@ -3063,7 +3029,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Hyper_link"
-msgstr ""
+msgstr "Hyperlenke"
#: publishingdialog.ui
msgctxt ""
@@ -3081,7 +3047,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Bac_kground"
-msgstr ""
+msgstr "Bakgrunn"
#: publishingdialog.ui
msgctxt ""
@@ -3090,7 +3056,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select Color Scheme"
-msgstr ""
+msgstr "Velg fargeoppsett"
#: publishingdialog.ui
msgctxt ""
@@ -3099,7 +3065,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "<< Back"
-msgstr ""
+msgstr "<<Tilbake"
#: publishingdialog.ui
msgctxt ""
@@ -3108,7 +3074,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ne_xt >>"
-msgstr ""
+msgstr "Neste >>"
#: publishingdialog.ui
msgctxt ""
@@ -3117,7 +3083,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Create"
-msgstr ""
+msgstr "_Opprett"
#: remotedialog.ui
msgctxt ""
@@ -3135,7 +3101,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Connections"
-msgstr ""
+msgstr "Tilkoblinger"
#: sdviewpage.ui
msgctxt ""
@@ -3156,14 +3122,13 @@ msgid "_Snap Lines when moving"
msgstr "_Festelinjer ved flytting"
#: sdviewpage.ui
-#, fuzzy
msgctxt ""
"sdviewpage.ui\n"
"handlesbezier\n"
"label\n"
"string.text"
msgid "_All control points in Bézier editor"
-msgstr "_Alle kontrollpunkter i bezier-redigeringa"
+msgstr "_Alle kontrollpunkter i bezier-editoren"
#: sdviewpage.ui
msgctxt ""
@@ -3211,7 +3176,6 @@ msgid "_Delete unused backgrounds"
msgstr "_Slett ubrukte bakgrunner"
#: slidedesigndialog.ui
-#, fuzzy
msgctxt ""
"slidedesigndialog.ui\n"
"label1\n"
@@ -3275,7 +3239,6 @@ msgid "Sound:"
msgstr "Lyd:"
#: slidetransitionspanel.ui
-#, fuzzy
msgctxt ""
"slidetransitionspanel.ui\n"
"sound_list\n"
@@ -3285,7 +3248,6 @@ msgid "No sound"
msgstr "Ingen lyd"
#: slidetransitionspanel.ui
-#, fuzzy
msgctxt ""
"slidetransitionspanel.ui\n"
"sound_list\n"
@@ -3295,7 +3257,6 @@ msgid "Stop previous sound"
msgstr "Stopp forrige lyd"
#: slidetransitionspanel.ui
-#, fuzzy
msgctxt ""
"slidetransitionspanel.ui\n"
"sound_list\n"
@@ -3320,10 +3281,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Variant"
-msgstr ""
+msgstr "Variant"
#: slidetransitionspanel.ui
-#, fuzzy
msgctxt ""
"slidetransitionspanel.ui\n"
"label1\n"
@@ -3342,17 +3302,15 @@ msgid "On mouse click"
msgstr "Ved museklikk"
#: slidetransitionspanel.ui
-#, fuzzy
msgctxt ""
"slidetransitionspanel.ui\n"
"rb_auto_after\n"
"label\n"
"string.text"
msgid "Automatically after:"
-msgstr "_Automatisk etter:"
+msgstr "Automatisk etter:"
#: slidetransitionspanel.ui
-#, fuzzy
msgctxt ""
"slidetransitionspanel.ui\n"
"label2\n"
@@ -3368,10 +3326,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Apply Transition to All Slides"
-msgstr ""
+msgstr "Bruk overgangen på alle lysbildene"
#: slidetransitionspanel.ui
-#, fuzzy
msgctxt ""
"slidetransitionspanel.ui\n"
"auto_preview\n"
@@ -3390,7 +3347,6 @@ msgid "Play"
msgstr "Spill av"
#: tabledesignpanel.ui
-#, fuzzy
msgctxt ""
"tabledesignpanel.ui\n"
"UseFirstRowStyle\n"
@@ -3400,17 +3356,15 @@ msgid "_Header row"
msgstr "_Overskriftsrad"
#: tabledesignpanel.ui
-#, fuzzy
msgctxt ""
"tabledesignpanel.ui\n"
"UseLastRowStyle\n"
"label\n"
"string.text"
msgid "Tot_al row"
-msgstr "Tot_alrad"
+msgstr "Totalrad"
#: tabledesignpanel.ui
-#, fuzzy
msgctxt ""
"tabledesignpanel.ui\n"
"UseBandingRowStyle\n"
@@ -3420,17 +3374,15 @@ msgid "_Banded rows"
msgstr "_Radstriper"
#: tabledesignpanel.ui
-#, fuzzy
msgctxt ""
"tabledesignpanel.ui\n"
"UseFirstColumnStyle\n"
"label\n"
"string.text"
msgid "Fi_rst column"
-msgstr "_Første kolonne"
+msgstr "Første kolonne"
#: tabledesignpanel.ui
-#, fuzzy
msgctxt ""
"tabledesignpanel.ui\n"
"UseLastColumnStyle\n"
@@ -3440,14 +3392,13 @@ msgid "_Last column"
msgstr "_Siste kolonne"
#: tabledesignpanel.ui
-#, fuzzy
msgctxt ""
"tabledesignpanel.ui\n"
"UseBandingColumnStyle\n"
"label\n"
"string.text"
msgid "Ba_nded columns"
-msgstr "Rad_striper"
+msgstr "Radstriper"
#: templatedialog.ui
msgctxt ""
@@ -3456,7 +3407,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Graphic Styles"
-msgstr ""
+msgstr "Grafiske stiler"
#: templatedialog.ui
msgctxt ""
@@ -3522,14 +3473,13 @@ msgid "Font"
msgstr "Skrift"
#: templatedialog.ui
-#, fuzzy
msgctxt ""
"templatedialog.ui\n"
"fonteffect\n"
"label\n"
"string.text"
msgid "Font Effects"
-msgstr "Skrifteffekt"
+msgstr "Skrifteffekter"
#: templatedialog.ui
msgctxt ""
diff --git a/source/nb/sfx2/source/appl.po b/source/nb/sfx2/source/appl.po
index cdeec2c5a6f..f04a67c1619 100644
--- a/source/nb/sfx2/source/appl.po
+++ b/source/nb/sfx2/source/appl.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: 2015-02-19 21:45+0000\n"
+"PO-Revision-Date: 2016-03-08 23:40+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1424382351.000000\n"
+"X-POOTLE-MTIME: 1457480418.000000\n"
#: app.src
msgctxt ""
@@ -457,13 +457,12 @@ msgstr ""
"data?"
#: app.src
-#, fuzzy
msgctxt ""
"app.src\n"
"STR_DDE_ERROR\n"
"string.text"
msgid "DDE link to %1 for %2 area %3 are not available."
-msgstr "DDE-lenka til % for % området % er ikke tilgjengelig."
+msgstr "DDE-lenka til %1 for %2 området %3 er ikke tilgjengelig."
#: app.src
msgctxt ""
diff --git a/source/nb/sfx2/source/sidebar.po b/source/nb/sfx2/source/sidebar.po
index 714fc3d0b60..07b5136ff01 100644
--- a/source/nb/sfx2/source/sidebar.po
+++ b/source/nb/sfx2/source/sidebar.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-09-01 20:20+0200\n"
-"PO-Revision-Date: 2015-05-13 03:27+0000\n"
+"PO-Revision-Date: 2016-03-08 23:41+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431487672.000000\n"
+"X-POOTLE-MTIME: 1457480508.000000\n"
#: Sidebar.src
msgctxt ""
@@ -65,4 +65,4 @@ msgctxt ""
"SFX_STR_SIDEBAR_SETTINGS\n"
"string.text"
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Innstillinger for sidepanelet"
diff --git a/source/nb/sfx2/uiconfig/ui.po b/source/nb/sfx2/uiconfig/ui.po
index 171219994c5..72f1e28da88 100644
--- a/source/nb/sfx2/uiconfig/ui.po
+++ b/source/nb/sfx2/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 14:38+0000\n"
+"PO-Revision-Date: 2016-03-08 23:43+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452263913.000000\n"
+"X-POOTLE-MTIME: 1457480617.000000\n"
#: alienwarndialog.ui
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Use %DEFAULTEXTENSION _Format"
-msgstr ""
+msgstr "Bruk %DEFAULTEXTENSION _Formatet"
#: alienwarndialog.ui
msgctxt ""
@@ -62,14 +62,13 @@ msgid "_Use %FORMATNAME Format"
msgstr "_Bruk %FORMATNAME-formatet"
#: alienwarndialog.ui
-#, fuzzy
msgctxt ""
"alienwarndialog.ui\n"
"ask\n"
"label\n"
"string.text"
msgid "_Ask when not saving in ODF or default format"
-msgstr "_Spør når det ikke blir lagret i ODF-format"
+msgstr "_Spør når det ikke blir lagret i ODF eller standardformat"
#: bookmarkdialog.ui
msgctxt ""
@@ -348,7 +347,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Save preview image with this document"
-msgstr ""
+msgstr "Lagre forhåndsvisning med dette dokumentet"
#: documentinfopage.ui
msgctxt ""
@@ -357,7 +356,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Reset Properties"
-msgstr ""
+msgstr "Tilbakestill egenskapene"
#: documentinfopage.ui
msgctxt ""
@@ -747,7 +746,6 @@ msgid "_Show License"
msgstr "_Vis lisens"
#: licensedialog.ui
-#, fuzzy
msgctxt ""
"licensedialog.ui\n"
"label\n"
@@ -952,7 +950,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Style"
-msgstr ""
+msgstr "Rediger stil"
#: managestylepage.ui
msgctxt ""
@@ -961,7 +959,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Style"
-msgstr ""
+msgstr "Rediger Stil"
#: managestylepage.ui
msgctxt ""
@@ -1546,7 +1544,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Remote File_s"
-msgstr ""
+msgstr "Eksterne Filer"
#: startcenter.ui
msgctxt ""
@@ -1576,7 +1574,6 @@ msgid "Create:"
msgstr "Lag:"
#: startcenter.ui
-#, fuzzy
msgctxt ""
"startcenter.ui\n"
"writer_all\n"
@@ -1586,54 +1583,49 @@ msgid "_Writer Document"
msgstr "_Tekstdokument"
#: startcenter.ui
-#, fuzzy
msgctxt ""
"startcenter.ui\n"
"calc_all\n"
"label\n"
"string.text"
msgid "_Calc Spreadsheet"
-msgstr "_Regneark"
+msgstr "_Calc Regneark"
#: startcenter.ui
-#, fuzzy
msgctxt ""
"startcenter.ui\n"
"impress_all\n"
"label\n"
"string.text"
msgid "_Impress Presentation"
-msgstr "_Presentasjon"
+msgstr "_Impress Presentasjon"
#: startcenter.ui
-#, fuzzy
msgctxt ""
"startcenter.ui\n"
"draw_all\n"
"label\n"
"string.text"
msgid "_Draw Drawing"
-msgstr "T_egning"
+msgstr "_Draw Tegning"
#: startcenter.ui
-#, fuzzy
msgctxt ""
"startcenter.ui\n"
"math_all\n"
"label\n"
"string.text"
msgid "_Math Formula"
-msgstr "_Formel"
+msgstr "_Math Formel"
#: startcenter.ui
-#, fuzzy
msgctxt ""
"startcenter.ui\n"
"database_all\n"
"label\n"
"string.text"
msgid "_Base Database"
-msgstr "_Database"
+msgstr "_Base Database"
#: startcenter.ui
msgctxt ""
@@ -1642,7 +1634,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "He_lp"
-msgstr ""
+msgstr "Hje_lp"
#: startcenter.ui
msgctxt ""
diff --git a/source/nb/starmath/source.po b/source/nb/starmath/source.po
index 1a822ca2aa5..aeaf58065b4 100644
--- a/source/nb/starmath/source.po
+++ b/source/nb/starmath/source.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:40+0200\n"
-"PO-Revision-Date: 2015-08-22 06:58+0000\n"
-"Last-Translator: Klaus Ade Johnstad <klausade@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 23:48+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440226680.000000\n"
+"X-POOTLE-MTIME: 1457480882.000000\n"
#: commands.src
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"RID_XOTIMESY_HELP\n"
"string.text"
msgid "Tensor Product"
-msgstr ""
+msgstr "Tensorprodukt"
#: commands.src
msgctxt ""
@@ -1158,7 +1158,7 @@ msgctxt ""
"RID_COLORX_AQUA_HELP\n"
"string.text"
msgid "Color Aqua"
-msgstr ""
+msgstr "Farge cyanblå"
#: commands.src
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"RID_COLORX_FUCHSIA_HELP\n"
"string.text"
msgid "Color Fuchsia"
-msgstr ""
+msgstr "Farge magentarød"
#: commands.src
msgctxt ""
@@ -1174,7 +1174,7 @@ msgctxt ""
"RID_COLORX_GRAY_HELP\n"
"string.text"
msgid "Color Gray"
-msgstr ""
+msgstr "Farge Grå"
#: commands.src
msgctxt ""
@@ -1182,7 +1182,7 @@ msgctxt ""
"RID_COLORX_LIME_HELP\n"
"string.text"
msgid "Color Lime"
-msgstr ""
+msgstr "Farge Lime"
#: commands.src
msgctxt ""
@@ -1190,7 +1190,7 @@ msgctxt ""
"RID_COLORX_MAROON_HELP\n"
"string.text"
msgid "Color Maroon"
-msgstr ""
+msgstr "Farge rødbrun"
#: commands.src
msgctxt ""
@@ -1198,7 +1198,7 @@ msgctxt ""
"RID_COLORX_NAVY_HELP\n"
"string.text"
msgid "Color Navy"
-msgstr ""
+msgstr "Farge marineblå"
#: commands.src
msgctxt ""
@@ -1206,7 +1206,7 @@ msgctxt ""
"RID_COLORX_OLIVE_HELP\n"
"string.text"
msgid "Color Olive"
-msgstr ""
+msgstr "Farge olivengrønn"
#: commands.src
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"RID_COLORX_PURPLE_HELP\n"
"string.text"
msgid "Color Purple"
-msgstr ""
+msgstr "Farge lilla"
#: commands.src
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"RID_COLORX_SILVER_HELP\n"
"string.text"
msgid "Color Silver"
-msgstr ""
+msgstr "Farge Sølv"
#: commands.src
msgctxt ""
@@ -1230,7 +1230,7 @@ msgctxt ""
"RID_COLORX_TEAL_HELP\n"
"string.text"
msgid "Color Teal"
-msgstr ""
+msgstr "Farge Mørk Grønnblå"
#: commands.src
msgctxt ""
@@ -2243,7 +2243,7 @@ msgctxt ""
"STR_AQUA\n"
"string.text"
msgid "aqua"
-msgstr ""
+msgstr "Cyanblå"
#: smres.src
msgctxt ""
@@ -2251,7 +2251,7 @@ msgctxt ""
"STR_FUCHSIA\n"
"string.text"
msgid "fuchsia"
-msgstr ""
+msgstr "Magentarød"
#: smres.src
msgctxt ""
@@ -2259,7 +2259,7 @@ msgctxt ""
"STR_GRAY\n"
"string.text"
msgid "gray"
-msgstr ""
+msgstr "Grå"
#: smres.src
msgctxt ""
@@ -2267,7 +2267,7 @@ msgctxt ""
"STR_LIME\n"
"string.text"
msgid "lime"
-msgstr ""
+msgstr "Lime"
#: smres.src
msgctxt ""
@@ -2275,7 +2275,7 @@ msgctxt ""
"STR_MAROON\n"
"string.text"
msgid "maroon"
-msgstr ""
+msgstr "Rødbrun"
#: smres.src
msgctxt ""
@@ -2283,7 +2283,7 @@ msgctxt ""
"STR_NAVY\n"
"string.text"
msgid "navy"
-msgstr ""
+msgstr "Marineblå"
#: smres.src
msgctxt ""
@@ -2291,7 +2291,7 @@ msgctxt ""
"STR_OLIVE\n"
"string.text"
msgid "olive"
-msgstr ""
+msgstr "olivengrønn"
#: smres.src
msgctxt ""
@@ -2299,7 +2299,7 @@ msgctxt ""
"STR_PURPLE\n"
"string.text"
msgid "purple"
-msgstr ""
+msgstr "lilla"
#: smres.src
msgctxt ""
@@ -2307,7 +2307,7 @@ msgctxt ""
"STR_SILVER\n"
"string.text"
msgid "silver"
-msgstr ""
+msgstr "sølv"
#: smres.src
msgctxt ""
@@ -2315,7 +2315,7 @@ msgctxt ""
"STR_TEAL\n"
"string.text"
msgid "teal"
-msgstr ""
+msgstr "blågrønn"
#: smres.src
msgctxt ""
@@ -4725,7 +4725,6 @@ msgid "Gap"
msgstr "Mellomrom"
#: toolbox.src
-#, fuzzy
msgctxt ""
"toolbox.src\n"
"TOOLBOX_CAT_I\n"
diff --git a/source/nb/starmath/uiconfig/smath/ui.po b/source/nb/starmath/uiconfig/smath/ui.po
index cdb523682bd..f6c1a81837c 100644
--- a/source/nb/starmath/uiconfig/smath/ui.po
+++ b/source/nb/starmath/uiconfig/smath/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-22 06:42+0000\n"
-"Last-Translator: Klaus Ade Johnstad <klausade@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 23:48+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440225742.000000\n"
+"X-POOTLE-MTIME: 1457480937.000000\n"
#: alignmentdialog.ui
msgctxt ""
@@ -98,14 +98,13 @@ msgid "_Edit..."
msgstr "R_ediger …"
#: catalogdialog.ui
-#, fuzzy
msgctxt ""
"catalogdialog.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "_Symbol set:"
-msgstr "_Symbolsett"
+msgstr "_Symbolsett:"
#: catalogdialog.ui
msgctxt ""
@@ -132,7 +131,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Elements"
-msgstr ""
+msgstr "Elementer"
#: fontdialog.ui
msgctxt ""
@@ -198,67 +197,60 @@ msgid "_Default"
msgstr "_Standard"
#: fontsizedialog.ui
-#, fuzzy
msgctxt ""
"fontsizedialog.ui\n"
"label4\n"
"label\n"
"string.text"
msgid "Base _size:"
-msgstr "Grunn_størrelse"
+msgstr "Grunn_størrelse:"
#: fontsizedialog.ui
-#, fuzzy
msgctxt ""
"fontsizedialog.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "_Operators:"
-msgstr "_Operatorer"
+msgstr "_Operatorer:"
#: fontsizedialog.ui
-#, fuzzy
msgctxt ""
"fontsizedialog.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "_Limits:"
-msgstr "_Grenser"
+msgstr "_Grenser:"
#: fontsizedialog.ui
-#, fuzzy
msgctxt ""
"fontsizedialog.ui\n"
"label5\n"
"label\n"
"string.text"
msgid "_Text:"
-msgstr "_Tekst"
+msgstr "_Tekst:"
#: fontsizedialog.ui
-#, fuzzy
msgctxt ""
"fontsizedialog.ui\n"
"label7\n"
"label\n"
"string.text"
msgid "_Functions:"
-msgstr "_Funksjoner"
+msgstr "_Funksjoner:"
#: fontsizedialog.ui
-#, fuzzy
msgctxt ""
"fontsizedialog.ui\n"
"label6\n"
"label\n"
"string.text"
msgid "_Indexes:"
-msgstr "_Registre"
+msgstr "_Registre:"
#: fontsizedialog.ui
-#, fuzzy
msgctxt ""
"fontsizedialog.ui\n"
"label1\n"
@@ -295,47 +287,42 @@ msgid "_Default"
msgstr "_Standard"
#: fonttypedialog.ui
-#, fuzzy
msgctxt ""
"fonttypedialog.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "_Variables:"
-msgstr "_Variabler"
+msgstr "_Variabler:"
#: fonttypedialog.ui
-#, fuzzy
msgctxt ""
"fonttypedialog.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "_Functions:"
-msgstr "_Funksjoner"
+msgstr "_Funksjoner:"
#: fonttypedialog.ui
-#, fuzzy
msgctxt ""
"fonttypedialog.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "_Numbers:"
-msgstr "T_all"
+msgstr "_Tall:"
#: fonttypedialog.ui
-#, fuzzy
msgctxt ""
"fonttypedialog.ui\n"
"label4\n"
"label\n"
"string.text"
msgid "_Text:"
-msgstr "_Tekst"
+msgstr "_Tekst:"
#: fonttypedialog.ui
-#, fuzzy
msgctxt ""
"fonttypedialog.ui\n"
"formulaL\n"
@@ -345,14 +332,13 @@ msgid "Formula Fonts"
msgstr "Formelskrifter"
#: fonttypedialog.ui
-#, fuzzy
msgctxt ""
"fonttypedialog.ui\n"
"label5\n"
"label\n"
"string.text"
msgid "_Serif:"
-msgstr "_Seriff"
+msgstr "_Serif:"
#: fonttypedialog.ui
msgctxt ""
@@ -361,7 +347,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "S_ans-serif:"
-msgstr ""
+msgstr "S_ans-serif:"
#: fonttypedialog.ui
msgctxt ""
@@ -370,10 +356,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "F_ixed-width:"
-msgstr ""
+msgstr "_Fastbredde:"
#: fonttypedialog.ui
-#, fuzzy
msgctxt ""
"fonttypedialog.ui\n"
"customL\n"
@@ -434,7 +419,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "S_ans-serif"
-msgstr ""
+msgstr "S_ans-serif"
#: fonttypedialog.ui
msgctxt ""
@@ -443,7 +428,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Fixe_d-width"
-msgstr ""
+msgstr "_Fast bredde:"
#: printeroptions.ui
msgctxt ""
@@ -500,14 +485,13 @@ msgid "Fit to page"
msgstr "Tilpass til side"
#: printeroptions.ui
-#, fuzzy
msgctxt ""
"printeroptions.ui\n"
"scaling\n"
"label\n"
"string.text"
msgid "Scaling:"
-msgstr "Skalering"
+msgstr "Skalering:"
#: printeroptions.ui
msgctxt ""
@@ -573,7 +557,6 @@ msgid "B_order"
msgstr "_Kantlinje"
#: smathsettings.ui
-#, fuzzy
msgctxt ""
"smathsettings.ui\n"
"label4\n"
@@ -601,17 +584,15 @@ msgid "Fit to _page"
msgstr "_Tilpass til side"
#: smathsettings.ui
-#, fuzzy
msgctxt ""
"smathsettings.ui\n"
"sizezoomed\n"
"label\n"
"string.text"
msgid "_Scaling:"
-msgstr "_Skalering"
+msgstr "_Skalering:"
#: smathsettings.ui
-#, fuzzy
msgctxt ""
"smathsettings.ui\n"
"label5\n"
@@ -645,10 +626,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Auto close brackets, parentheses and braces"
-msgstr ""
+msgstr "Lukk bueeparenteser, parenteser og krøllparenteser automatisk"
#: smathsettings.ui
-#, fuzzy
msgctxt ""
"smathsettings.ui\n"
"label1\n"
@@ -703,34 +683,31 @@ msgid "Title"
msgstr "Overskrift"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"1label1\n"
"label\n"
"string.text"
msgid "_Spacing:"
-msgstr "_Avstand"
+msgstr "_Avstand:"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"1label2\n"
"label\n"
"string.text"
msgid "_Line spacing:"
-msgstr "_Linjeavstand"
+msgstr "_Linjeavstand:"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"1label3\n"
"label\n"
"string.text"
msgid "_Root spacing:"
-msgstr "_Rotavstand"
+msgstr "_Rotavstand:"
#: spacingdialog.ui
msgctxt ""
@@ -742,14 +719,13 @@ msgid "Spacing"
msgstr "Avstand"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"2label1\n"
"label\n"
"string.text"
msgid "_Superscript:"
-msgstr "_Hevet skrift"
+msgstr "_Superskript:"
#: spacingdialog.ui
msgctxt ""
@@ -770,24 +746,22 @@ msgid "Indexes"
msgstr "Registre"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"3label1\n"
"label\n"
"string.text"
msgid "_Numerator:"
-msgstr "_Teller"
+msgstr "_Teller:"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"3label2\n"
"label\n"
"string.text"
msgid "_Denominator:"
-msgstr "_Nevner"
+msgstr "_Nevner:"
#: spacingdialog.ui
msgctxt ""
@@ -799,54 +773,49 @@ msgid "Fractions"
msgstr "Brøker"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"4label1\n"
"label\n"
"string.text"
msgid "_Excess length:"
-msgstr "_Overskytende lengde"
+msgstr "_Overskytende lengde:"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"4label2\n"
"label\n"
"string.text"
msgid "_Weight:"
-msgstr "_Vekt"
+msgstr "_Vekt:"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"4title\n"
"label\n"
"string.text"
msgid "Fraction Bar"
-msgstr "Brøkstreker"
+msgstr "Brøkstrek"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"5label1\n"
"label\n"
"string.text"
msgid "_Upper limit:"
-msgstr "_Øvre grense"
+msgstr "_Øvre grense:"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"5label2\n"
"label\n"
"string.text"
msgid "_Lower limit:"
-msgstr "_Nedre grense"
+msgstr "_Nedre grense:"
#: spacingdialog.ui
msgctxt ""
@@ -858,34 +827,31 @@ msgid "Limits"
msgstr "Grenser"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"6label1\n"
"label\n"
"string.text"
msgid "_Excess size (left/right):"
-msgstr "_Overskytende (venstre/høyre)"
+msgstr "_Overskytende (venstre/høyre):"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"6label2\n"
"label\n"
"string.text"
msgid "_Spacing:"
-msgstr "_Avstand"
+msgstr "_Avstand:"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"6label4\n"
"label\n"
"string.text"
msgid "_Excess size:"
-msgstr "_Overskytende størrelse"
+msgstr "_Overskytende størrelse:"
#: spacingdialog.ui
msgctxt ""
@@ -897,24 +863,22 @@ msgid "Brackets"
msgstr "Parenteser"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"7label1\n"
"label\n"
"string.text"
msgid "_Line spacing:"
-msgstr "_Linjeavstand"
+msgstr "_Linjeavstand:"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"7label2\n"
"label\n"
"string.text"
msgid "_Column spacing:"
-msgstr "_Kolonneavstand"
+msgstr "_Kolonneavstand:"
#: spacingdialog.ui
msgctxt ""
@@ -926,24 +890,22 @@ msgid "Matrix"
msgstr "Matrise"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"8label1\n"
"label\n"
"string.text"
msgid "_Primary height:"
-msgstr "_Primærhøyde"
+msgstr "_Primærhøyde:"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"8label2\n"
"label\n"
"string.text"
msgid "_Minimum spacing:"
-msgstr "_Minste avstand"
+msgstr "_Minste avstand:"
#: spacingdialog.ui
msgctxt ""
@@ -955,24 +917,22 @@ msgid "Symbols"
msgstr "Symboler"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"9label1\n"
"label\n"
"string.text"
msgid "_Excess size:"
-msgstr "_Overskytende størrelse"
+msgstr "_Overskytende størrelse:"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"9label2\n"
"label\n"
"string.text"
msgid "_Spacing:"
-msgstr "_Avstand"
+msgstr "_Avstand:"
#: spacingdialog.ui
msgctxt ""
@@ -984,44 +944,40 @@ msgid "Operators"
msgstr "Operatorer"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"10label1\n"
"label\n"
"string.text"
msgid "_Left:"
-msgstr "_Venstre"
+msgstr "_Venstre:"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"10label2\n"
"label\n"
"string.text"
msgid "_Right:"
-msgstr "_Høyre"
+msgstr "_Høyre:"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"10label3\n"
"label\n"
"string.text"
msgid "_Top:"
-msgstr "Øv_erst"
+msgstr "_Øverst:"
#: spacingdialog.ui
-#, fuzzy
msgctxt ""
"spacingdialog.ui\n"
"10label4\n"
"label\n"
"string.text"
msgid "_Bottom:"
-msgstr "_Nederst"
+msgstr "_Nederst:"
#: spacingdialog.ui
msgctxt ""
@@ -1132,7 +1088,6 @@ msgid "Edit Symbols"
msgstr "Rediger symboler"
#: symdefinedialog.ui
-#, fuzzy
msgctxt ""
"symdefinedialog.ui\n"
"oldSymbolSetText\n"
@@ -1142,44 +1097,40 @@ msgid "O_ld symbol set:"
msgstr "_Gammelt symbolsett"
#: symdefinedialog.ui
-#, fuzzy
msgctxt ""
"symdefinedialog.ui\n"
"oldSymbolText\n"
"label\n"
"string.text"
msgid "_Old symbol:"
-msgstr "_Gammelt symbol"
+msgstr "_Gammelt symbol:"
#: symdefinedialog.ui
-#, fuzzy
msgctxt ""
"symdefinedialog.ui\n"
"symbolText\n"
"label\n"
"string.text"
msgid "_Symbol:"
-msgstr "_Symbol"
+msgstr "_Symbol:"
#: symdefinedialog.ui
-#, fuzzy
msgctxt ""
"symdefinedialog.ui\n"
"symbolSetText\n"
"label\n"
"string.text"
msgid "Symbol s_et:"
-msgstr "_Symbolsett"
+msgstr "_Symbolsett:"
#: symdefinedialog.ui
-#, fuzzy
msgctxt ""
"symdefinedialog.ui\n"
"fontText\n"
"label\n"
"string.text"
msgid "_Font:"
-msgstr "_Skrift"
+msgstr "_Skrift:"
#: symdefinedialog.ui
msgctxt ""
@@ -1188,7 +1139,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "S_tyle:"
-msgstr ""
+msgstr "Stil:"
#: symdefinedialog.ui
msgctxt ""
@@ -1197,7 +1148,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "S_ubset:"
-msgstr ""
+msgstr "Undergruppe:"
#: symdefinedialog.ui
msgctxt ""
diff --git a/source/nb/svtools/source/contnr.po b/source/nb/svtools/source/contnr.po
index 69cd95ac01c..c07656c59e5 100644
--- a/source/nb/svtools/source/contnr.po
+++ b/source/nb/svtools/source/contnr.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: 2013-01-22 05:41+0000\n"
-"Last-Translator: Olav <odahlum@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 23:49+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1358833274.0\n"
+"X-POOTLE-MTIME: 1457480974.000000\n"
#: fileview.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"STR_SVT_FILEVIEW_COLUMN_TITLE\n"
"string.text"
msgid "Name"
-msgstr ""
+msgstr "Navn"
#: fileview.src
msgctxt ""
diff --git a/source/nb/svtools/source/control.po b/source/nb/svtools/source/control.po
index c1d434f73c9..978d9155e4d 100644
--- a/source/nb/svtools/source/control.po
+++ b/source/nb/svtools/source/control.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-06-24 17:06+0200\n"
-"PO-Revision-Date: 2014-09-13 00:04+0000\n"
+"PO-Revision-Date: 2016-03-08 23:49+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1410566671.000000\n"
+"X-POOTLE-MTIME: 1457480994.000000\n"
#: calendar.src
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"STR_TABBAR_PUSHBUTTON_ADDTAB\n"
"string.text"
msgid "Add"
-msgstr ""
+msgstr "Legg til"
#: ruler.src
msgctxt ""
diff --git a/source/nb/svtools/source/dialogs.po b/source/nb/svtools/source/dialogs.po
index d79fd028fb9..01a9a7201e5 100644
--- a/source/nb/svtools/source/dialogs.po
+++ b/source/nb/svtools/source/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: 2015-08-25 12:33+0200\n"
-"PO-Revision-Date: 2015-08-22 06:58+0000\n"
-"Last-Translator: Klaus Ade Johnstad <klausade@gmail.com>\n"
+"PO-Revision-Date: 2016-03-08 23:50+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440226691.000000\n"
+"X-POOTLE-MTIME: 1457481056.000000\n"
#: addresstemplate.src
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"STR_SVT_DEFAULT_SERVICE_LABEL\n"
"string.text"
msgid "$user$'s $service$"
-msgstr ""
+msgstr "$user$'s $service$"
#: formats.src
msgctxt ""
diff --git a/source/nb/svtools/source/misc.po b/source/nb/svtools/source/misc.po
index fbb6b037bc9..43c188cbe2c 100644
--- a/source/nb/svtools/source/misc.po
+++ b/source/nb/svtools/source/misc.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-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-08-22 07:01+0000\n"
+"PO-Revision-Date: 2016-03-08 23:54+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440226864.000000\n"
+"X-POOTLE-MTIME: 1457481277.000000\n"
#: imagemgr.src
msgctxt ""
@@ -951,7 +951,7 @@ msgctxt ""
"LANGUAGE_USER_CHURCH_SLAVIC\n"
"pairedlist.text"
msgid "Church Slavic"
-msgstr ""
+msgstr "Kirkeslavisk"
#: langtab.src
msgctxt ""
@@ -2232,7 +2232,6 @@ msgid "Sardinian"
msgstr "Sardisk"
#: langtab.src
-#, fuzzy
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
@@ -2815,7 +2814,7 @@ msgctxt ""
"LANGUAGE_GUARANI_PARAGUAY\n"
"pairedlist.text"
msgid "Guarani (Paraguay)"
-msgstr ""
+msgstr "Guaraní (Paraguay)"
#: langtab.src
msgctxt ""
@@ -3778,27 +3777,25 @@ msgctxt ""
"LANGUAGE_USER_VENETIAN\n"
"pairedlist.text"
msgid "Venetian"
-msgstr ""
+msgstr "Venetiansk"
#: langtab.src
-#, fuzzy
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
"LANGUAGE_USER_ENGLISH_GAMBIA\n"
"pairedlist.text"
msgid "English (Gambia)"
-msgstr "Engelsk (Namibia)"
+msgstr "Engelsk (Gambia)"
#: langtab.src
-#, fuzzy
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
"LANGUAGE_USER_OCCITAN_ARANESE\n"
"pairedlist.text"
msgid "Aranese"
-msgstr "Aragonsk"
+msgstr "Aranesisk"
#: langtab.src
msgctxt ""
@@ -3807,7 +3804,7 @@ msgctxt ""
"LANGUAGE_USER_ARPITAN_FRANCE\n"
"pairedlist.text"
msgid "Arpitan (France)"
-msgstr ""
+msgstr "Arpitansk (Frankrike)"
#: langtab.src
msgctxt ""
@@ -3816,17 +3813,16 @@ msgctxt ""
"LANGUAGE_USER_ARPITAN_ITALY\n"
"pairedlist.text"
msgid "Arpitan (Italy)"
-msgstr ""
+msgstr "Arpitansk (Italia)"
#: langtab.src
-#, fuzzy
msgctxt ""
"langtab.src\n"
"STR_ARR_SVT_LANGUAGE_TABLE\n"
"LANGUAGE_USER_ARPITAN_SWITZERLAND\n"
"pairedlist.text"
msgid "Arpitan (Switzerland)"
-msgstr "Tysk (Sveits)"
+msgstr "Arpitansk (Sveits)"
#: langtab.src
msgctxt ""
@@ -3835,7 +3831,7 @@ msgctxt ""
"LANGUAGE_USER_ENGLISH_BOTSWANA\n"
"pairedlist.text"
msgid "English (Botswana)"
-msgstr ""
+msgstr "Engelsk (Botswana)"
#: svtools.src
msgctxt ""
diff --git a/source/nb/svtools/uiconfig/ui.po b/source/nb/svtools/uiconfig/ui.po
index bb266f074d2..93a64b29261 100644
--- a/source/nb/svtools/uiconfig/ui.po
+++ b/source/nb/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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-06-26 02:27+0000\n"
+"PO-Revision-Date: 2016-03-08 23:55+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435285679.000000\n"
+"X-POOTLE-MTIME: 1457481313.000000\n"
#: GraphicExportOptionsDialog.ui
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Image Options"
-msgstr ""
+msgstr "Innstillingar for bilder"
#: GraphicExportOptionsDialog.ui
msgctxt ""
@@ -98,7 +98,6 @@ msgid "Templates: Address Book Assignment"
msgstr "Maler: Adressebokoppgaver"
#: addresstemplatedialog.ui
-#, fuzzy
msgctxt ""
"addresstemplatedialog.ui\n"
"label33\n"
@@ -108,14 +107,13 @@ msgid "Data source:"
msgstr "Datakilde"
#: addresstemplatedialog.ui
-#, fuzzy
msgctxt ""
"addresstemplatedialog.ui\n"
"label43\n"
"label\n"
"string.text"
msgid "Table:"
-msgstr "Tabell"
+msgstr "Tabell:"
#: addresstemplatedialog.ui
msgctxt ""
@@ -217,7 +215,6 @@ msgid "Compression"
msgstr "Komprimering"
#: graphicexport.ui
-#, fuzzy
msgctxt ""
"graphicexport.ui\n"
"rlecb\n"
@@ -299,7 +296,6 @@ msgid "Encoding"
msgstr "Tegnkoding"
#: graphicexport.ui
-#, fuzzy
msgctxt ""
"graphicexport.ui\n"
"tiffpreviewcb\n"
@@ -516,24 +512,22 @@ msgid "File Services"
msgstr "Filtjenester"
#: placeedit.ui
-#, fuzzy
msgctxt ""
"placeedit.ui\n"
"typeLabel\n"
"label\n"
"string.text"
msgid "Type:"
-msgstr "Type"
+msgstr "Type:"
#: placeedit.ui
-#, fuzzy
msgctxt ""
"placeedit.ui\n"
"hostLabel\n"
"label\n"
"string.text"
msgid "Host:"
-msgstr "Tjener"
+msgstr "Tjener:"
#: placeedit.ui
msgctxt ""
@@ -542,27 +536,25 @@ msgctxt ""
"label\n"
"string.text"
msgid "Root:"
-msgstr ""
+msgstr "Rot:"
#: placeedit.ui
-#, fuzzy
msgctxt ""
"placeedit.ui\n"
"shareLabel\n"
"label\n"
"string.text"
msgid "Share:"
-msgstr "Delt ressurs"
+msgstr "Del:"
#: placeedit.ui
-#, fuzzy
msgctxt ""
"placeedit.ui\n"
"repositoryLabel\n"
"label\n"
"string.text"
msgid "Repository:"
-msgstr "Arkiv"
+msgstr "Arkiv:"
#: placeedit.ui
msgctxt ""
@@ -571,7 +563,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Secure connection"
-msgstr ""
+msgstr "Sikker tilkobling"
#: placeedit.ui
msgctxt ""
@@ -580,7 +572,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "User:"
-msgstr ""
+msgstr "Bruker:"
#: placeedit.ui
msgctxt ""
@@ -589,17 +581,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "Label:"
-msgstr ""
+msgstr "Etikett:"
#: placeedit.ui
-#, fuzzy
msgctxt ""
"placeedit.ui\n"
"portLabel\n"
"label\n"
"string.text"
msgid "Port:"
-msgstr "Port"
+msgstr "Port:"
#: placeedit.ui
msgctxt ""
@@ -608,7 +599,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Password:"
-msgstr ""
+msgstr "Passord:"
#: placeedit.ui
msgctxt ""
@@ -617,7 +608,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Remember password"
-msgstr ""
+msgstr "Husk passordet"
#: placeedit.ui
msgctxt ""
@@ -674,54 +665,49 @@ msgid "Options..."
msgstr "Valg …"
#: printersetupdialog.ui
-#, fuzzy
msgctxt ""
"printersetupdialog.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "Name:"
-msgstr "Navn"
+msgstr "Navn:"
#: printersetupdialog.ui
-#, fuzzy
msgctxt ""
"printersetupdialog.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "Status:"
-msgstr "Status"
+msgstr "Status:"
#: printersetupdialog.ui
-#, fuzzy
msgctxt ""
"printersetupdialog.ui\n"
"label4\n"
"label\n"
"string.text"
msgid "Type:"
-msgstr "Type"
+msgstr "Type:"
#: printersetupdialog.ui
-#, fuzzy
msgctxt ""
"printersetupdialog.ui\n"
"label5\n"
"label\n"
"string.text"
msgid "Location:"
-msgstr "Plassering"
+msgstr "Plassering:"
#: printersetupdialog.ui
-#, fuzzy
msgctxt ""
"printersetupdialog.ui\n"
"label6\n"
"label\n"
"string.text"
msgid "Comment:"
-msgstr "Merknad"
+msgstr "Merknad:"
#: printersetupdialog.ui
msgctxt ""
@@ -805,7 +791,6 @@ msgid "Restart %PRODUCTNAME"
msgstr "Omstart av %PRODUCTNAME"
#: restartdialog.ui
-#, fuzzy
msgctxt ""
"restartdialog.ui\n"
"yes\n"
@@ -815,7 +800,6 @@ msgid "Restart Now"
msgstr "Start på nytt nå"
#: restartdialog.ui
-#, fuzzy
msgctxt ""
"restartdialog.ui\n"
"no\n"
@@ -852,14 +836,13 @@ msgid "For the bibliography to work properly, %PRODUCTNAME must be restarted."
msgstr "For å sikre at litteraturdatabasen virker ordentlig, må %PRODUCTNAME startes på nytt."
#: restartdialog.ui
-#, fuzzy
msgctxt ""
"restartdialog.ui\n"
"reason_mailmerge_install\n"
"label\n"
"string.text"
msgid "For the mail merge to work properly, %PRODUCTNAME must be restarted."
-msgstr "For å sikre at litteraturdatabasen virker ordentlig, må %PRODUCTNAME startes på nytt."
+msgstr "For å sikre at brevflettingen virker ordentlig, må %PRODUCTNAME startes på nytt."
#: restartdialog.ui
msgctxt ""
diff --git a/source/nb/svx/inc.po b/source/nb/svx/inc.po
index 3d5f4358aa2..892591303fb 100644
--- a/source/nb/svx/inc.po
+++ b/source/nb/svx/inc.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:33+0200\n"
-"PO-Revision-Date: 2015-06-26 02:27+0000\n"
+"PO-Revision-Date: 2016-03-08 23:55+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435285679.000000\n"
+"X-POOTLE-MTIME: 1457481354.000000\n"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"ITEM_OBJECT_CROP\n"
"#define.text"
msgid "Crop I~mage"
-msgstr ""
+msgstr "Beskjær bilde"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"ITEM_CHANGE_PICTURE\n"
"#define.text"
msgid "Replace Image..."
-msgstr ""
+msgstr "Erstatt Bilde"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -451,7 +451,7 @@ msgctxt ""
"SID_EQUALIZEWIDTH\n"
"menuitem.text"
msgid "Equalize ~Width"
-msgstr ""
+msgstr "Samme bredde"
#: globlmn_tmpl.hrc
msgctxt ""
@@ -460,7 +460,7 @@ msgctxt ""
"SID_EQUALIZEHEIGHT\n"
"menuitem.text"
msgid "Equalize ~Height"
-msgstr ""
+msgstr "Samme høyde"
#: globlmn_tmpl.hrc
msgctxt ""
diff --git a/source/nb/svx/source/dialog.po b/source/nb/svx/source/dialog.po
index acd7daf2fb7..c9864ab8161 100644
--- a/source/nb/svx/source/dialog.po
+++ b/source/nb/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-13 03:32+0000\n"
+"PO-Revision-Date: 2016-03-09 00:01+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431487932.000000\n"
+"X-POOTLE-MTIME: 1457481691.000000\n"
#: bmpmask.src
msgctxt ""
@@ -169,7 +169,6 @@ msgid "Switch"
msgstr "Bytt"
#: docrecovery.src
-#, fuzzy
msgctxt ""
"docrecovery.src\n"
"RID_SVXSTR_QUERY_EXIT_RECOVERY\n"
@@ -913,7 +912,6 @@ msgid "<All>"
msgstr "<Alle>"
#: sdstring.src
-#, fuzzy
msgctxt ""
"sdstring.src\n"
"STR_INSERT_SOUND_TITLE\n"
@@ -1791,7 +1789,7 @@ msgctxt ""
"RID_SVXSTR_GRDT70\n"
"string.text"
msgid "Tango Green"
-msgstr ""
+msgstr "Tango grønn"
#: sdstring.src
msgctxt ""
@@ -1799,7 +1797,7 @@ msgctxt ""
"RID_SVXSTR_GRDT71\n"
"string.text"
msgid "Subtle Tango Green"
-msgstr ""
+msgstr "Avdempet Tango grønn"
#: sdstring.src
msgctxt ""
@@ -1807,7 +1805,7 @@ msgctxt ""
"RID_SVXSTR_GRDT72\n"
"string.text"
msgid "Tango Purple"
-msgstr ""
+msgstr "Tango lilla"
#: sdstring.src
msgctxt ""
@@ -1815,7 +1813,7 @@ msgctxt ""
"RID_SVXSTR_GRDT73\n"
"string.text"
msgid "Tango Red"
-msgstr ""
+msgstr "Skarlagensrød"
#: sdstring.src
msgctxt ""
@@ -1823,7 +1821,7 @@ msgctxt ""
"RID_SVXSTR_GRDT74\n"
"string.text"
msgid "Tango Blue"
-msgstr ""
+msgstr "Tango: Himmelblå"
#: sdstring.src
msgctxt ""
@@ -1831,10 +1829,9 @@ msgctxt ""
"RID_SVXSTR_GRDT75\n"
"string.text"
msgid "Tango Yellow"
-msgstr ""
+msgstr "Tango gul"
#: sdstring.src
-#, fuzzy
msgctxt ""
"sdstring.src\n"
"RID_SVXSTR_GRDT76\n"
@@ -1848,7 +1845,7 @@ msgctxt ""
"RID_SVXSTR_GRDT77\n"
"string.text"
msgid "Tango Gray"
-msgstr ""
+msgstr "Tango grå"
#: sdstring.src
msgctxt ""
@@ -1856,7 +1853,7 @@ msgctxt ""
"RID_SVXSTR_GRDT78\n"
"string.text"
msgid "Clay"
-msgstr ""
+msgstr "Sandfarge"
#: sdstring.src
msgctxt ""
@@ -1864,7 +1861,7 @@ msgctxt ""
"RID_SVXSTR_GRDT79\n"
"string.text"
msgid "Olive Green"
-msgstr ""
+msgstr "Olivengrønn"
#: sdstring.src
msgctxt ""
@@ -1872,7 +1869,7 @@ msgctxt ""
"RID_SVXSTR_GRDT80\n"
"string.text"
msgid "Silver"
-msgstr ""
+msgstr "Sølv"
#: sdstring.src
msgctxt ""
@@ -1880,7 +1877,7 @@ msgctxt ""
"RID_SVXSTR_GRDT81\n"
"string.text"
msgid "Sunburst"
-msgstr ""
+msgstr "Soloppgang"
#: sdstring.src
msgctxt ""
@@ -1888,7 +1885,7 @@ msgctxt ""
"RID_SVXSTR_GRDT82\n"
"string.text"
msgid "Brownie"
-msgstr ""
+msgstr "Brownie"
#: sdstring.src
msgctxt ""
@@ -1896,7 +1893,7 @@ msgctxt ""
"RID_SVXSTR_GRDT83\n"
"string.text"
msgid "Sunset"
-msgstr ""
+msgstr "Solnedgang"
#: sdstring.src
msgctxt ""
@@ -1904,7 +1901,7 @@ msgctxt ""
"RID_SVXSTR_GRDT84\n"
"string.text"
msgid "Deep Green"
-msgstr ""
+msgstr "Mørke grønn"
#: sdstring.src
msgctxt ""
@@ -1912,7 +1909,7 @@ msgctxt ""
"RID_SVXSTR_GRDT85\n"
"string.text"
msgid "Deep Orange"
-msgstr ""
+msgstr "Dyp oransje"
#: sdstring.src
msgctxt ""
@@ -1920,7 +1917,7 @@ msgctxt ""
"RID_SVXSTR_GRDT86\n"
"string.text"
msgid "Deep Blue"
-msgstr ""
+msgstr "Mørke blå"
#: sdstring.src
msgctxt ""
@@ -1928,7 +1925,7 @@ msgctxt ""
"RID_SVXSTR_GRDT87\n"
"string.text"
msgid "Purple Haze"
-msgstr ""
+msgstr "Lilla dis"
#: sdstring.src
msgctxt ""
@@ -2790,7 +2787,6 @@ msgid "Not recovered yet"
msgstr "Ikke gjenopprettet ennå"
#: sdstring.src
-#, fuzzy
msgctxt ""
"sdstring.src\n"
"RID_SVXSTR_RECOVERY_INPROGRESS\n"
@@ -2799,7 +2795,6 @@ msgid "%PRODUCTNAME %PRODUCTVERSION will start to recover your documents. Depend
msgstr "%PRODUCTNAME %PRODUCTVERSION vil nå gjenopprette dokumentene. Dette kan ta en stund, spesielt hvis dokumentene er store."
#: sdstring.src
-#, fuzzy
msgctxt ""
"sdstring.src\n"
"RID_SVXSTR_RECOVERYONLY_FINISH_DESCR\n"
@@ -2884,13 +2879,12 @@ msgid "Search key not found"
msgstr "Fant ikke søkeord"
#: srchdlg.src
-#, fuzzy
msgctxt ""
"srchdlg.src\n"
"RID_SVXSTR_SEARCH_START\n"
"string.text"
msgid "Reached the beginning of the document"
-msgstr "Nådde slutten av dokumentet"
+msgstr "Nådde begynnelsen av dokumentet"
#: svxbmpnumvalueset.src
msgctxt ""
@@ -3793,7 +3787,7 @@ msgctxt ""
"RTL_TEXTENCODING_MS_1258\n"
"pairedlist.text"
msgid "Vietnamese (Windows-1258)"
-msgstr ""
+msgstr "Vietnamesisk (Windows-1258)"
#: txenctab.src
msgctxt ""
@@ -6160,7 +6154,7 @@ msgctxt ""
"RID_SUBSETSTR_BASSA_VAH\n"
"string.text"
msgid "Bassa Vah"
-msgstr ""
+msgstr "Bassa Vah"
#: ucsubset.src
msgctxt ""
@@ -6169,7 +6163,7 @@ msgctxt ""
"RID_SUBSETSTR_CAUCASIAN_ALBANIAN\n"
"string.text"
msgid "Caucasian Albanian"
-msgstr ""
+msgstr "Kaukasisk albansk"
#: ucsubset.src
msgctxt ""
@@ -6178,10 +6172,9 @@ msgctxt ""
"RID_SUBSETSTR_COPTIC_EPACT_NUMBERS\n"
"string.text"
msgid "Coptic Epact Numbers"
-msgstr ""
+msgstr "Koptiske epakttall"
#: ucsubset.src
-#, fuzzy
msgctxt ""
"ucsubset.src\n"
"RID_SUBSETMAP\n"
@@ -6197,7 +6190,7 @@ msgctxt ""
"RID_SUBSETSTR_DUPLOYAN\n"
"string.text"
msgid "Duployan"
-msgstr ""
+msgstr "Duployan"
#: ucsubset.src
msgctxt ""
@@ -6206,7 +6199,7 @@ msgctxt ""
"RID_SUBSETSTR_ELBASAN\n"
"string.text"
msgid "Elbasan"
-msgstr ""
+msgstr "Elbasan"
#: ucsubset.src
msgctxt ""
@@ -6215,7 +6208,7 @@ msgctxt ""
"RID_SUBSETSTR_GEOMETRIC_SHAPES_EXTENDED\n"
"string.text"
msgid "Geometric Shapes Extended"
-msgstr ""
+msgstr "Utvidede geometriske former"
#: ucsubset.src
msgctxt ""
@@ -6224,7 +6217,7 @@ msgctxt ""
"RID_SUBSETSTR_GRANTHA\n"
"string.text"
msgid "Grantha"
-msgstr ""
+msgstr "Grantha"
#: ucsubset.src
msgctxt ""
@@ -6233,7 +6226,7 @@ msgctxt ""
"RID_SUBSETSTR_KHOJKI\n"
"string.text"
msgid "Khojki"
-msgstr ""
+msgstr "Khojki"
#: ucsubset.src
msgctxt ""
@@ -6242,10 +6235,9 @@ msgctxt ""
"RID_SUBSETSTR_KHUDAWADI\n"
"string.text"
msgid "Khudawadi"
-msgstr ""
+msgstr "Khudawadi"
#: ucsubset.src
-#, fuzzy
msgctxt ""
"ucsubset.src\n"
"RID_SUBSETMAP\n"
@@ -6261,7 +6253,7 @@ msgctxt ""
"RID_SUBSETSTR_LINEAR_A\n"
"string.text"
msgid "Linear A"
-msgstr ""
+msgstr "Linjær A"
#: ucsubset.src
msgctxt ""
@@ -6270,7 +6262,7 @@ msgctxt ""
"RID_SUBSETSTR_MAHAJANI\n"
"string.text"
msgid "Mahajani"
-msgstr ""
+msgstr "Mahajani"
#: ucsubset.src
msgctxt ""
@@ -6279,7 +6271,7 @@ msgctxt ""
"RID_SUBSETSTR_MANICHAEAN\n"
"string.text"
msgid "Manichaean"
-msgstr ""
+msgstr "Manichaean"
#: ucsubset.src
msgctxt ""
@@ -6288,7 +6280,7 @@ msgctxt ""
"RID_SUBSETSTR_MENDE_KIKAKUI\n"
"string.text"
msgid "Mende Kikakui"
-msgstr ""
+msgstr "Mende Kikakui"
#: ucsubset.src
msgctxt ""
@@ -6297,7 +6289,7 @@ msgctxt ""
"RID_SUBSETSTR_MODI\n"
"string.text"
msgid "Modi"
-msgstr ""
+msgstr "Modi"
#: ucsubset.src
msgctxt ""
@@ -6306,17 +6298,16 @@ msgctxt ""
"RID_SUBSETSTR_MRO\n"
"string.text"
msgid "Mro"
-msgstr ""
+msgstr "Mro"
#: ucsubset.src
-#, fuzzy
msgctxt ""
"ucsubset.src\n"
"RID_SUBSETMAP\n"
"RID_SUBSETSTR_MYANMAR_EXTENDED_B\n"
"string.text"
msgid "Myanmar Extended-B"
-msgstr "Myanmarsk utvidet-A"
+msgstr "Myanmarsk utvidet-B"
#: ucsubset.src
msgctxt ""
@@ -6325,17 +6316,16 @@ msgctxt ""
"RID_SUBSETSTR_NABATAEAN\n"
"string.text"
msgid "Nabataean"
-msgstr ""
+msgstr "Nabataean"
#: ucsubset.src
-#, fuzzy
msgctxt ""
"ucsubset.src\n"
"RID_SUBSETMAP\n"
"RID_SUBSETSTR_OLD_NORTH_ARABIAN\n"
"string.text"
msgid "Old North Arabian"
-msgstr "Gammel sør-arabisk"
+msgstr "Gammel nord-arabisk"
#: ucsubset.src
msgctxt ""
@@ -6344,7 +6334,7 @@ msgctxt ""
"RID_SUBSETSTR_OLD_PERMIC\n"
"string.text"
msgid "Old Permic"
-msgstr ""
+msgstr "Gammelpermisk"
#: ucsubset.src
msgctxt ""
@@ -6353,7 +6343,7 @@ msgctxt ""
"RID_SUBSETSTR_ORNAMENTAL_DINGBATS\n"
"string.text"
msgid "Ornamental Dingbats"
-msgstr ""
+msgstr "Ornamentiske dingbats"
#: ucsubset.src
msgctxt ""
@@ -6362,7 +6352,7 @@ msgctxt ""
"RID_SUBSETSTR_PAHAWH_HMONG\n"
"string.text"
msgid "Pahawh Hmong"
-msgstr ""
+msgstr "Pahawh Hmong"
#: ucsubset.src
msgctxt ""
@@ -6371,7 +6361,7 @@ msgctxt ""
"RID_SUBSETSTR_PALMYRENE\n"
"string.text"
msgid "Palmyrene"
-msgstr ""
+msgstr "Palmyrene"
#: ucsubset.src
msgctxt ""
@@ -6380,7 +6370,7 @@ msgctxt ""
"RID_SUBSETSTR_PAU_CIN_HAU\n"
"string.text"
msgid "Pau Cin Hau"
-msgstr ""
+msgstr "Pau Cin Hau"
#: ucsubset.src
msgctxt ""
@@ -6389,7 +6379,7 @@ msgctxt ""
"RID_SUBSETSTR_PSALTER_PAHLAVI\n"
"string.text"
msgid "Psalter Pahlavi"
-msgstr ""
+msgstr "Psalter Pahlavi"
#: ucsubset.src
msgctxt ""
@@ -6398,7 +6388,7 @@ msgctxt ""
"RID_SUBSETSTR_SHORTHAND_FORMAT_CONTROLS\n"
"string.text"
msgid "Shorthand Format Controls"
-msgstr ""
+msgstr "Stenografi format controller"
#: ucsubset.src
msgctxt ""
@@ -6407,7 +6397,7 @@ msgctxt ""
"RID_SUBSETSTR_SIDDHAM\n"
"string.text"
msgid "Siddham"
-msgstr ""
+msgstr "Siddham"
#: ucsubset.src
msgctxt ""
@@ -6416,17 +6406,16 @@ msgctxt ""
"RID_SUBSETSTR_SINHALA_ARCHAIC_NUMBERS\n"
"string.text"
msgid "Sinhala Archaic Numbers"
-msgstr ""
+msgstr "Sinhalesiske talltegn"
#: ucsubset.src
-#, fuzzy
msgctxt ""
"ucsubset.src\n"
"RID_SUBSETMAP\n"
"RID_SUBSETSTR_SUPPLEMENTAL_ARROWS_C\n"
"string.text"
msgid "Supplemental Arrows-C"
-msgstr "Tilleggspiler A"
+msgstr "Tilleggspiler C"
#: ucsubset.src
msgctxt ""
@@ -6435,7 +6424,7 @@ msgctxt ""
"RID_SUBSETSTR_TIRHUTA\n"
"string.text"
msgid "Tirhuta"
-msgstr ""
+msgstr "Tirhuta"
#: ucsubset.src
msgctxt ""
@@ -6444,7 +6433,7 @@ msgctxt ""
"RID_SUBSETSTR_WARANG_CITI\n"
"string.text"
msgid "Warang Citi"
-msgstr ""
+msgstr "Warang Citi"
#: ucsubset.src
msgctxt ""
@@ -6453,7 +6442,7 @@ msgctxt ""
"RID_SUBSETSTR_AHOM\n"
"string.text"
msgid "Ahom"
-msgstr ""
+msgstr "Ahom"
#: ucsubset.src
msgctxt ""
@@ -6462,7 +6451,7 @@ msgctxt ""
"RID_SUBSETSTR_ANATOLIAN_HIEROGLYPHS\n"
"string.text"
msgid "Anatolian Hieroglyphs"
-msgstr ""
+msgstr "Anatoliske hieroglyfer"
#: ucsubset.src
msgctxt ""
@@ -6471,17 +6460,16 @@ msgctxt ""
"RID_SUBSETSTR_CHEROKEE_SUPPLEMENT\n"
"string.text"
msgid "Cherokee Supplement"
-msgstr ""
+msgstr "Cherokee tillegg"
#: ucsubset.src
-#, fuzzy
msgctxt ""
"ucsubset.src\n"
"RID_SUBSETMAP\n"
"RID_SUBSETSTR_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_E\n"
"string.text"
msgid "CJK Unified Ideographs Extension E"
-msgstr "CJK-enhetlige ordtegn utvidelse-A"
+msgstr "CJK-enhetlige ordtegn utvidelse-E"
#: ucsubset.src
msgctxt ""
@@ -6490,7 +6478,7 @@ msgctxt ""
"RID_SUBSETSTR_EARLY_DYNASTIC_CUNEIFORM\n"
"string.text"
msgid "Early Dynastic Cuneiform"
-msgstr ""
+msgstr "Tidlig dynastisk kileskrift"
#: ucsubset.src
msgctxt ""
@@ -6499,7 +6487,7 @@ msgctxt ""
"RID_SUBSETSTR_HATRAN\n"
"string.text"
msgid "Hatran"
-msgstr ""
+msgstr "Hatran"
#: ucsubset.src
msgctxt ""
@@ -6508,7 +6496,7 @@ msgctxt ""
"RID_SUBSETSTR_MULTANI\n"
"string.text"
msgid "Multani"
-msgstr ""
+msgstr "Multani"
#: ucsubset.src
msgctxt ""
@@ -6517,7 +6505,7 @@ msgctxt ""
"RID_SUBSETSTR_OLD_HUNGARIAN\n"
"string.text"
msgid "Old Hungarian"
-msgstr ""
+msgstr "Gammael Ungarsk"
#: ucsubset.src
msgctxt ""
@@ -6526,7 +6514,7 @@ msgctxt ""
"RID_SUBSETSTR_SUPPLEMENTAL_SYMBOLS_AND_PICTOGRAPHS\n"
"string.text"
msgid "Supplemental Symbols And Pictographs"
-msgstr ""
+msgstr "Tilleggssymbol og -piktogram"
#: ucsubset.src
msgctxt ""
@@ -6535,4 +6523,4 @@ msgctxt ""
"RID_SUBSETSTR_SUTTON_SIGNWRITING\n"
"string.text"
msgid "Sutton Signwriting"
-msgstr ""
+msgstr "Sutton signwriting"
diff --git a/source/nb/svx/source/form.po b/source/nb/svx/source/form.po
index 2f8a130ec6e..239b37067d0 100644
--- a/source/nb/svx/source/form.po
+++ b/source/nb/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: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: 2015-05-13 03:33+0000\n"
+"PO-Revision-Date: 2016-03-09 00:02+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431487983.000000\n"
+"X-POOTLE-MTIME: 1457481775.000000\n"
#: datanavi.src
msgctxt ""
@@ -25,6 +25,8 @@ msgid ""
"Deleting the model '$MODELNAME' affects all controls currently bound to this model.\n"
"Do you really want to delete this model?"
msgstr ""
+"Sletting av modellen \"$MODELNAME\" vil påvirke alle kontrollelementene som er bundet til denne modellen.\n"
+"Vil du virkelig slette denne modellen?"
#: datanavi.src
msgctxt ""
@@ -35,6 +37,8 @@ msgid ""
"Deleting the instance '$INSTANCENAME' affects all controls currently bound to this instance.\n"
"Do you really want to delete this instance?"
msgstr ""
+"Sletting av instansen «$INSTANCENAME» vil påvirke alle kontrollelementene som er bundet til denne instansen.\n"
+"Vil du virkelig slette denne instansen?"
#: datanavi.src
msgctxt ""
@@ -45,6 +49,8 @@ msgid ""
"Deleting the element '$ELEMENTNAME' affects all controls currently bound to this element.\n"
"Do you really want to delete this element?"
msgstr ""
+"Sletting av elementet «$ELEMENTNAME» vil påvirke alle kontrollelementene som er bundet til dette elementet.\n"
+"Vil du virkelig slette dette elementet?"
#: datanavi.src
msgctxt ""
@@ -64,6 +70,8 @@ msgid ""
"\n"
"Do you really want to delete this submission?"
msgstr ""
+"Sletting av sendinga \"$SUBMISSIONNAME\" vil påvirke alle kontrollelementene som er bundet til denne sendingen.\n"
+"Vil du virkelig slette denne sendingen?"
#: datanavi.src
msgctxt ""
@@ -75,6 +83,9 @@ msgid ""
"\n"
"Do you really want to delete this binding?"
msgstr ""
+"Sletting av bindinga \"$BINDINGNAME\" vil påvirke alle kontrollelementene som er bundet til denne bindinga.\n"
+"\n"
+"Vil du virkelig slette denne bindingen?"
#: datanavi.src
msgctxt ""
@@ -1580,7 +1591,7 @@ msgctxt ""
"RID_STR_OBJECT_LABEL\n"
"string.text"
msgid "#object# label"
-msgstr "#objekt# merkelapp"
+msgstr "#object# merkelapp"
#: formshell.src
msgctxt ""
diff --git a/source/nb/svx/source/items.po b/source/nb/svx/source/items.po
index 59e3ac0d1e7..1a18f6d70ef 100644
--- a/source/nb/svx/source/items.po
+++ b/source/nb/svx/source/items.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-06-24 17:06+0200\n"
-"PO-Revision-Date: 2014-09-13 00:05+0000\n"
+"PO-Revision-Date: 2016-03-09 00:04+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1410566703.000000\n"
+"X-POOTLE-MTIME: 1457481867.000000\n"
#: svxerr.src
msgctxt ""
@@ -442,7 +442,7 @@ msgctxt ""
"Character blinking\n"
"itemlist.text"
msgid "Character blinking"
-msgstr ""
+msgstr "Tegnblinking"
#: svxitems.src
msgctxt ""
@@ -541,7 +541,7 @@ msgctxt ""
"Paragraph spacing\n"
"itemlist.text"
msgid "Paragraph spacing"
-msgstr ""
+msgstr "Avstand mellom avsnitt"
#: svxitems.src
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"Paragraph indent\n"
"itemlist.text"
msgid "Paragraph indent"
-msgstr ""
+msgstr "Innrykk for avsnitt"
#: svxitems.src
msgctxt ""
@@ -775,7 +775,7 @@ msgctxt ""
"Character scaling\n"
"itemlist.text"
msgid "Character scaling"
-msgstr ""
+msgstr "Skalering av tegn"
#: svxitems.src
msgctxt ""
diff --git a/source/nb/svx/source/stbctrls.po b/source/nb/svx/source/stbctrls.po
index 22722453b92..998f87b7a4e 100644
--- a/source/nb/svx/source/stbctrls.po
+++ b/source/nb/svx/source/stbctrls.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-05-13 03:33+0000\n"
+"PO-Revision-Date: 2016-03-09 00:06+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431488014.000000\n"
+"X-POOTLE-MTIME: 1457481961.000000\n"
#: stbctrls.src
msgctxt ""
@@ -155,7 +155,7 @@ msgctxt ""
"RID_SVXSTR_ZOOMTOOL_HINT\n"
"string.text"
msgid "Zoom level. Right-click to change zoom level or click to open Zoom dialog."
-msgstr ""
+msgstr "Målestokk. Høyreklikk for å endre forstørring eller høyreklikk for å åpna dialogvinduet."
#: stbctrls.src
msgctxt ""
@@ -179,7 +179,7 @@ msgctxt ""
"RID_SVXSTR_ZOOM_25\n"
"string.text"
msgid "25%"
-msgstr ""
+msgstr "25%"
#: stbctrls.src
msgctxt ""
@@ -187,7 +187,7 @@ msgctxt ""
"RID_SVXSTR_ZOOM_50\n"
"string.text"
msgid "50%"
-msgstr ""
+msgstr "50%"
#: stbctrls.src
msgctxt ""
@@ -195,7 +195,7 @@ msgctxt ""
"RID_SVXSTR_ZOOM_75\n"
"string.text"
msgid "75%"
-msgstr ""
+msgstr "75 %"
#: stbctrls.src
msgctxt ""
@@ -203,7 +203,7 @@ msgctxt ""
"RID_SVXSTR_ZOOM_100\n"
"string.text"
msgid "100%"
-msgstr ""
+msgstr "100%"
#: stbctrls.src
msgctxt ""
@@ -211,7 +211,7 @@ msgctxt ""
"RID_SVXSTR_ZOOM_150\n"
"string.text"
msgid "150%"
-msgstr ""
+msgstr "100%"
#: stbctrls.src
msgctxt ""
@@ -219,7 +219,7 @@ msgctxt ""
"RID_SVXSTR_ZOOM_200\n"
"string.text"
msgid "200%"
-msgstr ""
+msgstr "200%"
#: stbctrls.src
msgctxt ""
@@ -279,7 +279,7 @@ msgctxt ""
"ZOOM_50\n"
"menuitem.text"
msgid "50%"
-msgstr ""
+msgstr "50%"
#: stbctrls.src
msgctxt ""
@@ -288,7 +288,7 @@ msgctxt ""
"ZOOM_75\n"
"menuitem.text"
msgid "75%"
-msgstr ""
+msgstr "75 %"
#: stbctrls.src
msgctxt ""
@@ -297,7 +297,7 @@ msgctxt ""
"ZOOM_100\n"
"menuitem.text"
msgid "100%"
-msgstr ""
+msgstr "100%"
#: stbctrls.src
msgctxt ""
@@ -306,7 +306,7 @@ msgctxt ""
"ZOOM_150\n"
"menuitem.text"
msgid "150%"
-msgstr ""
+msgstr "150%"
#: stbctrls.src
msgctxt ""
@@ -315,7 +315,7 @@ msgctxt ""
"ZOOM_200\n"
"menuitem.text"
msgid "200%"
-msgstr ""
+msgstr "200%"
#: stbctrls.src
msgctxt ""
diff --git a/source/nb/svx/source/svdraw.po b/source/nb/svx/source/svdraw.po
index a5d688ee156..287125cc0b4 100644
--- a/source/nb/svx/source/svdraw.po
+++ b/source/nb/svx/source/svdraw.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: 2014-09-13 00:05+0000\n"
+"PO-Revision-Date: 2016-03-09 00:10+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1410566702.000000\n"
+"X-POOTLE-MTIME: 1457482246.000000\n"
#: svdstr.src
msgctxt ""
@@ -1566,7 +1566,7 @@ msgctxt ""
"STR_EqualizeWidthMarkedObjects\n"
"string.text"
msgid "Equalize Width %1"
-msgstr ""
+msgstr "Samme bredde %1"
#: svdstr.src
msgctxt ""
@@ -1574,7 +1574,7 @@ msgctxt ""
"STR_EqualizeHeightMarkedObjects\n"
"string.text"
msgid "Equalize Height %1"
-msgstr ""
+msgstr "Samme høyde %1"
#: svdstr.src
msgctxt ""
@@ -3854,7 +3854,7 @@ msgctxt ""
"SIP_SA_CHAINNEXTNAME\n"
"string.text"
msgid "Next link in text chain"
-msgstr ""
+msgstr "Neste lenke i tekstkjeden"
#: svdstr.src
msgctxt ""
@@ -4918,7 +4918,7 @@ msgctxt ""
"STR_TABLE_DELETE_CELL_CONTENTS\n"
"string.text"
msgid "Delete cell contents"
-msgstr ""
+msgstr "Slett celleinneholdet"
#: svdstr.src
msgctxt ""
diff --git a/source/nb/svx/source/tbxctrls.po b/source/nb/svx/source/tbxctrls.po
index 915b8db2756..68777a6f12a 100644
--- a/source/nb/svx/source/tbxctrls.po
+++ b/source/nb/svx/source/tbxctrls.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-06-26 02:29+0000\n"
+"PO-Revision-Date: 2016-03-09 00:11+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435285758.000000\n"
+"X-POOTLE-MTIME: 1457482276.000000\n"
#: colrctrl.src
msgctxt ""
@@ -551,7 +551,7 @@ msgctxt ""
"RID_SVX_UPDATE_STYLE\n"
"menuitem.text"
msgid "Update to Match Selection"
-msgstr ""
+msgstr "Oppdater for å passe til utvalget"
#: tbcontrl.src
msgctxt ""
@@ -568,7 +568,7 @@ msgctxt ""
"RID_SVXSTR_EXTRAS_CHARBACKGROUND\n"
"string.text"
msgid "Highlight Color"
-msgstr ""
+msgstr "Uthevingsfarge"
#: tbcontrl.src
msgctxt ""
@@ -688,4 +688,4 @@ msgctxt ""
"RID_SVXSTR_FINDBAR_SEARCHFORMATTED\n"
"string.text"
msgid "Search Formatted Display String"
-msgstr ""
+msgstr "Søk etter formatert visingsstreng"
diff --git a/source/nb/svx/uiconfig/ui.po b/source/nb/svx/uiconfig/ui.po
index 798efae0463..31eb678fa6c 100644
--- a/source/nb/svx/uiconfig/ui.po
+++ b/source/nb/svx/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-06-26 02:31+0000\n"
+"PO-Revision-Date: 2016-03-09 00:15+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435285900.000000\n"
+"X-POOTLE-MTIME: 1457482534.000000\n"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Manage Changes"
-msgstr ""
+msgstr "Behandle endringer"
#: acceptrejectchangesdialog.ui
msgctxt ""
@@ -71,24 +71,22 @@ msgid "Add Condition"
msgstr "Legg til vilkår"
#: addconditiondialog.ui
-#, fuzzy
msgctxt ""
"addconditiondialog.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "_Condition:"
-msgstr "_Vilkår"
+msgstr "_Vilkår:"
#: addconditiondialog.ui
-#, fuzzy
msgctxt ""
"addconditiondialog.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "_Result:"
-msgstr "_Resultat"
+msgstr "_Resultat:"
#: addconditiondialog.ui
msgctxt ""
@@ -100,24 +98,22 @@ msgid "_Edit Namespaces..."
msgstr "~Rediger navnerom …"
#: adddataitemdialog.ui
-#, fuzzy
msgctxt ""
"adddataitemdialog.ui\n"
"nameft\n"
"label\n"
"string.text"
msgid "_Name:"
-msgstr "_Navn"
+msgstr "_Navn:"
#: adddataitemdialog.ui
-#, fuzzy
msgctxt ""
"adddataitemdialog.ui\n"
"valueft\n"
"label\n"
"string.text"
msgid "_Default value:"
-msgstr "_Standardverdi"
+msgstr "_Standardverdi:"
#: adddataitemdialog.ui
msgctxt ""
@@ -138,14 +134,13 @@ msgid "Item"
msgstr "Element"
#: adddataitemdialog.ui
-#, fuzzy
msgctxt ""
"adddataitemdialog.ui\n"
"datatypeft\n"
"label\n"
"string.text"
msgid "_Data type:"
-msgstr "_Datatype"
+msgstr "_Datatype:"
#: adddataitemdialog.ui
msgctxt ""
@@ -256,14 +251,13 @@ msgid "Add Instance"
msgstr "Legg til instans"
#: addinstancedialog.ui
-#, fuzzy
msgctxt ""
"addinstancedialog.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "_Name:"
-msgstr "_Navn"
+msgstr "_Navn:"
#: addinstancedialog.ui
msgctxt ""
@@ -275,14 +269,13 @@ msgid "Edit Instance"
msgstr "Rediger instans"
#: addinstancedialog.ui
-#, fuzzy
msgctxt ""
"addinstancedialog.ui\n"
"urlft\n"
"label\n"
"string.text"
msgid "_URL:"
-msgstr "_URL"
+msgstr "_URL:"
#: addinstancedialog.ui
msgctxt ""
@@ -291,7 +284,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Browse..."
-msgstr ""
+msgstr "_Bla gjennom ..."
#: addinstancedialog.ui
msgctxt ""
@@ -321,14 +314,13 @@ msgid "Model data updates change document's modification status"
msgstr "Oppdateringer av modelldata forandrer endringsstatusen i dokumentet"
#: addmodeldialog.ui
-#, fuzzy
msgctxt ""
"addmodeldialog.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "_Name:"
-msgstr "_Navn"
+msgstr "_Navn:"
#: addmodeldialog.ui
msgctxt ""
@@ -349,24 +341,22 @@ msgid "Add Namespace"
msgstr "Legg til navnerom"
#: addnamespacedialog.ui
-#, fuzzy
msgctxt ""
"addnamespacedialog.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "_Prefix:"
-msgstr "_Prefiks"
+msgstr "_Prefiks:"
#: addnamespacedialog.ui
-#, fuzzy
msgctxt ""
"addnamespacedialog.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "_URL:"
-msgstr "_URL"
+msgstr "_URL:"
#: addnamespacedialog.ui
msgctxt ""
@@ -387,24 +377,22 @@ msgid "Add Submission"
msgstr "Legg til sending"
#: addsubmissiondialog.ui
-#, fuzzy
msgctxt ""
"addsubmissiondialog.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "_Name:"
-msgstr "_Navn"
+msgstr "_Navn:"
#: addsubmissiondialog.ui
-#, fuzzy
msgctxt ""
"addsubmissiondialog.ui\n"
"urlft\n"
"label\n"
"string.text"
msgid "Binding e_xpression:"
-msgstr "_Bindingsuttrykk"
+msgstr "Bindingsuttrykk:"
#: addsubmissiondialog.ui
msgctxt ""
@@ -416,44 +404,40 @@ msgid "_Add..."
msgstr "_Legg til …"
#: addsubmissiondialog.ui
-#, fuzzy
msgctxt ""
"addsubmissiondialog.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "_Action:"
-msgstr "_Handling"
+msgstr "_Handling:"
#: addsubmissiondialog.ui
-#, fuzzy
msgctxt ""
"addsubmissiondialog.ui\n"
"label4\n"
"label\n"
"string.text"
msgid "_Method:"
-msgstr "_Metode"
+msgstr "_Metode:"
#: addsubmissiondialog.ui
-#, fuzzy
msgctxt ""
"addsubmissiondialog.ui\n"
"label5\n"
"label\n"
"string.text"
msgid "_Binding:"
-msgstr "_Binding"
+msgstr "_Binding:"
#: addsubmissiondialog.ui
-#, fuzzy
msgctxt ""
"addsubmissiondialog.ui\n"
"label6\n"
"label\n"
"string.text"
msgid "_Replace:"
-msgstr "_Erstatt"
+msgstr "_Erstatt:"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -483,34 +467,31 @@ msgid "Ruby text"
msgstr "Justering "
#: asianphoneticguidedialog.ui
-#, fuzzy
msgctxt ""
"asianphoneticguidedialog.ui\n"
"label4\n"
"label\n"
"string.text"
msgid "Alignment:"
-msgstr "Justering"
+msgstr "Justering:"
#: asianphoneticguidedialog.ui
-#, fuzzy
msgctxt ""
"asianphoneticguidedialog.ui\n"
"label5\n"
"label\n"
"string.text"
msgid "Position:"
-msgstr "Posisjon"
+msgstr "Posisjon:"
#: asianphoneticguidedialog.ui
-#, fuzzy
msgctxt ""
"asianphoneticguidedialog.ui\n"
"styleft\n"
"label\n"
"string.text"
msgid "Character style for ruby text:"
-msgstr "Tegnstil for kringtekst"
+msgstr "Tegnstil for kringtekst:"
#: asianphoneticguidedialog.ui
msgctxt ""
@@ -585,14 +566,13 @@ msgid "Bottom"
msgstr "Nederst"
#: asianphoneticguidedialog.ui
-#, fuzzy
msgctxt ""
"asianphoneticguidedialog.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "Preview:"
-msgstr "Forhåndsvisning"
+msgstr "Forhåndsvisning:"
#: chineseconversiondialog.ui
msgctxt ""
@@ -622,14 +602,13 @@ msgid "_Simplified Chinese to traditional Chinese"
msgstr "_Forenklet kinesisk til tradisjonell kinesisk"
#: chineseconversiondialog.ui
-#, fuzzy
msgctxt ""
"chineseconversiondialog.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "Conversion Direction"
-msgstr "Oversettelses-retning"
+msgstr "Oversettelsesretning"
#: chineseconversiondialog.ui
msgctxt ""
@@ -650,7 +629,6 @@ msgid "_Edit Terms..."
msgstr "_Rediger uttrykk …"
#: chineseconversiondialog.ui
-#, fuzzy
msgctxt ""
"chineseconversiondialog.ui\n"
"label2\n"
@@ -873,7 +851,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Recent"
-msgstr ""
+msgstr "Nylig"
#: colorwindow.ui
msgctxt ""
@@ -882,7 +860,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom Color…"
-msgstr ""
+msgstr "Selvalgt farge"
#: compressgraphicdialog.ui
msgctxt ""
@@ -891,10 +869,9 @@ msgctxt ""
"title\n"
"string.text"
msgid "Compress Image"
-msgstr ""
+msgstr "Komprimer bilde"
#: compressgraphicdialog.ui
-#, fuzzy
msgctxt ""
"compressgraphicdialog.ui\n"
"radio-lossless\n"
@@ -904,7 +881,6 @@ msgid "Lossless compression"
msgstr "Tapsfri komprimering"
#: compressgraphicdialog.ui
-#, fuzzy
msgctxt ""
"compressgraphicdialog.ui\n"
"checkbox-reduce-resolution\n"
@@ -932,14 +908,13 @@ msgid "Height:"
msgstr "Høyde:"
#: compressgraphicdialog.ui
-#, fuzzy
msgctxt ""
"compressgraphicdialog.ui\n"
"radio-jpeg\n"
"label\n"
"string.text"
msgid "JPEG compression"
-msgstr "JPEG-komprimering"
+msgstr "JPEG komprimering"
#: compressgraphicdialog.ui
msgctxt ""
@@ -1011,10 +986,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Compression Options"
-msgstr ""
+msgstr "Komprimeringsvalg"
#: compressgraphicdialog.ui
-#, fuzzy
msgctxt ""
"compressgraphicdialog.ui\n"
"label7\n"
@@ -1024,7 +998,6 @@ msgid "Original size:"
msgstr "Opprinnelig størrelse"
#: compressgraphicdialog.ui
-#, fuzzy
msgctxt ""
"compressgraphicdialog.ui\n"
"label8\n"
@@ -1034,7 +1007,6 @@ msgid "View size:"
msgstr "Visningsstørrelse:"
#: compressgraphicdialog.ui
-#, fuzzy
msgctxt ""
"compressgraphicdialog.ui\n"
"label9\n"
@@ -1044,7 +1016,6 @@ msgid "Image capacity:"
msgstr "Bildekapasitet:"
#: compressgraphicdialog.ui
-#, fuzzy
msgctxt ""
"compressgraphicdialog.ui\n"
"label10\n"
@@ -1123,7 +1094,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Models"
-msgstr ""
+msgstr "_Modeller"
#: datanavigator.ui
msgctxt ""
@@ -1135,7 +1106,6 @@ msgid "Instance"
msgstr "Instans"
#: datanavigator.ui
-#, fuzzy
msgctxt ""
"datanavigator.ui\n"
"submissions\n"
@@ -1145,24 +1115,22 @@ msgid "Submissions"
msgstr "Sending"
#: datanavigator.ui
-#, fuzzy
msgctxt ""
"datanavigator.ui\n"
"bindings\n"
"label\n"
"string.text"
msgid "Bindings"
-msgstr "_Binding"
+msgstr "Bindinger"
#: datanavigator.ui
-#, fuzzy
msgctxt ""
"datanavigator.ui\n"
"instances\n"
"label\n"
"string.text"
msgid "_Instances"
-msgstr "Instans"
+msgstr "Instanser"
#: datanavigator.ui
msgctxt ""
@@ -1189,7 +1157,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Remove..."
-msgstr ""
+msgstr "_Fjern"
#: datanavigator.ui
msgctxt ""
@@ -1198,7 +1166,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Show Details"
-msgstr ""
+msgstr "_Vis detaljer"
#: datanavigator.ui
msgctxt ""
@@ -1225,7 +1193,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Remove"
-msgstr ""
+msgstr "_Fjern"
#: deletefooterdialog.ui
msgctxt ""
@@ -1288,7 +1256,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "3D Effects"
-msgstr ""
+msgstr "3D-effekter"
#: docking3deffects.ui
msgctxt ""
@@ -1297,7 +1265,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "R_ounded edges"
-msgstr ""
+msgstr "Avrundede hjørner"
#: docking3deffects.ui
msgctxt ""
@@ -1306,7 +1274,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Scaled depth"
-msgstr ""
+msgstr "_Skalert dybde"
#: docking3deffects.ui
msgctxt ""
@@ -1315,17 +1283,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Rotation angle"
-msgstr ""
+msgstr "_Rotasjonsvinkel"
#: docking3deffects.ui
-#, fuzzy
msgctxt ""
"docking3deffects.ui\n"
"depthft\n"
"label\n"
"string.text"
msgid "_Depth"
-msgstr "Dybde"
+msgstr "_Dybde"
#: docking3deffects.ui
msgctxt ""
@@ -1334,27 +1301,25 @@ msgctxt ""
"label\n"
"string.text"
msgid "Geometry"
-msgstr ""
+msgstr "Geometri"
#: docking3deffects.ui
-#, fuzzy
msgctxt ""
"docking3deffects.ui\n"
"label6\n"
"label\n"
"string.text"
msgid "_Horizontal"
-msgstr "_Vannrett:"
+msgstr "_Vannrett"
#: docking3deffects.ui
-#, fuzzy
msgctxt ""
"docking3deffects.ui\n"
"label7\n"
"label\n"
"string.text"
msgid "_Vertical"
-msgstr "_Loddrett:"
+msgstr "_Loddrett"
#: docking3deffects.ui
msgctxt ""
@@ -1363,7 +1328,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Segments"
-msgstr ""
+msgstr "Segmenter"
#: docking3deffects.ui
msgctxt ""
@@ -1372,7 +1337,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Object-Specific"
-msgstr ""
+msgstr "Objektspesifikk"
#: docking3deffects.ui
msgctxt ""
@@ -1390,7 +1355,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Spherical"
-msgstr ""
+msgstr "Kuleformet"
#: docking3deffects.ui
msgctxt ""
@@ -1399,7 +1364,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Invert Normals"
-msgstr ""
+msgstr "Inverter normaler"
#: docking3deffects.ui
msgctxt ""
@@ -1408,7 +1373,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Double-Sided Illumination"
-msgstr ""
+msgstr "Dobbeltsidet belysning"
#: docking3deffects.ui
msgctxt ""
@@ -1417,7 +1382,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Double-Sided"
-msgstr ""
+msgstr "Tosidig"
#: docking3deffects.ui
msgctxt ""
@@ -1426,7 +1391,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Normals"
-msgstr ""
+msgstr "Normaler"
#: docking3deffects.ui
msgctxt ""
@@ -1435,7 +1400,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Convert to 3D"
-msgstr ""
+msgstr "Gjør om til 3D"
#: docking3deffects.ui
msgctxt ""
@@ -1444,7 +1409,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Convert to Rotation Object"
-msgstr ""
+msgstr "Konverter til rotatsjonsobjekt"
#: docking3deffects.ui
msgctxt ""
@@ -1453,7 +1418,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Perspective On/Off"
-msgstr ""
+msgstr "Perspektiv på/av"
#: docking3deffects.ui
msgctxt ""
@@ -1462,7 +1427,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "3D Preview"
-msgstr ""
+msgstr "3D Forhåndsvisning"
#: docking3deffects.ui
msgctxt ""
@@ -1471,7 +1436,7 @@ msgctxt ""
"AtkObject::accessible-name\n"
"string.text"
msgid "Color Light Preview"
-msgstr ""
+msgstr "Forhåndsvisning av fargelys"
#: docking3deffects.ui
msgctxt ""
@@ -1480,7 +1445,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Mode"
-msgstr ""
+msgstr "_Modus"
#: docking3deffects.ui
msgctxt ""
@@ -1498,7 +1463,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Phong"
-msgstr ""
+msgstr "Phong"
#: docking3deffects.ui
msgctxt ""
@@ -1507,7 +1472,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Gouraud"
-msgstr ""
+msgstr "Gouraud"
#: docking3deffects.ui
msgctxt ""
@@ -1516,7 +1481,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Shading"
-msgstr ""
+msgstr "Skyggelegging"
#: docking3deffects.ui
msgctxt ""
@@ -1525,7 +1490,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "S_urface angle"
-msgstr ""
+msgstr "Overflatevinkel"
#: docking3deffects.ui
msgctxt ""
@@ -1534,7 +1499,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "3D Shadowing On/Off"
-msgstr ""
+msgstr "3D-skygge på/av"
#: docking3deffects.ui
msgctxt ""
@@ -1543,7 +1508,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Shadow"
-msgstr ""
+msgstr "Skygge"
#: docking3deffects.ui
msgctxt ""
@@ -1552,17 +1517,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Focal length"
-msgstr ""
+msgstr "_Brennvidde"
#: docking3deffects.ui
-#, fuzzy
msgctxt ""
"docking3deffects.ui\n"
"label14\n"
"label\n"
"string.text"
msgid "_Distance"
-msgstr "Instans"
+msgstr "_Distanse"
#: docking3deffects.ui
msgctxt ""
@@ -1571,7 +1535,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Camera"
-msgstr ""
+msgstr "Kamera"
#: docking3deffects.ui
msgctxt ""
@@ -1580,7 +1544,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Light source"
-msgstr ""
+msgstr "_Lyskilde"
#: docking3deffects.ui
msgctxt ""
@@ -1589,7 +1553,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Colors Dialog"
-msgstr ""
+msgstr "Fargevelger"
#: docking3deffects.ui
msgctxt ""
@@ -1598,7 +1562,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Colors Dialog"
-msgstr ""
+msgstr "Fargevelger"
#: docking3deffects.ui
msgctxt ""
@@ -1607,7 +1571,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Ambient light"
-msgstr ""
+msgstr "_Bakgrunnslys"
#: docking3deffects.ui
msgctxt ""
@@ -1616,7 +1580,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light Source 1"
-msgstr ""
+msgstr "Lyskilde 1"
#: docking3deffects.ui
msgctxt ""
@@ -1625,7 +1589,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light Source 2"
-msgstr ""
+msgstr "Lyskilde 2"
#: docking3deffects.ui
msgctxt ""
@@ -1634,7 +1598,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light Source 3"
-msgstr ""
+msgstr "Lyskilde 3"
#: docking3deffects.ui
msgctxt ""
@@ -1643,7 +1607,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light Source 4"
-msgstr ""
+msgstr "Lyskilde 4"
#: docking3deffects.ui
msgctxt ""
@@ -1652,7 +1616,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light Source 5"
-msgstr ""
+msgstr "Lyskilde 5"
#: docking3deffects.ui
msgctxt ""
@@ -1661,7 +1625,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light Source 6"
-msgstr ""
+msgstr "Lyskilde 6"
#: docking3deffects.ui
msgctxt ""
@@ -1670,7 +1634,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light Source 7"
-msgstr ""
+msgstr "Lyskilde 7"
#: docking3deffects.ui
msgctxt ""
@@ -1679,7 +1643,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Light Source 8"
-msgstr ""
+msgstr "Lyskilde 8"
#: docking3deffects.ui
msgctxt ""
@@ -1688,7 +1652,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Illumination"
-msgstr ""
+msgstr "Lyssetting"
#: docking3deffects.ui
msgctxt ""
@@ -1697,7 +1661,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Type"
-msgstr ""
+msgstr "_Type"
#: docking3deffects.ui
msgctxt ""
@@ -1706,7 +1670,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Mode"
-msgstr ""
+msgstr "_Modus"
#: docking3deffects.ui
msgctxt ""
@@ -1715,7 +1679,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Projection X"
-msgstr ""
+msgstr "_Projeksjon X"
#: docking3deffects.ui
msgctxt ""
@@ -1724,7 +1688,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "P_rojection Y"
-msgstr ""
+msgstr "Projeksjon Y"
#: docking3deffects.ui
msgctxt ""
@@ -1733,7 +1697,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Filtering"
-msgstr ""
+msgstr "_Filtrering"
#: docking3deffects.ui
msgctxt ""
@@ -1742,17 +1706,16 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Black & White"
-msgstr ""
+msgstr "Svart og hvit"
#: docking3deffects.ui
-#, fuzzy
msgctxt ""
"docking3deffects.ui\n"
"texcolor\n"
"tooltip_text\n"
"string.text"
msgid "Color"
-msgstr "_Farge:"
+msgstr "Farge"
#: docking3deffects.ui
msgctxt ""
@@ -1761,7 +1724,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Only Texture"
-msgstr ""
+msgstr "Bare tekstur"
#: docking3deffects.ui
msgctxt ""
@@ -1770,7 +1733,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Texture and Shading"
-msgstr ""
+msgstr "Tekstur og skygge"
#: docking3deffects.ui
msgctxt ""
@@ -1779,7 +1742,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Object-Specific"
-msgstr ""
+msgstr "Objektspesifikk"
#: docking3deffects.ui
msgctxt ""
@@ -1788,7 +1751,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Parallel"
-msgstr ""
+msgstr "Parallell"
#: docking3deffects.ui
msgctxt ""
@@ -1797,7 +1760,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Circular"
-msgstr ""
+msgstr "Sirkulær"
#: docking3deffects.ui
msgctxt ""
@@ -1806,7 +1769,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Object-Specific"
-msgstr ""
+msgstr "Objektspesifikk"
#: docking3deffects.ui
msgctxt ""
@@ -1815,7 +1778,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Parallel"
-msgstr ""
+msgstr "Parallell"
#: docking3deffects.ui
msgctxt ""
@@ -1824,7 +1787,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Circular"
-msgstr ""
+msgstr "Sirkulær"
#: docking3deffects.ui
msgctxt ""
@@ -1833,7 +1796,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Filtering On/Off"
-msgstr ""
+msgstr "Filtrering på/av"
#: docking3deffects.ui
msgctxt ""
@@ -1842,7 +1805,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Texture, Shadow and Color"
-msgstr ""
+msgstr "Tekstur, skygge og farge"
#: docking3deffects.ui
msgctxt ""
@@ -1851,7 +1814,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Textures"
-msgstr ""
+msgstr "Teksturer"
#: docking3deffects.ui
msgctxt ""
@@ -1860,7 +1823,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Favorites"
-msgstr ""
+msgstr "_Favoritter"
#: docking3deffects.ui
msgctxt ""
@@ -1869,7 +1832,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Object color"
-msgstr ""
+msgstr "_Objektfarge"
#: docking3deffects.ui
msgctxt ""
@@ -1878,7 +1841,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Illumination color"
-msgstr ""
+msgstr "_Belysningsfarge"
#: docking3deffects.ui
msgctxt ""
@@ -1887,7 +1850,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "User-defined"
-msgstr ""
+msgstr "Bruker definert"
#: docking3deffects.ui
msgctxt ""
@@ -1896,7 +1859,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Metal"
-msgstr ""
+msgstr "Metall"
#: docking3deffects.ui
msgctxt ""
@@ -1905,7 +1868,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Gold"
-msgstr ""
+msgstr "Gull"
#: docking3deffects.ui
msgctxt ""
@@ -1914,7 +1877,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Chrome"
-msgstr ""
+msgstr "Krom"
#: docking3deffects.ui
msgctxt ""
@@ -1923,7 +1886,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Plastic"
-msgstr ""
+msgstr "Plast"
#: docking3deffects.ui
msgctxt ""
@@ -1932,7 +1895,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Wood"
-msgstr ""
+msgstr "Tre"
#: docking3deffects.ui
msgctxt ""
@@ -1941,7 +1904,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Colors Dialog"
-msgstr ""
+msgstr "Fargevelger"
#: docking3deffects.ui
msgctxt ""
@@ -1950,7 +1913,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Colors Dialog"
-msgstr ""
+msgstr "Fargevelger"
#: docking3deffects.ui
msgctxt ""
@@ -1959,17 +1922,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "Material"
-msgstr ""
+msgstr "Materiale"
#: docking3deffects.ui
-#, fuzzy
msgctxt ""
"docking3deffects.ui\n"
"label30\n"
"label\n"
"string.text"
msgid "_Color"
-msgstr "_Farge:"
+msgstr "_Farge"
#: docking3deffects.ui
msgctxt ""
@@ -1978,7 +1940,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "I_ntensity"
-msgstr ""
+msgstr "Intensitet"
#: docking3deffects.ui
msgctxt ""
@@ -1987,7 +1949,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Colors Dialog"
-msgstr ""
+msgstr "Fargevelger"
#: docking3deffects.ui
msgctxt ""
@@ -1996,7 +1958,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Specular"
-msgstr ""
+msgstr "Refleksjon"
#: docking3deffects.ui
msgctxt ""
@@ -2005,7 +1967,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Assign"
-msgstr ""
+msgstr "Tilordne"
#: docking3deffects.ui
msgctxt ""
@@ -2014,7 +1976,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Update"
-msgstr ""
+msgstr "Oppdater"
#: docking3deffects.ui
msgctxt ""
@@ -2023,7 +1985,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Material"
-msgstr ""
+msgstr "Materiale"
#: docking3deffects.ui
msgctxt ""
@@ -2032,7 +1994,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Textures"
-msgstr ""
+msgstr "Teksturer"
#: docking3deffects.ui
msgctxt ""
@@ -2041,7 +2003,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Illumination"
-msgstr ""
+msgstr "Belysning"
#: docking3deffects.ui
msgctxt ""
@@ -2050,7 +2012,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Shading"
-msgstr ""
+msgstr "Skyggelegging"
#: docking3deffects.ui
msgctxt ""
@@ -2059,7 +2021,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Geometry"
-msgstr ""
+msgstr "Geometri"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2068,7 +2030,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Color Replacer"
-msgstr ""
+msgstr "Fargeerstatter"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2077,7 +2039,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Source color"
-msgstr ""
+msgstr "Kildefarge"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2086,7 +2048,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Tolerance"
-msgstr ""
+msgstr "Fargetoleranse"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2095,10 +2057,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Replace with..."
-msgstr ""
+msgstr "Erstatt med..."
#: dockingcolorreplace.ui
-#, fuzzy
msgctxt ""
"dockingcolorreplace.ui\n"
"cbx5\n"
@@ -2108,14 +2069,13 @@ msgid "Tr_ansparency"
msgstr "Gjennomsiktighet"
#: dockingcolorreplace.ui
-#, fuzzy
msgctxt ""
"dockingcolorreplace.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "Colors"
-msgstr "_Farge:"
+msgstr "Farge"
#: dockingcolorreplace.ui
msgctxt ""
@@ -2133,7 +2093,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pipette"
-msgstr ""
+msgstr "Pipette"
#: dockingfontwork.ui
msgctxt ""
@@ -2142,7 +2102,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Fontwork"
-msgstr ""
+msgstr "Skriftforming"
#: dockingfontwork.ui
msgctxt ""
@@ -2151,7 +2111,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Off"
-msgstr ""
+msgstr "Av"
#: dockingfontwork.ui
msgctxt ""
@@ -2160,7 +2120,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Rotate"
-msgstr ""
+msgstr "Roter"
#: dockingfontwork.ui
msgctxt ""
@@ -2169,7 +2129,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Upright"
-msgstr ""
+msgstr "Oppreist"
#: dockingfontwork.ui
msgctxt ""
@@ -2178,7 +2138,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Slant Horizontal"
-msgstr ""
+msgstr "Vannrett skråstilling"
#: dockingfontwork.ui
msgctxt ""
@@ -2187,7 +2147,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Slant Vertical"
-msgstr ""
+msgstr "Skråstill loddrett"
#: dockingfontwork.ui
msgctxt ""
@@ -2196,7 +2156,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Orientation"
-msgstr ""
+msgstr "Retning"
#: dockingfontwork.ui
msgctxt ""
@@ -2205,7 +2165,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Align Left"
-msgstr ""
+msgstr "Venstrejuster"
#: dockingfontwork.ui
msgctxt ""
@@ -2223,7 +2183,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Align Right"
-msgstr ""
+msgstr "Høyrejuster"
#: dockingfontwork.ui
msgctxt ""
@@ -2232,17 +2192,16 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "AutoSize Text"
-msgstr ""
+msgstr "Automatisk tekststørrelse"
#: dockingfontwork.ui
-#, fuzzy
msgctxt ""
"dockingfontwork.ui\n"
"distance\n"
"tooltip_text\n"
"string.text"
msgid "Distance"
-msgstr "Instans"
+msgstr "Avstand"
#: dockingfontwork.ui
msgctxt ""
@@ -2260,7 +2219,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Contour"
-msgstr ""
+msgstr "Omriss"
#: dockingfontwork.ui
msgctxt ""
@@ -2269,7 +2228,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Text Contour"
-msgstr ""
+msgstr "Tekstomriss"
#: dockingfontwork.ui
msgctxt ""
@@ -2278,17 +2237,16 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "No Shadow"
-msgstr ""
+msgstr "Ingen skygge"
#: dockingfontwork.ui
-#, fuzzy
msgctxt ""
"dockingfontwork.ui\n"
"vertical\n"
"tooltip_text\n"
"string.text"
msgid "Vertical"
-msgstr "_Loddrett:"
+msgstr "Loddrett"
#: dockingfontwork.ui
msgctxt ""
@@ -2297,27 +2255,25 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Slant"
-msgstr ""
+msgstr "På skrå"
#: dockingfontwork.ui
-#, fuzzy
msgctxt ""
"dockingfontwork.ui\n"
"distancex\n"
"tooltip_text\n"
"string.text"
msgid "Distance X"
-msgstr "Instans"
+msgstr "Avstand X"
#: dockingfontwork.ui
-#, fuzzy
msgctxt ""
"dockingfontwork.ui\n"
"distancey\n"
"tooltip_text\n"
"string.text"
msgid "Distance Y"
-msgstr "Instans"
+msgstr "Avstand Y"
#: dockingfontwork.ui
msgctxt ""
@@ -2326,7 +2282,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Shadow Color"
-msgstr ""
+msgstr "Skyggefarge"
#: docrecoverybrokendialog.ui
msgctxt ""
@@ -2335,7 +2291,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "%PRODUCTNAME %PRODUCTVERSION"
-msgstr ""
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
#: docrecoverybrokendialog.ui
msgctxt ""
@@ -2344,7 +2300,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Save"
-msgstr ""
+msgstr "_Lagre"
#: docrecoverybrokendialog.ui
msgctxt ""
@@ -2357,6 +2313,9 @@ msgid ""
"\n"
"The documents listed below will be saved in the folder noted below if you click 'Save'. Click 'Cancel' to close the wizard without saving the documents."
msgstr ""
+"Den automatiske gjenopprettingsprosessen ble avbrutt.\n"
+"\n"
+"Dokumentene du ser nedenfor vil bli lagret i den viste mappa hvis du trykker «Lagre». Trykk «Avbryt» for å avslutte veiviseren uten å lagre dokumentene."
#: docrecoverybrokendialog.ui
msgctxt ""
@@ -2365,7 +2324,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Documents:"
-msgstr ""
+msgstr "Dokumenter:"
#: docrecoverybrokendialog.ui
msgctxt ""
@@ -2374,7 +2333,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Save to:"
-msgstr ""
+msgstr "_Lagre til:"
#: docrecoverybrokendialog.ui
msgctxt ""
@@ -2383,7 +2342,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Chan_ge..."
-msgstr ""
+msgstr "_Endre …"
#: docrecoveryprogressdialog.ui
msgctxt ""
@@ -2392,7 +2351,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Documents Are Being Saved"
-msgstr ""
+msgstr "Dokumentene blir lagret."
#: docrecoveryprogressdialog.ui
msgctxt ""
@@ -2401,7 +2360,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Progress of saving:"
-msgstr ""
+msgstr "Framdrift for lagring: "
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2410,7 +2369,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "%PRODUCTNAME %PRODUCTVERSION"
-msgstr ""
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2419,7 +2378,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Start Recovery >"
-msgstr ""
+msgstr "_Start gjenoppretting >"
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2428,7 +2387,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Discard Recovery Data"
-msgstr ""
+msgstr "Fjern gjenopprettingsdata"
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2443,6 +2402,11 @@ msgid ""
"\n"
"The 'Status' column shows whether the document can be recovered."
msgstr ""
+"Trykk på «Start gjenoppretting» for å begynne gjenoppretting av dokumentene nedenfor.\n"
+"\n"
+"Trykk på «Avbryt gjenoppretting» for å avbryte forsøket på å gjenopprette disse dokumentene.\n"
+"\n"
+"Kolonnen «Status» viser om dokumentet kan gjenopprettes."
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2451,7 +2415,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Status of recovered documents:"
-msgstr ""
+msgstr "Status for gjenopprettede dokumenter:"
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2460,7 +2424,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Document Name"
-msgstr ""
+msgstr "Dokumentnavn"
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2478,7 +2442,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Recovering document:"
-msgstr ""
+msgstr "Gjenoppretter dokument:"
#: docrecoveryrecoverdialog.ui
msgctxt ""
@@ -2487,7 +2451,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "%PRODUCTNAME Document Recovery"
-msgstr ""
+msgstr "%PRODUCTNAME Dokumentgjenoppretting"
#: docrecoverysavedialog.ui
msgctxt ""
@@ -2496,7 +2460,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "%PRODUCTNAME %PRODUCTVERSION"
-msgstr ""
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
#: docrecoverysavedialog.ui
msgctxt ""
@@ -2505,7 +2469,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Due to an unexpected error, %PRODUCTNAME crashed. All the files you were working on will now be saved. The next time %PRODUCTNAME is launched, your files will be recovered automatically."
-msgstr ""
+msgstr "%PRODUCTNAME krasjet etter en feil. Alle filene du arbeidet med vil nå bli lagret. Neste gang du starter %PRODUCTNAME, kommer filene til å bli gjenopprettet automatisk."
#: docrecoverysavedialog.ui
msgctxt ""
@@ -2514,7 +2478,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "The following files will be recovered:"
-msgstr ""
+msgstr "De følgende filene vil bli gjenopprettet:"
#: docrecoverysavedialog.ui
msgctxt ""
@@ -2523,7 +2487,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "%PRODUCTNAME Document Recovery"
-msgstr ""
+msgstr "%PRODUCTNAME Dokumentgjenoppretting"
#: extrustiondepthdialog.ui
msgctxt ""
@@ -2568,7 +2532,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Find Next"
-msgstr ""
+msgstr "_Finn Neste"
#: findreplacedialog.ui
msgctxt ""
@@ -2580,7 +2544,6 @@ msgid "Find _All"
msgstr "Søk etter _alle"
#: findreplacedialog.ui
-#, fuzzy
msgctxt ""
"findreplacedialog.ui\n"
"label1\n"
@@ -2608,14 +2571,13 @@ msgid "Replace A_ll"
msgstr "Erstatt a_lle"
#: findreplacedialog.ui
-#, fuzzy
msgctxt ""
"findreplacedialog.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "Re_place With"
-msgstr "Erstatt _med"
+msgstr "Erstatt med"
#: findreplacedialog.ui
msgctxt ""
@@ -2672,14 +2634,13 @@ msgid "Bac_kwards"
msgstr "_Baklengs"
#: findreplacedialog.ui
-#, fuzzy
msgctxt ""
"findreplacedialog.ui\n"
"layout\n"
"label\n"
"string.text"
msgid "Search for st_yles"
-msgstr "Søk etter _stiler"
+msgstr "Søk etter stiler"
#: findreplacedialog.ui
msgctxt ""
@@ -2706,7 +2667,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Similarities..."
-msgstr ""
+msgstr "Likheter..."
#: findreplacedialog.ui
msgctxt ""
@@ -2742,7 +2703,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Sounds..."
-msgstr ""
+msgstr "Lyder..."
#: findreplacedialog.ui
msgctxt ""
@@ -2763,14 +2724,13 @@ msgid "Ig_nore kashida CTL"
msgstr "Ignorer _kashida CTL"
#: findreplacedialog.ui
-#, fuzzy
msgctxt ""
"findreplacedialog.ui\n"
"searchinlabel\n"
"label\n"
"string.text"
msgid "Search i_n:"
-msgstr "_Søk i"
+msgstr "Søk i:"
#: findreplacedialog.ui
msgctxt ""
@@ -2800,14 +2760,13 @@ msgid "Notes"
msgstr "Merknader"
#: findreplacedialog.ui
-#, fuzzy
msgctxt ""
"findreplacedialog.ui\n"
"searchdir\n"
"label\n"
"string.text"
msgid "Search _direction:"
-msgstr "_Søkeretning"
+msgstr "Søkeretning:"
#: findreplacedialog.ui
msgctxt ""
@@ -2828,14 +2787,13 @@ msgid "Colu_mns"
msgstr "Kolo_nner"
#: findreplacedialog.ui
-#, fuzzy
msgctxt ""
"findreplacedialog.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "Other _options"
-msgstr "Andre _valg"
+msgstr "Andre valg"
#: findreplacedialog.ui
msgctxt ""
@@ -2853,7 +2811,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Search formatted display string"
-msgstr ""
+msgstr "Søk etter formatert visingsstreng"
#: findreplacedialog.ui
msgctxt ""
@@ -2880,7 +2838,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Contour Editor"
-msgstr ""
+msgstr "Omrissredigering"
#: floatingcontour.ui
msgctxt ""
@@ -2889,7 +2847,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Apply"
-msgstr ""
+msgstr "Bruk"
#: floatingcontour.ui
msgctxt ""
@@ -2898,7 +2856,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Workspace"
-msgstr ""
+msgstr "Arbeidsområde"
#: floatingcontour.ui
msgctxt ""
@@ -2907,7 +2865,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select"
-msgstr ""
+msgstr "Velg"
#: floatingcontour.ui
msgctxt ""
@@ -2934,7 +2892,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Polygon"
-msgstr ""
+msgstr "Polygon"
#: floatingcontour.ui
msgctxt ""
@@ -2943,7 +2901,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Points"
-msgstr ""
+msgstr "Rediger punkter"
#: floatingcontour.ui
msgctxt ""
@@ -2952,7 +2910,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Points"
-msgstr ""
+msgstr "Flytt punkter"
#: floatingcontour.ui
msgctxt ""
@@ -2961,7 +2919,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Points"
-msgstr ""
+msgstr "Sett inn punkter"
#: floatingcontour.ui
msgctxt ""
@@ -2970,7 +2928,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete Points"
-msgstr ""
+msgstr "Slett punkter"
#: floatingcontour.ui
msgctxt ""
@@ -2979,7 +2937,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "AutoContour"
-msgstr ""
+msgstr "Autoomriss"
#: floatingcontour.ui
msgctxt ""
@@ -2988,17 +2946,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "Undo "
-msgstr ""
+msgstr "Angre"
#: floatingcontour.ui
-#, fuzzy
msgctxt ""
"floatingcontour.ui\n"
"TBI_REDO\n"
"label\n"
"string.text"
msgid "Redo"
-msgstr "Rød"
+msgstr "Gjenta"
#: floatingcontour.ui
msgctxt ""
@@ -3007,7 +2964,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Pipette"
-msgstr ""
+msgstr "Pipette"
#: floatingcontour.ui
msgctxt ""
@@ -3016,7 +2973,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Color Tolerance"
-msgstr ""
+msgstr "Fargetoleranse"
#: fontworkgallerydialog.ui
msgctxt ""
@@ -3028,14 +2985,13 @@ msgid "Fontwork Gallery"
msgstr "Skriftformingsgalleri"
#: fontworkgallerydialog.ui
-#, fuzzy
msgctxt ""
"fontworkgallerydialog.ui\n"
"label1\n"
"label\n"
"string.text"
msgid "Select a Fontwork style:"
-msgstr "Velg en skriftformingsstil"
+msgstr "Velg en skriftformingsstil:"
#: fontworkspacingdialog.ui
msgctxt ""
@@ -3047,14 +3003,13 @@ msgid "Fontwork Character Spacing"
msgstr "Skriftforming, mellomrom mellom tegn"
#: fontworkspacingdialog.ui
-#, fuzzy
msgctxt ""
"fontworkspacingdialog.ui\n"
"label2\n"
"label\n"
"string.text"
msgid "_Value:"
-msgstr "_Verdi"
+msgstr "_Verdi:"
#: formlinkwarndialog.ui
msgctxt ""
@@ -3063,7 +3018,7 @@ msgctxt ""
"text\n"
"string.text"
msgid "This instance is linked with the form."
-msgstr ""
+msgstr "Denne instansen er lenket med skjemaet."
#: formlinkwarndialog.ui
msgctxt ""
@@ -3076,6 +3031,9 @@ msgid ""
"\n"
"How do you want to proceed?"
msgstr ""
+"De endringene du gjør i denne instansen forsvinner når skjemaet blir lastet på nytt.\n"
+"\n"
+"Hvordan vil du fortsette?"
#: formlinkwarndialog.ui
msgctxt ""
@@ -3084,7 +3042,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Edit"
-msgstr ""
+msgstr "_Rediger"
#: headfootformatpage.ui
msgctxt ""
@@ -3219,7 +3177,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "ImageMap Editor"
-msgstr ""
+msgstr "Bildekartredigering"
#: imapdialog.ui
msgctxt ""
@@ -3228,7 +3186,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Apply"
-msgstr ""
+msgstr "Bruk"
#: imapdialog.ui
msgctxt ""
@@ -3237,7 +3195,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Open..."
-msgstr ""
+msgstr "Åpne..."
#: imapdialog.ui
msgctxt ""
@@ -3246,7 +3204,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Save..."
-msgstr ""
+msgstr "Lagre …"
#: imapdialog.ui
msgctxt ""
@@ -3255,7 +3213,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select"
-msgstr ""
+msgstr "Velg"
#: imapdialog.ui
msgctxt ""
@@ -3282,7 +3240,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Polygon"
-msgstr ""
+msgstr "Polygon"
#: imapdialog.ui
msgctxt ""
@@ -3291,7 +3249,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Freeform Polygon"
-msgstr ""
+msgstr "Frihåndsmangekant"
#: imapdialog.ui
msgctxt ""
@@ -3300,7 +3258,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Points"
-msgstr ""
+msgstr "Rediger punkter"
#: imapdialog.ui
msgctxt ""
@@ -3309,7 +3267,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Move Points"
-msgstr ""
+msgstr "Flytt punkter"
#: imapdialog.ui
msgctxt ""
@@ -3318,7 +3276,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Insert Points"
-msgstr ""
+msgstr "Sett inn punkter"
#: imapdialog.ui
msgctxt ""
@@ -3327,7 +3285,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete Points"
-msgstr ""
+msgstr "Slett punkter"
#: imapdialog.ui
msgctxt ""
@@ -3336,17 +3294,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "Undo "
-msgstr ""
+msgstr "Angre"
#: imapdialog.ui
-#, fuzzy
msgctxt ""
"imapdialog.ui\n"
"TBI_REDO\n"
"label\n"
"string.text"
msgid "Redo"
-msgstr "Rød"
+msgstr "Gjenta"
#: imapdialog.ui
msgctxt ""
@@ -3355,7 +3312,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Active"
-msgstr ""
+msgstr "Aktiv"
#: imapdialog.ui
msgctxt ""
@@ -3364,7 +3321,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Macro..."
-msgstr ""
+msgstr "Makro …"
#: imapdialog.ui
msgctxt ""
@@ -3373,7 +3330,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Properties..."
-msgstr ""
+msgstr "Egenskaper..."
#: imapdialog.ui
msgctxt ""
@@ -3382,7 +3339,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Address:"
-msgstr ""
+msgstr "Adresse:"
#: imapdialog.ui
msgctxt ""
@@ -3391,7 +3348,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Frame:"
-msgstr ""
+msgstr "Ramme:"
#: imapdialog.ui
msgctxt ""
@@ -3400,7 +3357,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Text:"
-msgstr ""
+msgstr "Tekst:"
#: linkwarndialog.ui
msgctxt ""
@@ -3655,14 +3612,13 @@ msgid "To obje_ct points"
msgstr "Til objekt_punkter"
#: optgridpage.ui
-#, fuzzy
msgctxt ""
"optgridpage.ui\n"
"label7\n"
"label\n"
"string.text"
msgid "_Snap range:"
-msgstr "_Festeområde"
+msgstr "Festeområde:"
#: optgridpage.ui
msgctxt ""
@@ -3692,27 +3648,24 @@ msgid "_Extend edges"
msgstr "_Utvid kanter"
#: optgridpage.ui
-#, fuzzy
msgctxt ""
"optgridpage.ui\n"
"rotate\n"
"label\n"
"string.text"
msgid "When ro_tating:"
-msgstr "Ved _rotasjon"
+msgstr "Ved rotasjon:"
#: optgridpage.ui
-#, fuzzy
msgctxt ""
"optgridpage.ui\n"
"label9\n"
"label\n"
"string.text"
msgid "Point reducti_on:"
-msgstr "Punkt_reduksjon"
+msgstr "Punktreduksjon:"
#: optgridpage.ui
-#, fuzzy
msgctxt ""
"optgridpage.ui\n"
"label8\n"
@@ -3728,7 +3681,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spacing: 1"
-msgstr ""
+msgstr "Avstand: 1"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -3737,7 +3690,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spacing: 1.15"
-msgstr ""
+msgstr "Avstand: 1,15"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -3746,7 +3699,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spacing: 1.5"
-msgstr ""
+msgstr "Avstand: 1,5"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -3755,17 +3708,16 @@ msgctxt ""
"label\n"
"string.text"
msgid "Spacing: 2"
-msgstr ""
+msgstr "Avstand: 2"
#: paralinespacingcontrol.ui
-#, fuzzy
msgctxt ""
"paralinespacingcontrol.ui\n"
"label3\n"
"label\n"
"string.text"
msgid "Line Spacing:"
-msgstr "Linjeavstand"
+msgstr "Linjeavstand:"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -3774,7 +3726,7 @@ msgctxt ""
"0\n"
"stringlist.text"
msgid "Single"
-msgstr ""
+msgstr "Enkel"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -3783,7 +3735,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "1.5 Lines"
-msgstr ""
+msgstr "1,5 linjer"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -3792,7 +3744,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Double"
-msgstr ""
+msgstr "Dobbel"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -3801,7 +3753,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Proportional"
-msgstr ""
+msgstr "Proporsjonal"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -3810,7 +3762,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "At least"
-msgstr ""
+msgstr "Minst"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -3819,7 +3771,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Leading"
-msgstr ""
+msgstr "Ledende"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -3828,17 +3780,16 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Fixed"
-msgstr ""
+msgstr "Fast"
#: paralinespacingcontrol.ui
-#, fuzzy
msgctxt ""
"paralinespacingcontrol.ui\n"
"value_label\n"
"label\n"
"string.text"
msgid "Value:"
-msgstr "verdier"
+msgstr "Verdi:"
#: paralinespacingcontrol.ui
msgctxt ""
@@ -3847,7 +3798,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom Value"
-msgstr ""
+msgstr "Selvvalgt verdi"
#: passwd.ui
msgctxt ""
@@ -3859,17 +3810,15 @@ msgid "Change Password"
msgstr "Endre passord"
#: passwd.ui
-#, fuzzy
msgctxt ""
"passwd.ui\n"
"oldpassL\n"
"label\n"
"string.text"
msgid "_Password:"
-msgstr "_Passord"
+msgstr "_Passord:"
#: passwd.ui
-#, fuzzy
msgctxt ""
"passwd.ui\n"
"oldpass\n"
@@ -3879,27 +3828,24 @@ msgid "Old Password"
msgstr "Gammelt passord"
#: passwd.ui
-#, fuzzy
msgctxt ""
"passwd.ui\n"
"label4\n"
"label\n"
"string.text"
msgid "Pa_ssword:"
-msgstr "Pa_ssord"
+msgstr "Passord:"
#: passwd.ui
-#, fuzzy
msgctxt ""
"passwd.ui\n"
"label5\n"
"label\n"
"string.text"
msgid "Confi_rm:"
-msgstr "_Bekreft"
+msgstr "Bekreft:"
#: passwd.ui
-#, fuzzy
msgctxt ""
"passwd.ui\n"
"label2\n"
@@ -4120,44 +4066,40 @@ msgid "Filter"
msgstr "Filter"
#: redlinefilterpage.ui
-#, fuzzy
msgctxt ""
"redlinefilterpage.ui\n"
"date\n"
"label\n"
"string.text"
msgid "_Date:"
-msgstr "_Dato"
+msgstr "_Dato:"
#: redlinefilterpage.ui
-#, fuzzy
msgctxt ""
"redlinefilterpage.ui\n"
"author\n"
"label\n"
"string.text"
msgid "_Author:"
-msgstr "_Forfatter"
+msgstr "_Forfatter:"
#: redlinefilterpage.ui
-#, fuzzy
msgctxt ""
"redlinefilterpage.ui\n"
"comment\n"
"label\n"
"string.text"
msgid "C_omment:"
-msgstr "M_erknad"
+msgstr "Merknad:"
#: redlinefilterpage.ui
-#, fuzzy
msgctxt ""
"redlinefilterpage.ui\n"
"range\n"
"label\n"
"string.text"
msgid "_Range:"
-msgstr "_Område"
+msgstr "_Område:"
#: redlinefilterpage.ui
msgctxt ""
@@ -4169,34 +4111,31 @@ msgid "Action"
msgstr "Handling"
#: redlinefilterpage.ui
-#, fuzzy
msgctxt ""
"redlinefilterpage.ui\n"
"action\n"
"label\n"
"string.text"
msgid "A_ction:"
-msgstr "_Handling"
+msgstr "Handling:"
#: redlinefilterpage.ui
-#, fuzzy
msgctxt ""
"redlinefilterpage.ui\n"
"dotdotdot\n"
"tooltip_markup\n"
"string.text"
msgid "Set reference"
-msgstr "Sett inn referansepunkt"
+msgstr "Sett inn referanse"
#: redlinefilterpage.ui
-#, fuzzy
msgctxt ""
"redlinefilterpage.ui\n"
"dotdotdot\n"
"tooltip_text\n"
"string.text"
msgid "Set reference"
-msgstr "Sett inn referansepunkt"
+msgstr "Sett inn referanse"
#: redlinefilterpage.ui
msgctxt ""
@@ -4295,7 +4234,7 @@ msgctxt ""
"tooltip_markup\n"
"string.text"
msgid "Set current time and date"
-msgstr ""
+msgstr "Sett nåværende dato og klokkeslett"
#: redlinefilterpage.ui
msgctxt ""
@@ -4304,7 +4243,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Set current time and date"
-msgstr ""
+msgstr "Sett nåværende dato og klokkeslett"
#: redlinefilterpage.ui
msgctxt ""
@@ -4331,7 +4270,7 @@ msgctxt ""
"tooltip_markup\n"
"string.text"
msgid "Set current time and date"
-msgstr ""
+msgstr "Sett nåværende dato og klokkeslett"
#: redlinefilterpage.ui
msgctxt ""
@@ -4340,7 +4279,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Set current time and date"
-msgstr ""
+msgstr "Sett nåværende dato og klokkeslett"
#: redlineviewpage.ui
msgctxt ""
@@ -4397,7 +4336,6 @@ msgid "Changes"
msgstr "Endringer"
#: savemodifieddialog.ui
-#, fuzzy
msgctxt ""
"savemodifieddialog.ui\n"
"SaveModifiedDialog\n"
@@ -4413,7 +4351,7 @@ msgctxt ""
"secondary_text\n"
"string.text"
msgid "The content of the current form has been modified."
-msgstr ""
+msgstr "Innholdet i skjemaet er endret."
#: sidebararea.ui
msgctxt ""
@@ -4485,7 +4423,7 @@ msgctxt ""
"tooltip_markup\n"
"string.text"
msgid "Fill gradient from."
-msgstr ""
+msgstr "Fyll fargeovergang fra."
#: sidebararea.ui
msgctxt ""
@@ -4494,7 +4432,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Fill gradient from."
-msgstr ""
+msgstr "Fyll fargeovergang fra."
#: sidebararea.ui
msgctxt ""
@@ -4656,7 +4594,7 @@ msgctxt ""
"tooltip_markup\n"
"string.text"
msgid "Fill gradient to."
-msgstr ""
+msgstr "Fyll overgang til."
#: sidebararea.ui
msgctxt ""
@@ -4665,7 +4603,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Fill gradient to."
-msgstr ""
+msgstr "Fyll overgang til."
#: sidebararea.ui
msgctxt ""
@@ -4674,7 +4612,7 @@ msgctxt ""
"tooltip_markup\n"
"string.text"
msgid "Select the gradient angle."
-msgstr ""
+msgstr "Velg overgangsvinkel."
#: sidebararea.ui
msgctxt ""
@@ -4683,20 +4621,18 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the gradient angle."
-msgstr ""
+msgstr "Velg overgangsvinkel."
#: sidebararea.ui
-#, fuzzy
msgctxt ""
"sidebararea.ui\n"
"gradientstyle\n"
"0\n"
"stringlist.text"
msgid "Linear"
-msgstr "Lineær"
+msgstr "Linjær"
#: sidebararea.ui
-#, fuzzy
msgctxt ""
"sidebararea.ui\n"
"gradientstyle\n"
@@ -4706,7 +4642,6 @@ msgid "Axial"
msgstr "Aksial"
#: sidebararea.ui
-#, fuzzy
msgctxt ""
"sidebararea.ui\n"
"gradientstyle\n"
@@ -4716,7 +4651,6 @@ msgid "Radial"
msgstr "Radial"
#: sidebararea.ui
-#, fuzzy
msgctxt ""
"sidebararea.ui\n"
"gradientstyle\n"
@@ -4726,7 +4660,6 @@ msgid "Ellipsoid"
msgstr "Elliptisk"
#: sidebararea.ui
-#, fuzzy
msgctxt ""
"sidebararea.ui\n"
"gradientstyle\n"
@@ -4736,7 +4669,6 @@ msgid "Quadratic"
msgstr "Kvadratisk"
#: sidebararea.ui
-#, fuzzy
msgctxt ""
"sidebararea.ui\n"
"gradientstyle\n"
@@ -4752,7 +4684,7 @@ msgctxt ""
"tooltip_markup\n"
"string.text"
msgid "Select the gradient style."
-msgstr ""
+msgstr "Velg overgangsstil."
#: sidebararea.ui
msgctxt ""
@@ -4761,10 +4693,9 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Select the gradient style."
-msgstr ""
+msgstr "Velg overgangsstil."
#: sidebararea.ui
-#, fuzzy
msgctxt ""
"sidebararea.ui\n"
"transparencyslider\n"
@@ -4774,7 +4705,6 @@ msgid "Specify 0% for fully opaque through 100% for fully transparent."
msgstr "Velg fra 0 % for full dekkevne til 100 % for full gjennomsiktighet."
#: sidebararea.ui
-#, fuzzy
msgctxt ""
"sidebararea.ui\n"
"transparencyslider\n"
@@ -5666,14 +5596,13 @@ msgid "Enter the value for the horizontal position."
msgstr "Angi verdien for den vannrette posisjonen."
#: sidebarpossize.ui
-#, fuzzy
msgctxt ""
"sidebarpossize.ui\n"
"horizontalpos\n"
"AtkObject::accessible-name\n"
"string.text"
msgid "Horizontal"
-msgstr "_Vannrett:"
+msgstr "Vannrett"
#: sidebarpossize.ui
msgctxt ""
@@ -5703,14 +5632,13 @@ msgid "Enter the value for the vertical position."
msgstr "Angi verdien for den loddrette posisjonen."
#: sidebarpossize.ui
-#, fuzzy
msgctxt ""
"sidebarpossize.ui\n"
"verticalpos\n"
"AtkObject::accessible-name\n"
"string.text"
msgid "Vertical"
-msgstr "_Loddrett:"
+msgstr "Loddrett"
#: sidebarpossize.ui
msgctxt ""
@@ -5740,14 +5668,13 @@ msgid "Enter a width for the selected object."
msgstr "Angi en bredde på det valgte objektet."
#: sidebarpossize.ui
-#, fuzzy
msgctxt ""
"sidebarpossize.ui\n"
"selectwidth\n"
"AtkObject::accessible-name\n"
"string.text"
msgid "Width"
-msgstr "Bredde:"
+msgstr "Bredde"
#: sidebarpossize.ui
msgctxt ""
@@ -5777,14 +5704,13 @@ msgid "Enter a height for the selected object."
msgstr "Angi en høyde på det valgte objektet."
#: sidebarpossize.ui
-#, fuzzy
msgctxt ""
"sidebarpossize.ui\n"
"selectheight\n"
"AtkObject::accessible-name\n"
"string.text"
msgid "Height"
-msgstr "Høyde:"
+msgstr "Høyde"
#: sidebarpossize.ui
msgctxt ""
@@ -5823,14 +5749,13 @@ msgid "_Rotation:"
msgstr "_Rotasjon:"
#: sidebarpossize.ui
-#, fuzzy
msgctxt ""
"sidebarpossize.ui\n"
"orientationcontrol-atkobject\n"
"AtkObject::accessible-name\n"
"string.text"
msgid "Rotation"
-msgstr "_Rotasjon:"
+msgstr "Rotasjon"
#: sidebarpossize.ui
msgctxt ""
@@ -5902,7 +5827,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Enable"
-msgstr ""
+msgstr "Aktiver"
#: sidebarshadow.ui
msgctxt ""
@@ -5911,37 +5836,34 @@ msgctxt ""
"label\n"
"string.text"
msgid "Angle"
-msgstr ""
+msgstr "Vinkel"
#: sidebarshadow.ui
-#, fuzzy
msgctxt ""
"sidebarshadow.ui\n"
"distance\n"
"label\n"
"string.text"
msgid "Distance"
-msgstr "Instans"
+msgstr "Avstand"
#: sidebarshadow.ui
-#, fuzzy
msgctxt ""
"sidebarshadow.ui\n"
"transparency_label\n"
"label\n"
"string.text"
msgid "Transparency:"
-msgstr "_Gjennomsiktighet:"
+msgstr "Gjennomsiktighet:"
#: sidebarshadow.ui
-#, fuzzy
msgctxt ""
"sidebarshadow.ui\n"
"color\n"
"label\n"
"string.text"
msgid "Color:"
-msgstr "_Farge:"
+msgstr "Farge:"
#: textcontrolchardialog.ui
msgctxt ""
@@ -6031,7 +5953,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add Item"
-msgstr ""
+msgstr "Legg til element"
#: xformspage.ui
msgctxt ""
@@ -6040,7 +5962,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add Element"
-msgstr ""
+msgstr "Legg til element"
#: xformspage.ui
msgctxt ""
@@ -6049,7 +5971,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Add Attribute"
-msgstr ""
+msgstr "Legg til egenskap"
#: xformspage.ui
msgctxt ""
@@ -6058,7 +5980,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit"
-msgstr ""
+msgstr "Rediger"
#: xformspage.ui
msgctxt ""
@@ -6067,4 +5989,4 @@ msgctxt ""
"label\n"
"string.text"
msgid "Delete"
-msgstr ""
+msgstr "Slett"
diff --git a/source/nb/sw/source/ui/app.po b/source/nb/sw/source/ui/app.po
index 8ff9a5e8bf1..893dcd84e3e 100644
--- a/source/nb/sw/source/ui/app.po
+++ b/source/nb/sw/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 02:37+0000\n"
+"PO-Revision-Date: 2016-03-09 00:18+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435286270.000000\n"
+"X-POOTLE-MTIME: 1457482737.000000\n"
#: app.src
msgctxt ""
@@ -687,7 +687,7 @@ msgctxt ""
"STR_SHAPE_DEFNAME\n"
"string.text"
msgid "Shape"
-msgstr ""
+msgstr "Form"
#: app.src
msgctxt ""
@@ -1150,14 +1150,13 @@ msgid "Password-protected files cannot be opened."
msgstr "Støtter ikke passordbeskyttede filer."
#: error.src
-#, fuzzy
msgctxt ""
"error.src\n"
"RID_SW_ERRHDL\n"
"ERR_CODE ( ERRCODE_CLASS_READ , ERR_WW6_NO_WW6_FILE_ERR )\n"
"string.text"
msgid "This is not a valid WinWord6 file."
-msgstr "Dette er ikke en WinWord6-fil."
+msgstr "Dette er ikke en gyldig WinWord6-fil."
#: error.src
msgctxt ""
@@ -1187,14 +1186,13 @@ msgid "File has been written in a newer version."
msgstr "Det er lagret en ny versjon av denne fila."
#: error.src
-#, fuzzy
msgctxt ""
"error.src\n"
"RID_SW_ERRHDL\n"
"ERR_CODE ( ERRCODE_CLASS_READ , ERR_WW8_NO_WW8_FILE_ERR )\n"
"string.text"
msgid "This is not a valid WinWord97 file."
-msgstr "Dette er ikke en WinWord97-fil."
+msgstr "Dette er ikke en gyldig WinWord97-fil."
#: error.src
msgctxt ""
@@ -1426,14 +1424,13 @@ msgid "Footnote/Endnote~..."
msgstr "~Fotnote/sluttnote …"
#: mn.src
-#, fuzzy
msgctxt ""
"mn.src\n"
"_MN_EDIT_FIELD._MN_EDIT_FOOTNOTE._MN_EDIT_IDX_ENTRY_DLG\n"
"FN_EDIT_IDX_ENTRY_DLG\n"
"menuitem.text"
msgid "Edit Inde~x Entry..."
-msgstr "~Stikkord …"
+msgstr "Rediger Indeksoppføring…"
#: mn.src
msgctxt ""
@@ -1460,7 +1457,7 @@ msgctxt ""
"FN_COPY_HYPERLINK_LOCATION\n"
"menuitem.text"
msgid "Copy Hyper~link"
-msgstr ""
+msgstr "Kopier hyperlenke"
#: mn.src
msgctxt ""
@@ -1550,7 +1547,7 @@ msgctxt ""
"FN_UPDATE_CUR_TOX\n"
"menuitem.text"
msgid "~Update Index or Table of Contents"
-msgstr ""
+msgstr "~Oppdater inneholdsliste eller register"
#: mn.src
msgctxt ""
@@ -1559,7 +1556,7 @@ msgctxt ""
"FN_EDIT_CURRENT_TOX\n"
"menuitem.text"
msgid "~Edit Index or Table of Contents"
-msgstr ""
+msgstr "~Rediger inneholdsliste eller register"
#: mn.src
msgctxt ""
@@ -1568,7 +1565,7 @@ msgctxt ""
"FN_REMOVE_CUR_TOX\n"
"menuitem.text"
msgid "Delete Index or Table of Contents"
-msgstr ""
+msgstr "Slett inneholdsliste eller register"
#: mn.src
msgctxt ""
@@ -1577,7 +1574,7 @@ msgctxt ""
"FN_INSERT_CAPTION\n"
"menuitem.text"
msgid "Insert ~Caption..."
-msgstr ""
+msgstr "Sett inn ~bildetekst …"
#: mn.src
msgctxt ""
@@ -1586,7 +1583,7 @@ msgctxt ""
"FN_TABLE_INSERT_ROW_BEFORE\n"
"menuitem.text"
msgid "Rows Above"
-msgstr ""
+msgstr "Rader over"
#: mn.src
msgctxt ""
@@ -1595,7 +1592,7 @@ msgctxt ""
"FN_TABLE_INSERT_ROW_AFTER\n"
"menuitem.text"
msgid "Rows Below"
-msgstr ""
+msgstr "Rader under"
#: mn.src
msgctxt ""
@@ -1604,7 +1601,7 @@ msgctxt ""
"FN_TABLE_INSERT_ROW_DLG\n"
"menuitem.text"
msgid "~Rows..."
-msgstr ""
+msgstr "~Rader …"
#: mn.src
msgctxt ""
@@ -1613,7 +1610,7 @@ msgctxt ""
"FN_TABLE_INSERT_COL_BEFORE\n"
"menuitem.text"
msgid "Columns Left"
-msgstr ""
+msgstr "Kolonner til venstre"
#: mn.src
msgctxt ""
@@ -1622,7 +1619,7 @@ msgctxt ""
"FN_TABLE_INSERT_COL_AFTER\n"
"menuitem.text"
msgid "Columns Right"
-msgstr ""
+msgstr "Kolonner til høyre"
#: mn.src
msgctxt ""
@@ -1631,7 +1628,7 @@ msgctxt ""
"FN_TABLE_INSERT_COL_DLG\n"
"menuitem.text"
msgid "~Columns..."
-msgstr ""
+msgstr "~Kolonner …"
#: mn.src
msgctxt ""
@@ -1640,10 +1637,9 @@ msgctxt ""
"DUMMY\n"
"menuitem.text"
msgid "~Insert"
-msgstr ""
+msgstr "~Sett inn"
#: mn.src
-#, fuzzy
msgctxt ""
"mn.src\n"
"MN_TABLE.DUMMY+1\n"
@@ -1653,7 +1649,6 @@ msgid "~Rows"
msgstr "Rader"
#: mn.src
-#, fuzzy
msgctxt ""
"mn.src\n"
"MN_TABLE.DUMMY+1\n"
@@ -1663,14 +1658,13 @@ msgid "~Columns"
msgstr "Kolonne"
#: mn.src
-#, fuzzy
msgctxt ""
"mn.src\n"
"MN_TABLE.DUMMY+1\n"
"FN_TABLE_DELETE_TABLE\n"
"menuitem.text"
msgid "~Table"
-msgstr "Tabell"
+msgstr "~Tabell"
#: mn.src
msgctxt ""
@@ -1682,34 +1676,31 @@ msgid "~Delete"
msgstr "~Slett"
#: mn.src
-#, fuzzy
msgctxt ""
"mn.src\n"
"MN_TABLE.DUMMY+2\n"
"FN_TABLE_SELECT_ROW\n"
"menuitem.text"
msgid "~Rows"
-msgstr "Rader"
+msgstr "~Rader"
#: mn.src
-#, fuzzy
msgctxt ""
"mn.src\n"
"MN_TABLE.DUMMY+2\n"
"FN_TABLE_SELECT_COL\n"
"menuitem.text"
msgid "~Columns"
-msgstr "Kolonne"
+msgstr "~Kolonne"
#: mn.src
-#, fuzzy
msgctxt ""
"mn.src\n"
"MN_TABLE.DUMMY+2\n"
"FN_TABLE_SELECT_ALL\n"
"menuitem.text"
msgid "~Table"
-msgstr "Tabell"
+msgstr "~Tabell"
#: mn.src
msgctxt ""
@@ -1718,7 +1709,7 @@ msgctxt ""
"FN_TABLE_SELECT_CELL\n"
"menuitem.text"
msgid "C~ell"
-msgstr ""
+msgstr "Celle"
#: mn.src
msgctxt ""
@@ -1781,7 +1772,7 @@ msgctxt ""
"FN_TABLE_SET_COL_WIDTH\n"
"menuitem.text"
msgid "~Column Width..."
-msgstr ""
+msgstr "~Kolonnebredde …"
#: mn.src
msgctxt ""
@@ -1790,7 +1781,7 @@ msgctxt ""
"FN_TABLE_ADJUST_CELLS\n"
"menuitem.text"
msgid "~Optimal Column Width"
-msgstr ""
+msgstr "~Beste kolonnebredde"
#: mn.src
msgctxt ""
@@ -1799,7 +1790,7 @@ msgctxt ""
"FN_TABLE_BALANCE_CELLS\n"
"menuitem.text"
msgid "~Distribute Columns Equally"
-msgstr ""
+msgstr "~Fordel kolonner jevnt"
#: mn.src
msgctxt ""
@@ -1808,7 +1799,7 @@ msgctxt ""
"FN_TABLE_SET_ROW_HEIGHT\n"
"menuitem.text"
msgid "~Row Height..."
-msgstr ""
+msgstr "~Radhøyde"
#: mn.src
msgctxt ""
@@ -1817,7 +1808,7 @@ msgctxt ""
"FN_TABLE_OPTIMAL_HEIGHT\n"
"menuitem.text"
msgid "Optimal Row ~Height"
-msgstr ""
+msgstr "~Beste Radhøyde"
#: mn.src
msgctxt ""
@@ -1826,7 +1817,7 @@ msgctxt ""
"FN_TABLE_BALANCE_ROWS\n"
"menuitem.text"
msgid "Distribute Rows ~Equally"
-msgstr ""
+msgstr "Fordel radene jevnt"
#: mn.src
msgctxt ""
@@ -1835,7 +1826,7 @@ msgctxt ""
"DUMMY+4\n"
"menuitem.text"
msgid "Si~ze"
-msgstr ""
+msgstr "~Størrelse"
#: mn.src
msgctxt ""
@@ -1853,7 +1844,7 @@ msgctxt ""
"FN_FORMAT_TABLE_DLG\n"
"menuitem.text"
msgid "~Table Properties..."
-msgstr ""
+msgstr "~Tabellegenskaper"
#: mn.src
msgctxt ""
@@ -1964,14 +1955,13 @@ msgid "~Delete All Comments"
msgstr "~Slett alle merknader"
#: mn.src
-#, fuzzy
msgctxt ""
"mn.src\n"
"MN_ANNOTATIONS\n"
"FN_FORMAT_ALL_NOTES\n"
"menuitem.text"
msgid "~Format All Comments..."
-msgstr "~Formater alle merknader"
+msgstr "~Formater alle anmerkninger..."
#: mn.src
msgctxt ""
@@ -1996,7 +1986,7 @@ msgctxt ""
"FN_FRAME_WRAP_CONTOUR\n"
"menuitem.text"
msgid "Enable ~Contour"
-msgstr ""
+msgstr "Slå på ~Omriss"
#: mn.src
msgctxt ""
@@ -2041,7 +2031,7 @@ msgctxt ""
"FN_FRAME_WRAP_LEFT\n"
"menuitem.text"
msgid "Wrap ~Before"
-msgstr ""
+msgstr "Bryt ~før"
#: mn.src
msgctxt ""
@@ -2050,7 +2040,7 @@ msgctxt ""
"FN_FRAME_WRAP_RIGHT\n"
"menuitem.text"
msgid "Wrap ~After"
-msgstr ""
+msgstr "Bryt ~etter"
#: mn.src
msgctxt ""
@@ -2361,7 +2351,7 @@ msgctxt ""
"SID_MENU_MANAGE_GRAPHIC\n"
"menuitem.text"
msgid "~Rotate"
-msgstr ""
+msgstr "~Roter"
#: mn.src
msgctxt ""
@@ -2370,7 +2360,7 @@ msgctxt ""
"FN_FORMAT_GRAFIC_DLG\n"
"menuitem.text"
msgid "Format ~Image..."
-msgstr ""
+msgstr "Formater ~bilde…"
#: mn.src
msgctxt ""
diff --git a/source/nb/sw/source/ui/dochdl.po b/source/nb/sw/source/ui/dochdl.po
index 478a4cdf060..391d48e2279 100644
--- a/source/nb/sw/source/ui/dochdl.po
+++ b/source/nb/sw/source/ui/dochdl.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: 2015-02-04 23:54+0000\n"
+"PO-Revision-Date: 2016-03-09 00:19+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1423094066.000000\n"
+"X-POOTLE-MTIME: 1457482798.000000\n"
#: dochdl.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"STR_NO_TABLE\n"
"string.text"
msgid "A table with no rows or no cells cannot be inserted"
-msgstr ""
+msgstr "Det kan ikke settes inn en tabell uten rader og celler"
#: dochdl.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_TABLE_TOO_LARGE\n"
"string.text"
msgid "The table cannot be inserted because it is too large"
-msgstr ""
+msgstr "Tabellen kan ikke settes inn fordi den er for stor"
#: dochdl.src
msgctxt ""
diff --git a/source/nb/sw/source/ui/envelp.po b/source/nb/sw/source/ui/envelp.po
index 309c80c662d..3ba9f685519 100644
--- a/source/nb/sw/source/ui/envelp.po
+++ b/source/nb/sw/source/ui/envelp.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: 2013-08-29 04:00+0000\n"
-"Last-Translator: Olav <odahlum@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-09 00:20+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1377748855.0\n"
+"X-POOTLE-MTIME: 1457482813.000000\n"
#: envelp.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"STR_CUSTOM\n"
"string.text"
msgid "[User]"
-msgstr "[Selvvalgt]"
+msgstr "[Bruker]"
#: labfmt.src
msgctxt ""
diff --git a/source/nb/sw/source/ui/misc.po b/source/nb/sw/source/ui/misc.po
index c56f6404a92..3e2de264bc2 100644
--- a/source/nb/sw/source/ui/misc.po
+++ b/source/nb/sw/source/ui/misc.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-05-11 16:12+0200\n"
-"PO-Revision-Date: 2015-02-04 23:54+0000\n"
-"Last-Translator: Olav <odahlum@gmail.com>\n"
+"PO-Revision-Date: 2016-03-09 00:21+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1423094066.000000\n"
+"X-POOTLE-MTIME: 1457482901.000000\n"
#: glossary.src
msgctxt ""
@@ -105,7 +105,7 @@ msgctxt ""
"Graphics\n"
"itemlist.text"
msgid "Graphics"
-msgstr ""
+msgstr "Grafikk"
#: numberingtypelistbox.src
msgctxt ""
diff --git a/source/nb/sw/source/uibase/lingu.po b/source/nb/sw/source/uibase/lingu.po
index 839f56ba313..818f55044ba 100644
--- a/source/nb/sw/source/uibase/lingu.po
+++ b/source/nb/sw/source/uibase/lingu.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-02-18 23:24+0000\n"
+"PO-Revision-Date: 2016-03-09 00:24+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1424301850.000000\n"
+"X-POOTLE-MTIME: 1457483055.000000\n"
#: olmenu.src
msgctxt ""
@@ -44,7 +44,6 @@ msgid "~Add to Dictionary"
msgstr "~Legg til i ordlista"
#: olmenu.src
-#, fuzzy
msgctxt ""
"olmenu.src\n"
"MN_SPELL_POPUP\n"
diff --git a/source/nb/sw/source/uibase/utlui.po b/source/nb/sw/source/uibase/utlui.po
index 9d7849a162a..d3ae51a5998 100644
--- a/source/nb/sw/source/uibase/utlui.po
+++ b/source/nb/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-05-13 03:36+0000\n"
+"PO-Revision-Date: 2016-03-09 00:26+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431488197.000000\n"
+"X-POOTLE-MTIME: 1457483188.000000\n"
#: attrdesc.src
msgctxt ""
@@ -1689,7 +1689,6 @@ msgid "Content View"
msgstr "Innholdsvisning"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_OUTLINE_LEVEL\n"
@@ -1698,7 +1697,6 @@ msgid "Outline Level"
msgstr "Disposisjonsnivå"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_DRAGMODE\n"
@@ -1707,7 +1705,6 @@ msgid "Drag Mode"
msgstr "Dra-modus"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_HYPERLINK\n"
@@ -1716,7 +1713,6 @@ msgid "Insert as Hyperlink"
msgstr "Sett inn som hyperlenke"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_LINK_REGION\n"
@@ -1725,7 +1721,6 @@ msgid "Insert as Link"
msgstr "Sett inn som lenke"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_COPY_REGION\n"
@@ -1734,7 +1729,6 @@ msgid "Insert as Copy"
msgstr "Sett inn som kopi"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_DISPLAY\n"
@@ -1743,7 +1737,6 @@ msgid "Display"
msgstr "Vis"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_ACTIVE_VIEW\n"
@@ -1752,7 +1745,6 @@ msgid "Active Window"
msgstr "Aktivt vindu"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_HIDDEN\n"
@@ -1761,7 +1753,6 @@ msgid "hidden"
msgstr "skjult"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_ACTIVE\n"
@@ -1770,7 +1761,6 @@ msgid "active"
msgstr "aktivt"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_INACTIVE\n"
@@ -1779,7 +1769,6 @@ msgid "inactive"
msgstr "inaktiv"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_EDIT_ENTRY\n"
@@ -1788,7 +1777,6 @@ msgid "Edit..."
msgstr "Rediger …"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_UPDATE\n"
@@ -1797,7 +1785,6 @@ msgid "~Update"
msgstr "~Oppdater"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_EDIT_CONTENT\n"
@@ -1806,7 +1793,6 @@ msgid "Edit"
msgstr "Rediger"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_EDIT_LINK\n"
@@ -1815,7 +1801,6 @@ msgid "Edit link"
msgstr "Rediger lenke"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_EDIT_INSERT\n"
@@ -1824,7 +1809,6 @@ msgid "Insert"
msgstr "Sett inn"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_INDEX\n"
@@ -1833,7 +1817,6 @@ msgid "~Index"
msgstr "~Register"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_FILE\n"
@@ -1842,7 +1825,6 @@ msgid "File"
msgstr "Fil"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_NEW_FILE\n"
@@ -1851,7 +1833,6 @@ msgid "New Document"
msgstr "Nytt dokument"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_INSERT_TEXT\n"
@@ -1860,7 +1841,6 @@ msgid "Text"
msgstr "Tekst"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_DELETE\n"
@@ -1869,7 +1849,6 @@ msgid "Delete"
msgstr "Slett"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_DELETE_ENTRY\n"
@@ -1878,7 +1857,6 @@ msgid "~Delete"
msgstr "~Slett"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_UPDATE_SEL\n"
@@ -1887,7 +1865,6 @@ msgid "Selection"
msgstr "Utvalg"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_UPDATE_INDEX\n"
@@ -1896,7 +1873,6 @@ msgid "Indexes"
msgstr "Registre"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_UPDATE_LINK\n"
@@ -1905,7 +1881,6 @@ msgid "Links"
msgstr "Lenker"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_UPDATE_ALL\n"
@@ -1914,7 +1889,6 @@ msgid "All"
msgstr "Alle"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_REMOVE_INDEX\n"
@@ -1923,7 +1897,6 @@ msgid "~Remove Index"
msgstr "~Fjern indeks"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_REMOVE_TBL_PROTECTION\n"
@@ -1932,7 +1905,6 @@ msgid "~Unprotect"
msgstr "~Fjern beskyttelse"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_INVISIBLE\n"
@@ -1941,7 +1913,6 @@ msgid "hidden"
msgstr "skjult"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_BROKEN_LINK\n"
@@ -1950,7 +1921,6 @@ msgid "File not found: "
msgstr "Fant ikke fila: "
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_RENAME\n"
@@ -1959,7 +1929,6 @@ msgid "~Rename"
msgstr "~Endre navn"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_READONLY_IDX\n"
@@ -1968,7 +1937,6 @@ msgid "Read-~only"
msgstr "Skrive~beskyttet"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_POSTIT_SHOW\n"
@@ -1977,7 +1945,6 @@ msgid "Show All"
msgstr "Vis alle"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_POSTIT_HIDE\n"
@@ -1986,7 +1953,6 @@ msgid "Hide All"
msgstr "Skjul alle"
#: navipi.src
-#, fuzzy
msgctxt ""
"navipi.src\n"
"STR_POSTIT_DELETE\n"
@@ -2016,7 +1982,7 @@ msgctxt ""
"STR_VIEWLAYOUT_MULTI\n"
"string.text"
msgid "Multiple-page view"
-msgstr ""
+msgstr "Flersidevisning"
#: statusbar.src
msgctxt ""
@@ -2032,7 +1998,7 @@ msgctxt ""
"STR_BOOKCTRL_HINT\n"
"string.text"
msgid "Page number in document. Click to open Navigator window or right-click for bookmark list."
-msgstr ""
+msgstr "Sidetall i dokument. Klikk for å åpne Dokumentstruktur eller høyreklikk for å åpne bokmerkelista."
#: statusbar.src
msgctxt ""
diff --git a/source/nb/sw/uiconfig/swriter/ui.po b/source/nb/sw/uiconfig/swriter/ui.po
index 9c293fdfcd6..a08bcfd482e 100644
--- a/source/nb/sw/uiconfig/swriter/ui.po
+++ b/source/nb/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 23:10+0000\n"
+"PO-Revision-Date: 2016-03-09 00:38+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438902626.000000\n"
+"X-POOTLE-MTIME: 1457483908.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -1562,7 +1562,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Highlighting"
-msgstr ""
+msgstr "Utheving"
#: characterproperties.ui
msgctxt ""
@@ -2966,7 +2966,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Password..."
-msgstr ""
+msgstr "Passord …"
#: editsectiondialog.ui
msgctxt ""
@@ -5454,10 +5454,9 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Right-to-left (vertical)"
-msgstr ""
+msgstr "Høyre-til-venstre (loddrett)"
#: frmaddpage.ui
-#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"liststore1\n"
@@ -7525,7 +7524,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Accept"
-msgstr ""
+msgstr "_Godta"
#: managechangessidebar.ui
msgctxt ""
@@ -7534,7 +7533,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Reject"
-msgstr ""
+msgstr "_Avvis"
#: managechangessidebar.ui
msgctxt ""
@@ -7543,7 +7542,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "A_ccept All"
-msgstr ""
+msgstr "_Godta alt"
#: managechangessidebar.ui
msgctxt ""
@@ -7552,7 +7551,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "R_eject All"
-msgstr ""
+msgstr "Avvis alt"
#: mergeconnectdialog.ui
msgctxt ""
@@ -9160,7 +9159,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Style"
-msgstr ""
+msgstr "Rediger stil"
#: numparapage.ui
msgctxt ""
@@ -9533,7 +9532,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Take it into account when comparing"
-msgstr ""
+msgstr "Ta med ved sammenligning"
#: optcomparison.ui
msgctxt ""
@@ -9542,7 +9541,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Store it when changing the document"
-msgstr ""
+msgstr "Lagre det når dokumentet endres"
#: optcomparison.ui
msgctxt ""
@@ -9551,7 +9550,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Random number to improve accuracy of document comparison"
-msgstr ""
+msgstr "Tilfeldig tall for å gjøre dokumentsammenligningen mer nøyaktig"
#: optcompatpage.ui
msgctxt ""
@@ -9938,7 +9937,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Enable cursor"
-msgstr ""
+msgstr "Slå på markør"
#: optformataidspage.ui
msgctxt ""
@@ -9947,7 +9946,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Ignore protection"
-msgstr ""
+msgstr "Ignorer beskyttelse"
#: optformataidspage.ui
msgctxt ""
@@ -9956,7 +9955,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Protected Areas"
-msgstr ""
+msgstr "Beskyttede områder"
#: optgeneralpage.ui
msgctxt ""
@@ -10433,7 +10432,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "New Table Defaults"
-msgstr ""
+msgstr "Standardvalg for nye tabeller"
#: opttablepage.ui
msgctxt ""
@@ -10580,7 +10579,6 @@ msgid "Colu_mn:"
msgstr "K_olonne:"
#: opttablepage.ui
-#, fuzzy
msgctxt ""
"opttablepage.ui\n"
"label14\n"
@@ -12283,7 +12281,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Password..."
-msgstr ""
+msgstr "Passord …"
#: sectionpage.ui
msgctxt ""
@@ -12628,7 +12626,6 @@ msgid "Margin"
msgstr "Marg"
#: sidebartheme.ui
-#, fuzzy
msgctxt ""
"sidebartheme.ui\n"
"label1\n"
@@ -12638,7 +12635,6 @@ msgid "Fonts"
msgstr "Skrift"
#: sidebartheme.ui
-#, fuzzy
msgctxt ""
"sidebartheme.ui\n"
"label2\n"
@@ -12762,7 +12758,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Enable Contour"
-msgstr ""
+msgstr "Aktiver kontur"
#: sidebarwrap.ui
msgctxt ""
@@ -12771,7 +12767,7 @@ msgctxt ""
"tooltip_markup\n"
"string.text"
msgid "Click to automatically trim unnecessary parts of the image"
-msgstr ""
+msgstr "Klikk for å trimme unødvendige deler av bildet"
#: sidebarwrap.ui
msgctxt ""
@@ -12780,7 +12776,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Click to automatically trim unnecessary parts of the image"
-msgstr ""
+msgstr "Klikk for å trimme unødvendige deler av bildet"
#: sidebarwrap.ui
msgctxt ""
@@ -12789,7 +12785,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Edit Contour"
-msgstr ""
+msgstr "Rediger omrisset"
#: sidebarwrap.ui
msgctxt ""
@@ -12798,7 +12794,7 @@ msgctxt ""
"tooltip_markup\n"
"string.text"
msgid "Edit the trimmed area of the image"
-msgstr ""
+msgstr "Rediger det trimma bildeområdet"
#: sidebarwrap.ui
msgctxt ""
@@ -12807,10 +12803,9 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Edit the trimmed area of the image"
-msgstr ""
+msgstr "Rediger det trimma bildeområdet"
#: sidebarwrap.ui
-#, fuzzy
msgctxt ""
"sidebarwrap.ui\n"
"label1\n"
@@ -12826,7 +12821,7 @@ msgctxt ""
"tooltip_markup\n"
"string.text"
msgid "Set the amount of space between the image and surrounding text"
-msgstr ""
+msgstr "Velg hvor stor avstanden skal være mellombildet og den omgivende teksten"
#: sidebarwrap.ui
msgctxt ""
@@ -12835,7 +12830,7 @@ msgctxt ""
"tooltip_text\n"
"string.text"
msgid "Set the amount of space between the image and surrounding text"
-msgstr ""
+msgstr "Velg hvor stor avstanden skal være mellombildet og den omgivende teksten"
#: sidebarwrap.ui
msgctxt ""
@@ -12844,10 +12839,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "Custom"
-msgstr ""
+msgstr "Tilpass"
#: sidebarwrap.ui
-#, fuzzy
msgctxt ""
"sidebarwrap.ui\n"
"spacinglist\n"
@@ -12863,7 +12857,7 @@ msgctxt ""
"1\n"
"stringlist.text"
msgid "Extra Small (0.16cm)"
-msgstr ""
+msgstr "Ekstra liten (0,16 cm)"
#: sidebarwrap.ui
msgctxt ""
@@ -12872,7 +12866,7 @@ msgctxt ""
"2\n"
"stringlist.text"
msgid "Small (0.32cm)"
-msgstr ""
+msgstr "Liten (0,32cm)"
#: sidebarwrap.ui
msgctxt ""
@@ -12881,7 +12875,7 @@ msgctxt ""
"3\n"
"stringlist.text"
msgid "Small Medium (0.64cm)"
-msgstr ""
+msgstr "Middels liten (0,64 cm)"
#: sidebarwrap.ui
msgctxt ""
@@ -12890,7 +12884,7 @@ msgctxt ""
"4\n"
"stringlist.text"
msgid "Medium (0.95cm)"
-msgstr ""
+msgstr "Middels (0,95 cm)"
#: sidebarwrap.ui
msgctxt ""
@@ -12899,7 +12893,7 @@ msgctxt ""
"5\n"
"stringlist.text"
msgid "Medium Large (1.27cm)"
-msgstr ""
+msgstr "Middels stor (1,27 cm)"
#: sidebarwrap.ui
msgctxt ""
@@ -12908,7 +12902,7 @@ msgctxt ""
"6\n"
"stringlist.text"
msgid "Large (1.9cm)"
-msgstr ""
+msgstr "Stor (1,9 cm)"
#: sidebarwrap.ui
msgctxt ""
@@ -12917,7 +12911,7 @@ msgctxt ""
"7\n"
"stringlist.text"
msgid "Extra Large (2.54cm)"
-msgstr ""
+msgstr "Ekstra stor (2,54 cm)"
#: sortdialog.ui
msgctxt ""
@@ -13097,7 +13091,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Select..."
-msgstr ""
+msgstr "Velg..."
#: sortdialog.ui
msgctxt ""
@@ -13709,7 +13703,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Highlighting"
-msgstr ""
+msgstr "Utheving"
#: templatedialog1.ui
msgctxt ""
@@ -13898,7 +13892,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Highlighting"
-msgstr ""
+msgstr "Utheving"
#: templatedialog2.ui
msgctxt ""
@@ -14546,7 +14540,7 @@ msgctxt ""
"title\n"
"string.text"
msgid "Insert Index or Table of Contents"
-msgstr ""
+msgstr "Sett inn register eller innholdsfortegnelse"
#: tocdialog.ui
msgctxt ""
@@ -14564,7 +14558,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Index or Table of Contents"
-msgstr ""
+msgstr "Sett inn register eller innholdsfortegnelse"
#: tocdialog.ui
msgctxt ""
@@ -15140,7 +15134,7 @@ msgctxt ""
"label\n"
"string.text"
msgid "Create Index or Table of Contents"
-msgstr ""
+msgstr "Lag register eller innholdsfortegnelse"
#: tocindexpage.ui
msgctxt ""
@@ -15224,14 +15218,13 @@ msgid "Styl_es"
msgstr "Stil_er"
#: tocindexpage.ui
-#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"styles\n"
"label\n"
"string.text"
msgid "Assign styles..."
-msgstr "Tildel stiler"
+msgstr "Tildel stiler …"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/nb/uui/source.po b/source/nb/uui/source.po
index 4169bf9aeaf..0a36704f18f 100644
--- a/source/nb/uui/source.po
+++ b/source/nb/uui/source.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-06-26 02:41+0000\n"
+"PO-Revision-Date: 2016-03-09 00:40+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
@@ -14,10 +14,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435286497.000000\n"
+"X-POOTLE-MTIME: 1457484041.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 "Klarte ikke å låse dokumentet."
#: lockfailed.src
msgctxt ""
@@ -888,7 +887,7 @@ msgctxt ""
"STR_LOCKFAILED_DONTSHOWAGAIN\n"
"string.text"
msgid "~Do not show this message again"
-msgstr ""
+msgstr "~Ikke vis denne meldingen igjen"
#: nameclashdlg.src
msgctxt ""
@@ -899,6 +898,8 @@ msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
"Choose Replace to overwrite the existing file or provide a new name."
msgstr ""
+"En fil med navnet «%NAME» eksisterer allerede i «%FOLDER».\n"
+"Velg Erstatt for å overskrive fila, eller oppgi et nytt navn."
#: nameclashdlg.src
msgctxt ""
@@ -909,6 +910,8 @@ msgid ""
"A file with the name \"%NAME\" already exists in the location \"%FOLDER\".\n"
"Please enter a new name."
msgstr ""
+"En fil med navnet «%NAME» eksisterer allerede i «%FOLDER».\n"
+"Velg Erstatt for å overskrive fila, eller oppgi et nytt navn."
#: nameclashdlg.src
msgctxt ""
@@ -916,7 +919,7 @@ msgctxt ""
"STR_SAME_NAME_USED\n"
"string.text"
msgid "Please provide a different file name!"
-msgstr ""
+msgstr "Gi filen et annet navn."
#: openlocked.src
msgctxt ""
diff --git a/source/nb/uui/uiconfig/ui.po b/source/nb/uui/uiconfig/ui.po
index 3f2fff916b8..56ee0229dce 100644
--- a/source/nb/uui/uiconfig/ui.po
+++ b/source/nb/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: 2015-06-24 17:06+0200\n"
-"PO-Revision-Date: 2015-05-13 03:38+0000\n"
+"PO-Revision-Date: 2016-03-09 00:40+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
@@ -14,10 +14,9 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431488315.000000\n"
+"X-POOTLE-MTIME: 1457484055.000000\n"
#: authfallback.ui
-#, fuzzy
msgctxt ""
"authfallback.ui\n"
"AuthFallbackDlg\n"
@@ -63,7 +62,6 @@ msgid "_Remember password"
msgstr "_Husk passord"
#: logindialog.ui
-#, fuzzy
msgctxt ""
"logindialog.ui\n"
"accountft\n"
@@ -73,7 +71,6 @@ msgid "A_ccount:"
msgstr "_Konto"
#: logindialog.ui
-#, fuzzy
msgctxt ""
"logindialog.ui\n"
"passwordft\n"
@@ -83,24 +80,22 @@ msgid "Pass_word:"
msgstr "_Passord"
#: logindialog.ui
-#, fuzzy
msgctxt ""
"logindialog.ui\n"
"nameft\n"
"label\n"
"string.text"
msgid "_User name:"
-msgstr "_Brukernavn"
+msgstr "_Brukernavn:"
#: logindialog.ui
-#, fuzzy
msgctxt ""
"logindialog.ui\n"
"pathft\n"
"label\n"
"string.text"
msgid "_Path:"
-msgstr "_Sti"
+msgstr "_Sti:"
#: logindialog.ui
msgctxt ""
@@ -109,10 +104,9 @@ msgctxt ""
"label\n"
"string.text"
msgid "_Browse…"
-msgstr ""
+msgstr "_Bla gjennom …"
#: logindialog.ui
-#, fuzzy
msgctxt ""
"logindialog.ui\n"
"loginrealm\n"
@@ -184,17 +178,15 @@ msgid "The document contains document macros signed by:"
msgstr "Dokumentet inneholder makroer som er signerte av:"
#: macrowarnmedium.ui
-#, fuzzy
msgctxt ""
"macrowarnmedium.ui\n"
"descr1aLabel\n"
"label\n"
"string.text"
msgid "The document contains document macros."
-msgstr "Dokumentet inneholder makroer som er signerte av:"
+msgstr "Dokumentet inneholder makroer."
#: macrowarnmedium.ui
-#, fuzzy
msgctxt ""
"macrowarnmedium.ui\n"
"viewSignsButton\n"
@@ -384,11 +376,10 @@ msgid "Do not accept this certificate and do not connect to this Web site"
msgstr "Ikke godta sertifikatet og ikke koble til nettstedet"
#: unknownauthdialog.ui
-#, fuzzy
msgctxt ""
"unknownauthdialog.ui\n"
"examine\n"
"label\n"
"string.text"
msgid "Examine Certificate…"
-msgstr "Undersøk sertifikat …"
+msgstr "Kontroller sertifikat …"
diff --git a/source/nb/vcl/source/src.po b/source/nb/vcl/source/src.po
index 8be80962164..487ca765555 100644
--- a/source/nb/vcl/source/src.po
+++ b/source/nb/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 18:55+0000\n"
+"PO-Revision-Date: 2016-03-09 00:41+0000\n"
"Last-Translator: system user <>\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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449860105.000000\n"
+"X-POOTLE-MTIME: 1457484119.000000\n"
#: app.src
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"SV_APP_CPUTHREADS\n"
"string.text"
msgid "CPU Threads: "
-msgstr ""
+msgstr "CPU tråder"
#: app.src
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"SV_APP_OSVERSION\n"
"string.text"
msgid "OS Version: "
-msgstr ""
+msgstr "Operativsystemversjon:"
#: app.src
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"SV_APP_UIRENDER\n"
"string.text"
msgid "UI Render: "
-msgstr ""
+msgstr "Brukergrensesnitt gjengiver:"
#: app.src
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"SV_APP_GL\n"
"string.text"
msgid "GL"
-msgstr ""
+msgstr "GL"
#: app.src
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"SV_APP_DEFAULT\n"
"string.text"
msgid "default"
-msgstr ""
+msgstr "Standard"
#. This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string
#: btntext.src
diff --git a/source/nb/wizards/source/formwizard.po b/source/nb/wizards/source/formwizard.po
index 863240dfb5d..fb7f5572b73 100644
--- a/source/nb/wizards/source/formwizard.po
+++ b/source/nb/wizards/source/formwizard.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: 2015-11-10 19:32+0100\n"
-"PO-Revision-Date: 2015-08-22 07:14+0000\n"
-"Last-Translator: Klaus Ade Johnstad <klausade@gmail.com>\n"
+"PO-Revision-Date: 2016-03-09 00:48+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: British English <>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1440227656.000000\n"
+"X-POOTLE-MTIME: 1457484487.000000\n"
#: dbwizres.src
msgctxt ""
@@ -1255,7 +1255,6 @@ msgid "get the maximum of"
msgstr "hent den største av"
#: dbwizres.src
-#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_DB_QUERY_WIZARD_START + 44\n"
diff --git a/source/ne/cui/uiconfig/ui.po b/source/ne/cui/uiconfig/ui.po
index 92f1353722d..bb49b324523 100644
--- a/source/ne/cui/uiconfig/ui.po
+++ b/source/ne/cui/uiconfig/ui.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibO 40l10n\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-08 14:24+0000\n"
+"PO-Revision-Date: 2016-03-08 21:48+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: ne\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452263076.000000\n"
+"X-POOTLE-MTIME: 1457473722.000000\n"
#: aboutconfigdialog.ui
msgctxt ""
@@ -14049,31 +14049,34 @@ msgid "N_one"
msgstr "कुनै पनि होइन"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_POINTS\n"
"label\n"
"string.text"
msgid "_........"
-msgstr ""
+msgstr "_........"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_DASHLINE\n"
"label\n"
"string.text"
msgid "_--------"
-msgstr ""
+msgstr "_--------"
#: paratabspage.ui
+#, fuzzy
msgctxt ""
"paratabspage.ui\n"
"radiobuttonBTN_FILLCHAR_UNDERSCORE\n"
"label\n"
"string.text"
msgid "______"
-msgstr ""
+msgstr "______"
#: paratabspage.ui
#, fuzzy
@@ -17350,40 +17353,44 @@ msgid "(None)"
msgstr "(कुनै पनि होइन)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"1\n"
"stringlist.text"
msgid "("
-msgstr ""
+msgstr "("
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"2\n"
"stringlist.text"
msgid "["
-msgstr ""
+msgstr "["
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"3\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore1\n"
"4\n"
"stringlist.text"
msgid "{"
-msgstr ""
+msgstr "{"
#: twolinespage.ui
msgctxt ""
@@ -17404,40 +17411,44 @@ msgid "(None)"
msgstr "(कुनै पनि होइन)"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"1\n"
"stringlist.text"
msgid ")"
-msgstr ""
+msgstr ")"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"2\n"
"stringlist.text"
msgid "]"
-msgstr ""
+msgstr "]"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"3\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: twolinespage.ui
+#, fuzzy
msgctxt ""
"twolinespage.ui\n"
"liststore2\n"
"4\n"
"stringlist.text"
msgid "}"
-msgstr ""
+msgstr "}"
#: twolinespage.ui
msgctxt ""
diff --git a/source/ne/dbaccess/uiconfig/ui.po b/source/ne/dbaccess/uiconfig/ui.po
index dae9f5db53e..10683450526 100644
--- a/source/ne/dbaccess/uiconfig/ui.po
+++ b/source/ne/dbaccess/uiconfig/ui.po
@@ -4,15 +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: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2016-03-08 21:54+0000\n"
+"Last-Translator: system 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"
-"X-Generator: LibreOffice\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457474067.000000\n"
#: admindialog.ui
msgctxt ""
@@ -1926,22 +1928,24 @@ msgid "="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"1\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"2\n"
"stringlist.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: queryfilterdialog.ui
msgctxt ""
@@ -1953,13 +1957,14 @@ msgid "<="
msgstr ""
#: queryfilterdialog.ui
+#, fuzzy
msgctxt ""
"queryfilterdialog.ui\n"
"cond1\n"
"4\n"
"stringlist.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: queryfilterdialog.ui
msgctxt ""
@@ -3015,58 +3020,64 @@ msgid "Thousands separator:"
msgstr ""
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"2\n"
"stringlist.text"
msgid ";"
-msgstr ""
+msgstr ";"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"decimalseparator\n"
"3\n"
"stringlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"0\n"
"stringlist.text"
msgid "."
-msgstr ""
+msgstr "."
#: textpage.ui
+#, fuzzy
msgctxt ""
"textpage.ui\n"
"thousandsseparator\n"
"1\n"
"stringlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: textpage.ui
msgctxt ""
diff --git a/source/ne/extensions/uiconfig/sabpilot/ui.po b/source/ne/extensions/uiconfig/sabpilot/ui.po
index d991ceb67cf..6bed092f2ec 100644
--- a/source/ne/extensions/uiconfig/sabpilot/ui.po
+++ b/source/ne/extensions/uiconfig/sabpilot/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 02:24+0000\n"
+"PO-Revision-Date: 2016-03-08 22:03+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435285461.000000\n"
+"X-POOTLE-MTIME: 1457474608.000000\n"
#: contentfieldpage.ui
msgctxt ""
@@ -281,13 +281,14 @@ msgid "Selected fields"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldright\n"
"label\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -299,13 +300,14 @@ msgid "=>>"
msgstr ""
#: gridfieldsselectionpage.ui
+#, fuzzy
msgctxt ""
"gridfieldsselectionpage.ui\n"
"fieldleft\n"
"label\n"
"string.text"
msgid "<-"
-msgstr ""
+msgstr "<-"
#: gridfieldsselectionpage.ui
msgctxt ""
@@ -380,22 +382,24 @@ msgid "_Option fields"
msgstr ""
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toright\n"
"label\n"
"string.text"
msgid "_>>"
-msgstr ""
+msgstr "_>>"
#: groupradioselectionpage.ui
+#, fuzzy
msgctxt ""
"groupradioselectionpage.ui\n"
"toleft\n"
"label\n"
"string.text"
msgid "_<<"
-msgstr ""
+msgstr "_<<"
#: groupradioselectionpage.ui
msgctxt ""
@@ -648,13 +652,14 @@ msgid "_Data source:"
msgstr ""
#: tableselectionpage.ui
+#, fuzzy
msgctxt ""
"tableselectionpage.ui\n"
"search\n"
"label\n"
"string.text"
msgid "_..."
-msgstr ""
+msgstr "_..."
#: tableselectionpage.ui
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/scalc/01.po b/source/ne/helpcontent2/source/text/scalc/01.po
index 562a756f057..369e35454ab 100644
--- a/source/ne/helpcontent2/source/text/scalc/01.po
+++ b/source/ne/helpcontent2/source/text/scalc/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-12-09 06:03+0000\n"
-"Last-Translator: Saroj Dhakal <lotusnagarkot@gmail.com>\n"
+"PO-Revision-Date: 2016-03-04 01:10+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449641039.000000\n"
+"X-POOTLE-MTIME: 1457053849.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -60150,13 +60150,14 @@ msgid "equal"
msgstr "बराबर"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3154254\n"
"15\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12090103.xhp
msgctxt ""
@@ -60168,13 +60169,14 @@ msgid "less than"
msgstr "भन्दा कम"
#: 12090103.xhp
+#, fuzzy
msgctxt ""
"12090103.xhp\n"
"par_id3155335\n"
"17\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12090103.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/shared/00.po b/source/ne/helpcontent2/source/text/shared/00.po
index 9c06c0ab1d4..05692d4617b 100644
--- a/source/ne/helpcontent2/source/text/shared/00.po
+++ b/source/ne/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-09-01 18:03+0000\n"
-"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
+"PO-Revision-Date: 2016-03-04 01:44+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1441130592.000000\n"
+"X-POOTLE-MTIME: 1457055841.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3972,12 +3972,13 @@ msgid "ODF 1.2 (Extended)"
msgstr ""
#: 00000021.xhp
+#, fuzzy
msgctxt ""
"00000021.xhp\n"
"par_id100120091238112\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 00000021.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/shared/01.po b/source/ne/helpcontent2/source/text/shared/01.po
index 976a23d94c2..ebece249d2b 100644
--- a/source/ne/helpcontent2/source/text/shared/01.po
+++ b/source/ne/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-02-10 14:45+0100\n"
-"PO-Revision-Date: 2016-01-12 13:13+0000\n"
+"PO-Revision-Date: 2016-03-04 02:10+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1452604429.000000\n"
+"X-POOTLE-MTIME: 1457057424.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -7493,13 +7493,14 @@ msgid "Represents the given character unless otherwise specified."
msgstr "निर्दिष्ट नगरिए सम्म कुनै एक क्यारेक्टरलाई प्रतिनीधित्व गर्छ ।"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3152427\n"
"19\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02100001.xhp
msgctxt ""
@@ -7511,13 +7512,14 @@ msgid "Represents any single character except for a line break or paragraph brea
msgstr "लाइन विच्छेदन वा अनुच्छेद विच्छेदनका लागि बाहेक कुनै पनि एकल क्यारेक्टर प्रतिनीधित्व गर्दछ । उदाहरणका लागि, खोजी अवधिले \"sh.rt\" \"shirt\" र \"short\" दुबै फर्काउँछ ।"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3154682\n"
"21\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 02100001.xhp
msgctxt ""
@@ -7529,13 +7531,14 @@ msgid "Only finds the search term if the term is at the beginning of a paragraph
msgstr "यदि अवधि अनुच्छेदको सुरुआतमा छ भने खोजी अवधि मात्र भेटाउदछ । विशेष वस्तुहरू जस्तै खाली फाँटहरू वा क्यारेक्टर-एङ्कर गरिएको फ्रेमहरू, अनुच्छेदको सुरुआतमा उपेक्षा गर्दछ । उदाहरणका लागि: \"^Peter\""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3159194\n"
"23\n"
"help.text"
msgid "$"
-msgstr ""
+msgstr "$"
#: 02100001.xhp
msgctxt ""
@@ -7555,13 +7558,14 @@ msgid "$ on its own matches the end of a paragraph. This way it is possible to s
msgstr ""
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3156414\n"
"25\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 02100001.xhp
msgctxt ""
@@ -7600,13 +7604,14 @@ msgid "The longest possible string that matches this search pattern in a paragra
msgstr "सबभन्दा लामो उपयुक्त स्ट्रीङ जसमा अनुच्छेदमा जहिल्यै भेटिने यी खोजी वान्की मिलाउँछ यदि अनुच्छेदले स्ट्रीङ \"AX 4 AX4\" समाबेस गरेको खण्डमा सम्पूर्ण हरफ हाइलाइट गरिन्छ ।"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3143267\n"
"199\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 02100001.xhp
msgctxt ""
@@ -7618,13 +7623,14 @@ msgid "Finds zero or one of the characters in front of the \"?\". For example, \
msgstr "\"?\" को अगाडि शून्य वा बढी क्यारेक्टर भेटाउँछ । उदाहरणका लागि,\"Texts?\" ले \"Text\" र \"Texts\" भेटाउँछ र \"x(ab|c)?y\" ले \"xy\", \"xaby\", वा \"xcy\" भेटाउँछ ।"
#: 02100001.xhp
+#, fuzzy
msgctxt ""
"02100001.xhp\n"
"par_id3166410\n"
"158\n"
"help.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: 02100001.xhp
msgctxt ""
@@ -15831,13 +15837,14 @@ msgid "Explanation"
msgstr "व्याख्या"
#: 05020301.xhp
+#, fuzzy
msgctxt ""
"05020301.xhp\n"
"par_id3152801\n"
"5\n"
"help.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: 05020301.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/shared/02.po b/source/ne/helpcontent2/source/text/shared/02.po
index c30a13bf5e7..a8194687a37 100644
--- a/source/ne/helpcontent2/source/text/shared/02.po
+++ b/source/ne/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-12-09 06:05+0000\n"
-"Last-Translator: Saroj Dhakal <lotusnagarkot@gmail.com>\n"
+"PO-Revision-Date: 2016-03-04 02:22+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449641135.000000\n"
+"X-POOTLE-MTIME: 1457058120.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -13865,13 +13865,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\">Moves al
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/allright\"> सबै सूचीकृत डाटाबेस फाँटहरूलाई <emph>तालिका स्तम्भ(हरू)</emph> सूची बाकस भित्र सर्दछ। </ahelp> सूची बाकस<emph>तालिका स्तम्भ(हरू)</emph> मा सूचीकृत सबै फाँटहरू कागजात भित्र घुसाईन्छ।"
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3163802\n"
"6\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070100.xhp
msgctxt ""
@@ -13883,13 +13884,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\">Moves th
msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/oneright\"> चयन गरिएका डाटाबेस फाँटलाई <emph>तालिका स्तम्भ(हरू)</emph> सूची बाकस भित्र सर्दछ। </ahelp> तपाईँंले यसलाई <emph>तालिका स्तम्भ(हरू)</emph> सूची बाकसमा सार्नका लागि एउटा प्रविष्टिलाई डबल-क्लिक गर्न सक्नुहुन्छ। <emph>तालिका स्तम्भ(हरू)</emph> सूची बाकसमा सूचीकृत गरिएका सबै फाँटहरू कागजात भित्र घुसाईएका छन्."
#: 12070100.xhp
+#, fuzzy
msgctxt ""
"12070100.xhp\n"
"hd_id3149732\n"
"7\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 12070100.xhp
msgctxt ""
@@ -14178,13 +14180,14 @@ msgid "Lists all columns of the database table, which can be accepted in the sel
msgstr "डाटाबेस तालिकाको सबै स्तम्भहरू सूचीकृत गर्दछ, जुन तिनीहरूलाई कागजात भित्र घुसाउनका लागि चयन सूची बाकसमा स्विकार गर्न सकिन्छ।<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/tabletxtcols\" visibility=\"visible\"> तपाईँंले कागजातमा घुसाउन चाहेको डाटाबेस स्तम्भ चयन गर्नुहोस। </ahelp>"
#: 12070200.xhp
+#, fuzzy
msgctxt ""
"12070200.xhp\n"
"hd_id3152551\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 12070200.xhp
msgctxt ""
@@ -15683,13 +15686,14 @@ msgid "Example"
msgstr "उदाहरण"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3158411\n"
"42\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
msgctxt ""
@@ -15719,13 +15723,14 @@ msgid "\"M?ller\" returns, for example, Miller and Moller"
msgstr "\"M?ller\" फर्काउँदछ्छ, उदाहरणका लागि, Miller र Moller"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3148803\n"
"45\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
@@ -15809,31 +15814,34 @@ msgid "Search with regular expressions"
msgstr "नियमित अभिव्यक्ति सँग खोज्नुहोस्"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3151045\n"
"70\n"
"help.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3150384\n"
"71\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 12100200.xhp
+#, fuzzy
msgctxt ""
"12100200.xhp\n"
"par_id3153793\n"
"72\n"
"help.text"
msgid "*"
-msgstr ""
+msgstr "*"
#: 12100200.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/shared/autopi.po b/source/ne/helpcontent2/source/text/shared/autopi.po
index 401a5056cae..df0b528395c 100644
--- a/source/ne/helpcontent2/source/text/shared/autopi.po
+++ b/source/ne/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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2015-05-11 20:26+0000\n"
+"PO-Revision-Date: 2016-03-04 02:29+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431375979.000000\n"
+"X-POOTLE-MTIME: 1457058541.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -3422,13 +3422,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">Lists the names of the data ba
msgstr "<ahelp hid=\"HID_DLGFORM_FIELDSAVAILABLE\">चयन गरिएको तालिका वा क्वेरी भित्र डेटा वेस फाँटहरूको नाम सूचीत गर्दछ ।</ahelp>फाँट चयन गर्न क्लिक गर्नुहोस् वा शीफ्ट दवाउनुहोस् वा <switchinline select=\"sys\"><caseinline select=\"MAC\">आदेश </caseinline><defaultinline>Ctrl</defaultinline></switchinline> कुञ्जी क्लिक गर्नुहोस् जुनबेला तपाईँले एक भन्दा बढी फाँट चयन गर्न क्लिक गर्नुहुन्छ ।"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3150443\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01090100.xhp
msgctxt ""
@@ -3458,13 +3459,14 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">Click to move all fields to the box
msgstr "<ahelp hid=\"HID_DLGFORM_CMDMOVEALL\">दाहिने बाकसमा सबै फाँटहरू थप्न क्लिक गर्नुहोस् ।</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"hd_id3155419\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01090100.xhp
msgctxt ""
@@ -3494,12 +3496,13 @@ msgid "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">Click to move all fields to the b
msgstr "<ahelp hid=\"HID_DLGFORM_CMDREMOVEALL\">दाहिने बाकसबाट सबै फाँटहरू हटाउन क्लिक गर्नुहोस् ।</ahelp>"
#: 01090100.xhp
+#, fuzzy
msgctxt ""
"01090100.xhp\n"
"par_idN1074A\n"
"help.text"
msgid "^"
-msgstr ""
+msgstr "^"
#: 01090100.xhp
msgctxt ""
@@ -4524,13 +4527,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">Displays all fields that ar
msgstr "<ahelp hid=\"HID_DLGREPORT_1_FIELDSSELECTED\">सबै फाँटहरू प्रदर्शन गर्दछ जुन नयाँ प्रतिवेदन भित्र समावेश छ ।</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3147209\n"
"10\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100100.xhp
msgctxt ""
@@ -4560,13 +4564,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">Click to move all fields to the
msgstr "<ahelp hid=\"HID_DLGREPORT_1_CMDMOVEALL\">चयन गरिएका सबै फाँटहरू दाहिने बाकस स्थानान्तरण गर्न क्लिक गर्नुहोस् ।</ahelp>"
#: 01100100.xhp
+#, fuzzy
msgctxt ""
"01100100.xhp\n"
"hd_id3153146\n"
"14\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100100.xhp
msgctxt ""
@@ -4720,13 +4725,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">Lists the fields by which
msgstr "<ahelp hid=\"HID_DLGREPORT_2_PREGROUPINGDEST\">प्रतिवेदन समूह बनाइने द्वारा फाँटहरू सूचीकृत गर्नुहोस् । समूहको एउटा तह हटाउन, फाँटको नाम चयन गर्नुहोस्, र त्यसपछि <emph><</emph> बटन क्लिक गर्नुहोस् । समूहको चार तहसम्म तपाईँले चयन गर्न सक्नुहुन्छ ।</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154289\n"
"4\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 01100200.xhp
msgctxt ""
@@ -4738,13 +4744,14 @@ msgid "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">Click to move the selected field
msgstr "<ahelp hid=\"HID_DLGREPORT_2_CMDGROUP\">बायाँ बाकसबाट दाहिने बाकसमा फाँट सार्न क्लिक गर्नुहोस्, वा फाँटमा डबल-क्लिक गर्नुहोस् ।</ahelp>"
#: 01100200.xhp
+#, fuzzy
msgctxt ""
"01100200.xhp\n"
"hd_id3154823\n"
"5\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 01100200.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/shared/explorer/database.po b/source/ne/helpcontent2/source/text/shared/explorer/database.po
index 97a04d293c2..2aaa0734380 100644
--- a/source/ne/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/ne/helpcontent2/source/text/shared/explorer/database.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-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-12-09 06:06+0000\n"
-"Last-Translator: Saroj Dhakal <lotusnagarkot@gmail.com>\n"
+"PO-Revision-Date: 2016-03-04 02:36+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449641201.000000\n"
+"X-POOTLE-MTIME: 1457058998.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -1761,13 +1761,14 @@ msgid "... the content of the field does not correspond to the specified express
msgstr "फाँटको ...सामग्री बताईएको अभिव्यक्ति सँग मिल्दैन ।"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3153015\n"
"48\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 02010100.xhp
msgctxt ""
@@ -1788,13 +1789,14 @@ msgid "... the content of the field is greater than the specified expression."
msgstr "फाँटको ...सामग्री बताईएको अभिव्यक्ति भन्दा ठूलो छ्छ ।"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3147270\n"
"51\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 02010100.xhp
msgctxt ""
@@ -2794,13 +2796,14 @@ msgid "No"
msgstr "होइन"
#: 02010100.xhp
+#, fuzzy
msgctxt ""
"02010100.xhp\n"
"par_id3150997\n"
"239\n"
"help.text"
msgid "."
-msgstr ""
+msgstr "."
#: 02010100.xhp
msgctxt ""
@@ -6231,13 +6234,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">Lists the available
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/freeindex\">तपाईँले एउटा तालिकामा मानाङ्कन गर्न सक्ने उपलब्ध अनुक्रमणीकाहरू सूचीकृत गर्दछ ।</ahelp> एउटा चयन गरिएको तालिकामा एउटा अनुक्रमणीका मानाङ्कन गर्नलाई, बायाँ बाँण प्रतिमा क्लिक गर्नुहोस् । बायाँ दुई बाँणले सबै उपलब्ध अनुक्रमणिकाहरू मानाङ्कन गर्दछ ।"
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3156152\n"
"6\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 11030100.xhp
msgctxt ""
@@ -6267,13 +6271,14 @@ msgid "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">Moves all of the free
msgstr "<ahelp hid=\"dbaccess/ui/dbaseindexdialog/addall\">सबै मुक्त अनुक्रमणीकाहरूलाई <emph>तालिका अनुक्रमणीकाहरू</emph> सूचीमा सर्दछ ।</ahelp>"
#: 11030100.xhp
+#, fuzzy
msgctxt ""
"11030100.xhp\n"
"hd_id3149579\n"
"8\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: 11030100.xhp
msgctxt ""
@@ -12421,12 +12426,13 @@ msgid "<ahelp hid=\".\">Appends a new row of controls.</ahelp>"
msgstr "<ahelp hid=\".\">नियन्त्रणहरूको एउटा नयाँ पङ्क्ति जोड्दछ ।</ahelp>"
#: querywizard04.xhp
+#, fuzzy
msgctxt ""
"querywizard04.xhp\n"
"par_idN105F1\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: querywizard04.xhp
msgctxt ""
@@ -14445,12 +14451,13 @@ msgid "<ahelp hid=\".\">Select a field in order to edit the field information.</
msgstr "<ahelp hid=\".\">फाँट सूचना सम्पादन गर्नका लागि एउटा फाँट चयन गर्नुहोस् ।</ahelp>"
#: tablewizard02.xhp
+#, fuzzy
msgctxt ""
"tablewizard02.xhp\n"
"par_idN10574\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: tablewizard02.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/swriter/01.po b/source/ne/helpcontent2/source/text/swriter/01.po
index 0fb5764353f..f4a988298bf 100644
--- a/source/ne/helpcontent2/source/text/swriter/01.po
+++ b/source/ne/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-01-12 13:40+0100\n"
-"PO-Revision-Date: 2015-05-11 20:30+0000\n"
+"PO-Revision-Date: 2016-03-04 03:37+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431376217.000000\n"
+"X-POOTLE-MTIME: 1457062664.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -11035,13 +11035,14 @@ msgid "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">Select the paragra
msgstr "<ahelp hid=\"modules/swriter/ui/tocstylespage/styles\">चयन गरिएको अनुक्रमणिका तहमा तपाईँंले लागू गर्न चाहेको अनुच्छेद शैली चयन गर्नुहोस् र त्यसपछी मानाङ्कन (<emph><) </emph>बटन क्लिक गर्नुहोस्।</ahelp>"
#: 04120201.xhp
+#, fuzzy
msgctxt ""
"04120201.xhp\n"
"hd_id3145418\n"
"32\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: 04120201.xhp
msgctxt ""
@@ -27774,12 +27775,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">फाँट चयन गर्नुहोस् र अन्य सूचीमा फाँट तान्नुहोस् ।</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27790,12 +27792,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">ठेगाना तत्वहरू सूचीबाट अन्य सूचीमा चयन गरिएको फाँट थप गर्दछ। तपाईँंले उही फाँटलाई एक भन्दा बढी पटक थप गर्न सक्नुहुन्छ।</ahelp>"
#: mm_cusaddfie.xhp
+#, fuzzy
msgctxt ""
"mm_cusaddfie.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusaddfie.xhp
msgctxt ""
@@ -27982,12 +27985,13 @@ msgid "<ahelp hid=\".\">Select a field and drag the field to the other list.</ah
msgstr "<ahelp hid=\".\">फाँट चयन गर्नुहोस् र अन्य सूचीमा फाँट तान्नुहोस् ।</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN10558\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -27998,12 +28002,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the list of salutation elem
msgstr "<ahelp hid=\".\"> चयन गरिएको फाँटलाई सम्बोधन तत्वहरूको सूचीबाट अन्य सूचीमा थप गर्दछ। तपाईँंले एउटा फाँटलाई एक भन्दा बढी पटक थप गर्न सक्नुहुन्छ।</ahelp>"
#: mm_cusgrelin.xhp
+#, fuzzy
msgctxt ""
"mm_cusgrelin.xhp\n"
"par_idN1055F\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_cusgrelin.xhp
msgctxt ""
@@ -28438,12 +28443,13 @@ msgid "<ahelp hid=\".\">Select an address field and drag the field to the other
msgstr "<ahelp hid=\".\">ठेगाना फाँट चयन गर्नुहोस् र अन्य सूचीमा फाँट तान्नुहोस्.</ahelp>"
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10570\n"
"help.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mm_newaddblo.xhp
msgctxt ""
@@ -28454,12 +28460,13 @@ msgid "<ahelp hid=\".\">Adds the selected field from the Address Elements list t
msgstr "<ahelp hid=\".\">अन्य सूचीमा ठेगाना तत्वहरूबाट चयन फाँट थप गर्नुहोस्.</ahelp> तपाईँं उही फाँट एक बन्दा बढी पटक थप गर्न सक्नुहुन्छ."
#: mm_newaddblo.xhp
+#, fuzzy
msgctxt ""
"mm_newaddblo.xhp\n"
"par_idN10577\n"
"help.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mm_newaddblo.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/swriter/02.po b/source/ne/helpcontent2/source/text/swriter/02.po
index 8781ef51a62..0106e2991ab 100644
--- a/source/ne/helpcontent2/source/text/swriter/02.po
+++ b/source/ne/helpcontent2/source/text/swriter/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-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-04-23 16:42+0000\n"
+"PO-Revision-Date: 2016-03-04 03:40+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1429807354.000000\n"
+"X-POOTLE-MTIME: 1457062819.000000\n"
#: 02110000.xhp
msgctxt ""
@@ -1673,13 +1673,14 @@ msgid "Subtraction"
msgstr "घटाउनु"
#: 14020000.xhp
+#, fuzzy
msgctxt ""
"14020000.xhp\n"
"par_id3150087\n"
"12\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 14020000.xhp
msgctxt ""
diff --git a/source/ne/librelogo/source/pythonpath.po b/source/ne/librelogo/source/pythonpath.po
index 217c78a5ef4..b0908c2fed5 100644
--- a/source/ne/librelogo/source/pythonpath.po
+++ b/source/ne/librelogo/source/pythonpath.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: 2014-05-02 00:06+0200\n"
-"PO-Revision-Date: 2013-02-17 21:17+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-08 22:19+0000\n"
+"Last-Translator: system user <>\n"
"Language-Team: none\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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1361135843.0\n"
+"X-POOTLE-MTIME: 1457475563.000000\n"
#: LibreLogo_en_US.properties
msgctxt ""
@@ -769,20 +769,22 @@ msgid "pi|π"
msgstr ""
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DECIMAL\n"
"property.text"
msgid "."
-msgstr ""
+msgstr "."
#: LibreLogo_en_US.properties
+#, fuzzy
msgctxt ""
"LibreLogo_en_US.properties\n"
"DEG\n"
"property.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: LibreLogo_en_US.properties
msgctxt ""
diff --git a/source/ne/officecfg/registry/data/org/openoffice/Office.po b/source/ne/officecfg/registry/data/org/openoffice/Office.po
index 93420a70aaa..10035b0a287 100644
--- a/source/ne/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/ne/officecfg/registry/data/org/openoffice/Office.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-08-06 23:10+0000\n"
+"PO-Revision-Date: 2016-03-08 22:29+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438902649.000000\n"
+"X-POOTLE-MTIME: 1457476140.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1430,13 +1430,14 @@ msgid "Creating replacement graphics for OLE objects..."
msgstr ""
#: PresentationMinimizer.xcu
+#, fuzzy
msgctxt ""
"PresentationMinimizer.xcu\n"
"..PresentationMinimizer.Strings\n"
"STR_FILESIZESEPARATOR\n"
"value.text"
msgid "."
-msgstr ""
+msgstr "."
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/ne/reportdesign/uiconfig/dbreport/ui.po b/source/ne/reportdesign/uiconfig/dbreport/ui.po
index 13fdd1816ed..8cec9f259d3 100644
--- a/source/ne/reportdesign/uiconfig/dbreport/ui.po
+++ b/source/ne/reportdesign/uiconfig/dbreport/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: 2015-06-24 17:05+0200\n"
-"PO-Revision-Date: 2014-11-19 08:42+0000\n"
+"PO-Revision-Date: 2016-03-08 22:52+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1416386562.000000\n"
+"X-POOTLE-MTIME: 1457477531.000000\n"
#: backgrounddialog.ui
msgctxt ""
@@ -197,13 +197,14 @@ msgid "less than or equal to"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"lhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -215,13 +216,14 @@ msgid "and"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"rhsButton\n"
"label\n"
"string.text"
msgid "..."
-msgstr ""
+msgstr "..."
#: conditionwin.ui
msgctxt ""
@@ -278,13 +280,14 @@ msgid "Character Formatting"
msgstr ""
#: conditionwin.ui
+#, fuzzy
msgctxt ""
"conditionwin.ui\n"
"removeButton\n"
"label\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: conditionwin.ui
msgctxt ""
diff --git a/source/ne/sc/source/ui/src.po b/source/ne/sc/source/ui/src.po
index ce2dee6de53..cb3f15987b5 100644
--- a/source/ne/sc/source/ui/src.po
+++ b/source/ne/sc/source/ui/src.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-12-11 12:57+0100\n"
-"PO-Revision-Date: 2015-05-13 03:50+0000\n"
+"PO-Revision-Date: 2016-03-08 23:15+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431489041.000000\n"
+"X-POOTLE-MTIME: 1457478914.000000\n"
#: condformatdlg.src
msgctxt ""
@@ -2608,13 +2608,14 @@ msgid "Text Attributes"
msgstr "पाठ विशेषताहरू"
#: globstr.src
+#, fuzzy
msgctxt ""
"globstr.src\n"
"RID_GLOBSTR\n"
"STR_HFCMD_DELIMITER\n"
"string.text"
msgid "\\"
-msgstr ""
+msgstr "\\"
#: globstr.src
msgctxt ""
diff --git a/source/ne/sd/source/ui/app.po b/source/ne/sd/source/ui/app.po
index 3f4a7c27482..07cfd95eacf 100644
--- a/source/ne/sd/source/ui/app.po
+++ b/source/ne/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: 2015-12-11 12:58+0100\n"
-"PO-Revision-Date: 2015-06-26 02:40+0000\n"
+"PO-Revision-Date: 2016-03-08 23:39+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435286426.000000\n"
+"X-POOTLE-MTIME: 1457480376.000000\n"
#: menuids3_tmpl.src
msgctxt ""
@@ -3717,12 +3717,13 @@ msgid "<number>"
msgstr "<number>"
#: strings.src
+#, fuzzy
msgctxt ""
"strings.src\n"
"STR_FIELD_PLACEHOLDER_COUNT\n"
"string.text"
msgid "<count>"
-msgstr ""
+msgstr "<count>"
#: strings.src
msgctxt ""
diff --git a/source/ne/sd/uiconfig/simpress/ui.po b/source/ne/sd/uiconfig/simpress/ui.po
index 4895d28f5cf..2ce22c95e08 100644
--- a/source/ne/sd/uiconfig/simpress/ui.po
+++ b/source/ne/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-06-26 02:41+0000\n"
+"PO-Revision-Date: 2016-03-08 23:42+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: ne\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1435286475.000000\n"
+"X-POOTLE-MTIME: 1457480528.000000\n"
#: assistentdialog.ui
msgctxt ""
@@ -1005,22 +1005,24 @@ msgid "_Selected slides:"
msgstr ""
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"add\n"
"label\n"
"string.text"
msgid ">>"
-msgstr ""
+msgstr ">>"
#: definecustomslideshow.ui
+#, fuzzy
msgctxt ""
"definecustomslideshow.ui\n"
"remove\n"
"label\n"
"string.text"
msgid "<<"
-msgstr ""
+msgstr "<<"
#: dlgfield.ui
msgctxt ""
diff --git a/source/ne/sw/source/core/undo.po b/source/ne/sw/source/core/undo.po
index 62020c1de13..32cef1e5e28 100644
--- a/source/ne/sw/source/core/undo.po
+++ b/source/ne/sw/source/core/undo.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:40+0200\n"
-"PO-Revision-Date: 2015-05-13 03:58+0000\n"
+"PO-Revision-Date: 2016-03-09 00:14+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431489532.000000\n"
+"X-POOTLE-MTIME: 1457482489.000000\n"
#: undo.src
msgctxt ""
@@ -794,20 +794,22 @@ msgid "Table/index changed"
msgstr ""
#: undo.src
+#, fuzzy
msgctxt ""
"undo.src\n"
"STR_START_QUOTE\n"
"string.text"
msgid "'"
-msgstr ""
+msgstr "'"
#: undo.src
+#, fuzzy
msgctxt ""
"undo.src\n"
"STR_END_QUOTE\n"
"string.text"
msgid "'"
-msgstr ""
+msgstr "'"
#: undo.src
msgctxt ""
@@ -850,12 +852,13 @@ msgid "Paste clipboard"
msgstr "क्लिपबोर्ड टाँस्नुहोस्"
#: undo.src
+#, fuzzy
msgctxt ""
"undo.src\n"
"STR_YIELDS\n"
"string.text"
msgid "->"
-msgstr ""
+msgstr "->"
#: undo.src
msgctxt ""
diff --git a/source/ne/sw/source/ui/dbui.po b/source/ne/sw/source/ui/dbui.po
index 9a53c031564..41e095fcac2 100644
--- a/source/ne/sw/source/ui/dbui.po
+++ b/source/ne/sw/source/ui/dbui.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:40+0200\n"
-"PO-Revision-Date: 2015-05-13 04:00+0000\n"
+"PO-Revision-Date: 2016-03-09 00:17+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431489602.000000\n"
+"X-POOTLE-MTIME: 1457482624.000000\n"
#: dbui.src
msgctxt ""
@@ -488,31 +488,34 @@ msgid "Hi"
msgstr ""
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
",\n"
"itemlist.text"
msgid ","
-msgstr ""
+msgstr ","
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
":\n"
"itemlist.text"
msgid ":"
-msgstr ""
+msgstr ":"
#: mmaddressblockpage.src
+#, fuzzy
msgctxt ""
"mmaddressblockpage.src\n"
"RA_PUNCTUATION\n"
"!\n"
"itemlist.text"
msgid "!"
-msgstr ""
+msgstr "!"
#: mmaddressblockpage.src
msgctxt ""
diff --git a/source/ne/sw/source/ui/index.po b/source/ne/sw/source/ui/index.po
index aa1e7c118c9..ebfc1adad98 100644
--- a/source/ne/sw/source/ui/index.po
+++ b/source/ne/sw/source/ui/index.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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2012-01-15 13:03+0200\n"
-"Last-Translator: Saaz <saaz.rai@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:40+0200\n"
+"PO-Revision-Date: 2016-03-09 00:19+0000\n"
+"Last-Translator: system 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: LibreOffice\n"
+"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1457482745.000000\n"
#: cnttab.src
msgctxt ""
@@ -56,20 +57,22 @@ msgid "User-Defined Index"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NOSORTKEY\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_NO_CHAR_STYLE\n"
"string.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: cnttab.src
msgctxt ""
@@ -104,12 +107,13 @@ msgid "T"
msgstr ""
#: cnttab.src
+#, fuzzy
msgctxt ""
"cnttab.src\n"
"STR_TOKEN_PAGE_NUMS\n"
"string.text"
msgid "#"
-msgstr ""
+msgstr "#"
#: cnttab.src
msgctxt ""
diff --git a/source/ne/sw/source/ui/misc.po b/source/ne/sw/source/ui/misc.po
index c98623d23c0..1ffa2d13ec8 100644
--- a/source/ne/sw/source/ui/misc.po
+++ b/source/ne/sw/source/ui/misc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-05-11 16:12+0200\n"
-"PO-Revision-Date: 2015-05-13 04:11+0000\n"
+"PO-Revision-Date: 2016-03-09 00:19+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431490297.000000\n"
+"X-POOTLE-MTIME: 1457482754.000000\n"
#: glossary.src
msgctxt ""
@@ -41,12 +41,13 @@ msgid "Delete the category "
msgstr "यो वर्ग मेट्नुहोस् "
#: glossary.src
+#, fuzzy
msgctxt ""
"glossary.src\n"
"STR_QUERY_DELETE_GROUP2\n"
"string.text"
msgid "?"
-msgstr ""
+msgstr "?"
#: glossary.src
msgctxt ""
diff --git a/source/ne/sw/uiconfig/swriter/ui.po b/source/ne/sw/uiconfig/swriter/ui.po
index cf132e0d193..dc4f78d21d9 100644
--- a/source/ne/sw/uiconfig/swriter/ui.po
+++ b/source/ne/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: 2015-11-10 19:33+0100\n"
-"PO-Revision-Date: 2015-08-06 23:11+0000\n"
+"PO-Revision-Date: 2016-03-09 00:32+0000\n"
"Last-Translator: system user <>\n"
"Language-Team: none\n"
"Language: ne\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1438902668.000000\n"
+"X-POOTLE-MTIME: 1457483552.000000\n"
#: abstractdialog.ui
msgctxt ""
@@ -2295,13 +2295,14 @@ msgid "Convert Table to Text"
msgstr "तालिकालाई पाठमा रूपान्तरण गर्नुहोस्"
#: converttexttable.ui
+#, fuzzy
msgctxt ""
"converttexttable.ui\n"
"othered\n"
"text\n"
"string.text"
msgid ","
-msgstr ""
+msgstr ","
#: converttexttable.ui
msgctxt ""
@@ -2476,13 +2477,14 @@ msgid "|<"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"PREV\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: createaddresslist.ui
msgctxt ""
@@ -2494,13 +2496,14 @@ msgid ">|"
msgstr ""
#: createaddresslist.ui
+#, fuzzy
msgctxt ""
"createaddresslist.ui\n"
"NEXT\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: createaddresslist.ui
msgctxt ""
@@ -4393,13 +4396,14 @@ msgid "None"
msgstr "कुनै पनि होइन"
#: fldvarpage.ui
+#, fuzzy
msgctxt ""
"fldvarpage.ui\n"
"separator\n"
"text\n"
"string.text"
msgid "."
-msgstr ""
+msgstr "."
#: fldvarpage.ui
msgctxt ""
@@ -5353,22 +5357,24 @@ msgid "_Alternative (Text only):"
msgstr ""
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"prev\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
+#, fuzzy
msgctxt ""
"frmaddpage.ui\n"
"next\n"
"0\n"
"stringlist.text"
msgid "<None>"
-msgstr ""
+msgstr "<None>"
#: frmaddpage.ui
msgctxt ""
@@ -6289,13 +6295,14 @@ msgid "Numbering separator:"
msgstr "क्रमाङ्कन विभाजक"
#: insertcaption.ui
+#, fuzzy
msgctxt ""
"insertcaption.ui\n"
"num_separator_edit\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: insertcaption.ui
#, fuzzy
@@ -8618,13 +8625,14 @@ msgid "First"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"prev\n"
"label\n"
"string.text"
msgid "<"
-msgstr ""
+msgstr "<"
#: mmpreparepage.ui
msgctxt ""
@@ -8636,13 +8644,14 @@ msgid "Previous"
msgstr ""
#: mmpreparepage.ui
+#, fuzzy
msgctxt ""
"mmpreparepage.ui\n"
"next\n"
"label\n"
"string.text"
msgid ">"
-msgstr ""
+msgstr ">"
#: mmpreparepage.ui
#, fuzzy
@@ -9496,13 +9505,14 @@ msgid "Position:"
msgstr "स्थान"
#: optcaptionpage.ui
+#, fuzzy
msgctxt ""
"optcaptionpage.ui\n"
"numseparator\n"
"text\n"
"string.text"
msgid ". "
-msgstr ""
+msgstr ". "
#: optcaptionpage.ui
msgctxt ""
@@ -15551,40 +15561,44 @@ msgid "[none]"
msgstr "[कुनै पनि होइन]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"1\n"
"stringlist.text"
msgid "[]"
-msgstr ""
+msgstr "[]"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"2\n"
"stringlist.text"
msgid "()"
-msgstr ""
+msgstr "()"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"3\n"
"stringlist.text"
msgid "{}"
-msgstr ""
+msgstr "{}"
#: tocindexpage.ui
+#, fuzzy
msgctxt ""
"tocindexpage.ui\n"
"brackets\n"
"4\n"
"stringlist.text"
msgid "<>"
-msgstr ""
+msgstr "<>"
#: tocindexpage.ui
msgctxt ""
diff --git a/source/ne/vcl/source/src.po b/source/ne/vcl/source/src.po
index 11167cb0ee6..7dd4b004c74 100644
--- a/source/ne/vcl/source/src.po
+++ b/source/ne/vcl/source/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-02-10 14:46+0100\n"
-"PO-Revision-Date: 2015-12-11 18:59+0000\n"
+"PO-Revision-Date: 2016-03-09 00:35+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1449860366.000000\n"
+"X-POOTLE-MTIME: 1457483753.000000\n"
#: app.src
msgctxt ""
@@ -1176,12 +1176,13 @@ msgid "Please enter the fax number"
msgstr ""
#: print.src
+#, fuzzy
msgctxt ""
"print.src\n"
"SV_PRINT_INVALID_TXT\n"
"string.text"
msgid "<ignore>"
-msgstr ""
+msgstr "<ignore>"
#: print.src
msgctxt ""
@@ -1341,13 +1342,14 @@ msgid "pc"
msgstr "pc"
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"\"\n"
"itemlist.text"
msgid "\""
-msgstr ""
+msgstr "\""
#: units.src
msgctxt ""
@@ -1368,13 +1370,14 @@ msgid "inch"
msgstr "इन्च "
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"'\n"
"itemlist.text"
msgid "'"
-msgstr ""
+msgstr "'"
#: units.src
msgctxt ""
@@ -1458,13 +1461,14 @@ msgid "pixel"
msgstr ""
#: units.src
+#, fuzzy
msgctxt ""
"units.src\n"
"SV_FUNIT_STRINGS\n"
"°\n"
"itemlist.text"
msgid "°"
-msgstr ""
+msgstr "°"
#: units.src
msgctxt ""
diff --git a/source/ne/wizards/source/formwizard.po b/source/ne/wizards/source/formwizard.po
index 3f4e1d3ddf5..0bf7e4c9c51 100644
--- a/source/ne/wizards/source/formwizard.po
+++ b/source/ne/wizards/source/formwizard.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: 2015-05-13 04:13+0000\n"
+"PO-Revision-Date: 2016-03-09 00:41+0000\n"
"Last-Translator: system 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-Generator: Pootle 2.7\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1431490418.000000\n"
+"X-POOTLE-MTIME: 1457484091.000000\n"
#: dbwizres.src
msgctxt ""
@@ -2529,12 +2529,13 @@ msgid "+"
msgstr ""
#: dbwizres.src
+#, fuzzy
msgctxt ""
"dbwizres.src\n"
"RID_DB_TABLE_WIZARD_START + 22\n"
"string.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: dbwizres.src
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/sbasic/shared.po b/source/nl/helpcontent2/source/text/sbasic/shared.po
index 3f9e7a2ba45..65fc5076d49 100644
--- a/source/nl/helpcontent2/source/text/sbasic/shared.po
+++ b/source/nl/helpcontent2/source/text/sbasic/shared.po